2025-08-14T21:34:56.9720864Z Current runner version: '2.328.0' 2025-08-14T21:34:56.9730351Z Runner name: 'i-0712734b1d26f3aef' 2025-08-14T21:34:56.9731370Z Runner group name: 'Default' 2025-08-14T21:34:56.9732456Z Machine name: 'EC2AMAZ-VK08H34' 2025-08-14T21:34:56.9735546Z ##[group]GITHUB_TOKEN Permissions 2025-08-14T21:34:56.9738649Z Contents: read 2025-08-14T21:34:56.9739257Z Metadata: read 2025-08-14T21:34:56.9739861Z ##[endgroup] 2025-08-14T21:34:56.9742250Z Secret source: Actions 2025-08-14T21:34:56.9743073Z Prepare workflow directory 2025-08-14T21:34:57.0310364Z Prepare all required actions 2025-08-14T21:34:57.0359887Z Getting action download info 2025-08-14T21:34:57.2518915Z Download action repository 'pytorch/test-infra@main' (SHA:83f58f391e939c10dcb8cb6d745e4cefa3b98a84) 2025-08-14T21:35:59.9235562Z Download action repository 'pytorch/pytorch@main' (SHA:3be70dc30e893b552fc0f23ca06cd8f7949b6d08) 2025-08-14T21:42:03.4749932Z Download action repository 'nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-08-14T21:42:03.6890633Z Download action repository 'seemethere/download-artifact-s3@1da556a7aa0a088e3153970611f6c432d58e80e6' (SHA:1da556a7aa0a088e3153970611f6c432d58e80e6) 2025-08-14T21:42:04.0217540Z Getting action download info 2025-08-14T21:42:04.1526364Z Download action repository 'actions/checkout@v4' (SHA:08eba0b27e820071cde6df949e0beb9ba4906955) 2025-08-14T21:42:04.4042840Z Uses: pytorch/pytorch/.github/workflows/_win-test.yml@refs/heads/main (1fc683cf17c8c673044538d10266c00f92987be2) 2025-08-14T21:42:04.4047019Z ##[group] Inputs 2025-08-14T21:42:04.4047354Z build-environment: win-vs2022-cpu-py3 2025-08-14T21:42:04.4047655Z cuda-version: cpu 2025-08-14T21:42:04.4048816Z test-matrix: {"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}]} 2025-08-14T21:42:04.4050025Z sync-tag: 2025-08-14T21:42:04.4050818Z timeout-minutes: 240 2025-08-14T21:42:04.4051372Z disable-monitor: false 2025-08-14T21:42:04.4051648Z monitor-log-interval: 5 2025-08-14T21:42:04.4051948Z monitor-data-collect-interval: 1 2025-08-14T21:42:04.4052269Z ##[endgroup] 2025-08-14T21:42:04.4052714Z Complete job name: win-vs2022-cpu-py3 / test (default, 3, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T21:42:04.4750711Z ##[group]Run git config --global core.longpaths true 2025-08-14T21:42:04.4751309Z git config --global core.longpaths true 2025-08-14T21:42:04.4751675Z git config --global core.symlinks true 2025-08-14T21:42:04.4751996Z  2025-08-14T21:42:04.4752381Z # https://git-scm.com/docs/git-fsmonitor--daemon. The daemon could lock 2025-08-14T21:42:04.4752972Z # the directory on Windows and prevent GHA from checking out as reported 2025-08-14T21:42:04.4753508Z # in https://github.com/actions/checkout/issues/1018 2025-08-14T21:42:04.4753901Z git config --global core.fsmonitor false 2025-08-14T21:42:04.4779212Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:42:04.4780084Z env: 2025-08-14T21:42:04.4780403Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:42:04.4780669Z ##[endgroup] 2025-08-14T21:42:05.2314204Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-08-14T21:42:05.2314691Z env: 2025-08-14T21:42:05.2314922Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:42:05.2315162Z ##[endgroup] 2025-08-14T21:42:05.2479408Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-08-14T21:42:05.2480211Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-08-14T21:42:05.2480906Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-08-14T21:42:05.2482914Z # handle tool 2025-08-14T21:42:05.2483279Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-08-14T21:42:05.2483720Z Foreach ($process In $processes) { 2025-08-14T21:42:05.2484012Z  Try { 2025-08-14T21:42:05.2484579Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-08-14T21:42:05.2485314Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-08-14T21:42:05.2485740Z  } 2025-08-14T21:42:05.2485935Z  Catch { 2025-08-14T21:42:05.2486255Z  Write-Output "No leftover $process process, continuing" 2025-08-14T21:42:05.2486632Z  Write-Output $_ 2025-08-14T21:42:05.2486879Z  } 2025-08-14T21:42:05.2487060Z } 2025-08-14T21:42:05.2487246Z  2025-08-14T21:42:05.2487725Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-08-14T21:42:05.2488325Z # for hung processes 2025-08-14T21:42:05.2488609Z Foreach ($process In $processes) { 2025-08-14T21:42:05.2488897Z  Try { 2025-08-14T21:42:05.2489301Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-08-14T21:42:05.2489767Z  } 2025-08-14T21:42:05.2489971Z  Catch { 2025-08-14T21:42:05.2490194Z  Write-Output $_ 2025-08-14T21:42:05.2490440Z  } 2025-08-14T21:42:05.2490633Z } 2025-08-14T21:42:05.2490813Z  2025-08-14T21:42:05.2491003Z Try { 2025-08-14T21:42:05.2491242Z  # Print all the processes for debugging 2025-08-14T21:42:05.2491832Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-08-14T21:42:05.2492272Z } 2025-08-14T21:42:05.2492481Z Catch { 2025-08-14T21:42:05.2492908Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-08-14T21:42:05.2493398Z  Write-Output $_ 2025-08-14T21:42:05.2493648Z } 2025-08-14T21:42:05.2510238Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-14T21:42:05.2510751Z env: 2025-08-14T21:42:05.2510971Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:42:05.2511229Z ##[endgroup] 2025-08-14T21:42:20.6442876Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-14T21:42:20.6506939Z Finished 2025-08-14T21:42:20.6805511Z No leftover python process, continuing 2025-08-14T21:42:20.7296926Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-08-14T21:42:20.7297742Z At C:\actions-runner\_work\_temp\9f2a6a6d-a5ab-4b01-8ee1-badfe8a716f5.ps1:9 char:5 2025-08-14T21:42:20.7298576Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T21:42:20.7299120Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:20.7299668Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-08-14T21:42:20.7300630Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T21:42:20.7301280Z 2025-08-14T21:42:20.7318548Z No leftover ninja process, continuing 2025-08-14T21:42:20.7330374Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-08-14T21:42:20.7331237Z At C:\actions-runner\_work\_temp\9f2a6a6d-a5ab-4b01-8ee1-badfe8a716f5.ps1:9 char:5 2025-08-14T21:42:20.7331943Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T21:42:20.7332525Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:20.7333166Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-08-14T21:42:20.7334960Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T21:42:20.7335699Z 2025-08-14T21:42:20.7350442Z No leftover cl process, continuing 2025-08-14T21:42:20.7364249Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-08-14T21:42:20.7365153Z At C:\actions-runner\_work\_temp\9f2a6a6d-a5ab-4b01-8ee1-badfe8a716f5.ps1:9 char:5 2025-08-14T21:42:20.7365890Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T21:42:20.7366452Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:20.7366955Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-08-14T21:42:20.7368000Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T21:42:20.7368851Z 2025-08-14T21:42:20.7384471Z No leftover nvcc process, continuing 2025-08-14T21:42:20.7397472Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-08-14T21:42:20.7398326Z At C:\actions-runner\_work\_temp\9f2a6a6d-a5ab-4b01-8ee1-badfe8a716f5.ps1:9 char:5 2025-08-14T21:42:20.7399062Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T21:42:20.7399670Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:20.7400301Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-08-14T21:42:20.7401353Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T21:42:20.7402084Z 2025-08-14T21:42:20.7439068Z No leftover sccache process, continuing 2025-08-14T21:42:20.7451326Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-08-14T21:42:20.7452158Z At C:\actions-runner\_work\_temp\9f2a6a6d-a5ab-4b01-8ee1-badfe8a716f5.ps1:9 char:5 2025-08-14T21:42:20.7452806Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T21:42:20.7455408Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:20.7455970Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-08-14T21:42:20.7456856Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T21:42:20.7457511Z 2025-08-14T21:42:20.7467148Z No leftover git process, continuing 2025-08-14T21:42:20.7478643Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-08-14T21:42:20.7479392Z At C:\actions-runner\_work\_temp\9f2a6a6d-a5ab-4b01-8ee1-badfe8a716f5.ps1:9 char:5 2025-08-14T21:42:20.7480086Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-14T21:42:20.7480663Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:20.7481208Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-08-14T21:42:20.7482066Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-14T21:42:20.7482712Z 2025-08-14T21:42:20.7773350Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-14T21:42:20.7774382Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-14T21:42:20.7775033Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-14T21:42:20.7775528Z At C:\actions-runner\_work\_temp\9f2a6a6d-a5ab-4b01-8ee1-badfe8a716f5.ps1:21 char:6 2025-08-14T21:42:20.7776132Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T21:42:20.7776584Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:20.7777182Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-14T21:42:20.7777909Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-14T21:42:20.7778507Z 2025-08-14T21:42:20.7803059Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-14T21:42:20.7804044Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-14T21:42:20.7804688Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-14T21:42:20.7805188Z At C:\actions-runner\_work\_temp\9f2a6a6d-a5ab-4b01-8ee1-badfe8a716f5.ps1:21 char:6 2025-08-14T21:42:20.7805782Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T21:42:20.7806241Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:20.7806807Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-14T21:42:20.7807591Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-14T21:42:20.7808187Z 2025-08-14T21:42:20.7833997Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-14T21:42:20.7834965Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-14T21:42:20.7835588Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-14T21:42:20.7836097Z At C:\actions-runner\_work\_temp\9f2a6a6d-a5ab-4b01-8ee1-badfe8a716f5.ps1:21 char:6 2025-08-14T21:42:20.7836702Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T21:42:20.7837160Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:20.7837620Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-14T21:42:20.7838342Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-14T21:42:20.7838953Z 2025-08-14T21:42:20.7869923Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-14T21:42:20.7871062Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-14T21:42:20.7871793Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-14T21:42:20.7872396Z At C:\actions-runner\_work\_temp\9f2a6a6d-a5ab-4b01-8ee1-badfe8a716f5.ps1:21 char:6 2025-08-14T21:42:20.7873090Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T21:42:20.7873656Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:20.7874105Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-14T21:42:20.7875019Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-14T21:42:20.7875704Z 2025-08-14T21:42:20.7910391Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-14T21:42:20.7911412Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-14T21:42:20.7912471Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-14T21:42:20.7913083Z At C:\actions-runner\_work\_temp\9f2a6a6d-a5ab-4b01-8ee1-badfe8a716f5.ps1:21 char:6 2025-08-14T21:42:20.7913767Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T21:42:20.7914231Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:20.7914784Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-14T21:42:20.7915610Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-14T21:42:20.7916294Z 2025-08-14T21:42:20.7948105Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-14T21:42:20.7949222Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-14T21:42:20.7949931Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-14T21:42:20.7950533Z At C:\actions-runner\_work\_temp\9f2a6a6d-a5ab-4b01-8ee1-badfe8a716f5.ps1:21 char:6 2025-08-14T21:42:20.7951148Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T21:42:20.7951599Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:20.7952062Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-14T21:42:20.7952782Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-14T21:42:20.7953370Z 2025-08-14T21:42:20.7982496Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-08-14T21:42:20.7984072Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-08-14T21:42:20.7984719Z deletion. (Exception from HRESULT: 0x800703FA). 2025-08-14T21:42:20.7985224Z At C:\actions-runner\_work\_temp\9f2a6a6d-a5ab-4b01-8ee1-badfe8a716f5.ps1:21 char:6 2025-08-14T21:42:20.7985818Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-14T21:42:20.7986387Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-14T21:42:20.7986834Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-08-14T21:42:20.7987582Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-08-14T21:42:20.7988165Z 2025-08-14T21:42:20.9454604Z Caption CommandLine ProcessId 2025-08-14T21:42:20.9455229Z 2025-08-14T21:42:20.9455572Z System Idle Process 0 2025-08-14T21:42:20.9456022Z 2025-08-14T21:42:20.9456834Z System 4 2025-08-14T21:42:20.9457243Z 2025-08-14T21:42:20.9458849Z Registry 168 2025-08-14T21:42:20.9459397Z 2025-08-14T21:42:20.9460933Z smss.exe 408 2025-08-14T21:42:20.9462350Z 2025-08-14T21:42:20.9462649Z csrss.exe 520 2025-08-14T21:42:20.9463197Z 2025-08-14T21:42:20.9463504Z csrss.exe 596 2025-08-14T21:42:20.9464314Z 2025-08-14T21:42:20.9465385Z wininit.exe 648 2025-08-14T21:42:20.9465830Z 2025-08-14T21:42:20.9466798Z winlogon.exe winlogon.exe 668 2025-08-14T21:42:20.9467273Z 2025-08-14T21:42:20.9468330Z services.exe 740 2025-08-14T21:42:20.9468806Z 2025-08-14T21:42:20.9470866Z lsass.exe C:\Windows\system32\lsass.exe 764 2025-08-14T21:42:20.9471418Z 2025-08-14T21:42:20.9471973Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 876 2025-08-14T21:42:20.9472742Z 2025-08-14T21:42:20.9473298Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 900 2025-08-14T21:42:20.9473893Z 2025-08-14T21:42:20.9474286Z fontdrvhost.exe "fontdrvhost.exe" 928 2025-08-14T21:42:20.9474794Z 2025-08-14T21:42:20.9475778Z fontdrvhost.exe "fontdrvhost.exe" 924 2025-08-14T21:42:20.9476303Z 2025-08-14T21:42:20.9477275Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 144 2025-08-14T21:42:20.9477839Z 2025-08-14T21:42:20.9479139Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 456 2025-08-14T21:42:20.9479770Z 2025-08-14T21:42:20.9480293Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 132 2025-08-14T21:42:20.9480919Z 2025-08-14T21:42:20.9481921Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1104 2025-08-14T21:42:20.9482665Z 2025-08-14T21:42:20.9482979Z dwm.exe "dwm.exe" 1132 2025-08-14T21:42:20.9483489Z 2025-08-14T21:42:20.9484761Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1232 2025-08-14T21:42:20.9485489Z 2025-08-14T21:42:20.9485980Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1328 2025-08-14T21:42:20.9486576Z 2025-08-14T21:42:20.9487286Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1336 2025-08-14T21:42:20.9487887Z 2025-08-14T21:42:20.9489014Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1380 2025-08-14T21:42:20.9489827Z 2025-08-14T21:42:20.9491082Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1428 2025-08-14T21:42:20.9491711Z 2025-08-14T21:42:20.9492668Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1460 2025-08-14T21:42:20.9493270Z 2025-08-14T21:42:20.9495927Z NVDisplay.Container.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\NVDisplay.Container.exe -s NVDisplay.ContainerLocalSystem -f C:\ProgramData\NVIDIA\NVDisplay.ContainerLocalSystem.log -l 3 -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\plugins\LocalSystem -r -p 30000 -cfg NVDisplay.ContainerLocalSystem\LocalSystem /ert 1488 2025-08-14T21:42:20.9497980Z 2025-08-14T21:42:20.9498604Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1544 2025-08-14T21:42:20.9499380Z 2025-08-14T21:42:20.9500022Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1628 2025-08-14T21:42:20.9500784Z 2025-08-14T21:42:20.9501336Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1704 2025-08-14T21:42:20.9501961Z 2025-08-14T21:42:20.9502446Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1712 2025-08-14T21:42:20.9503042Z 2025-08-14T21:42:20.9503583Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1720 2025-08-14T21:42:20.9504307Z 2025-08-14T21:42:20.9504797Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1824 2025-08-14T21:42:20.9505450Z 2025-08-14T21:42:20.9506135Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 1868 2025-08-14T21:42:20.9506894Z 2025-08-14T21:42:20.9507608Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 1876 2025-08-14T21:42:20.9508259Z 2025-08-14T21:42:20.9509477Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 1948 2025-08-14T21:42:20.9510138Z 2025-08-14T21:42:20.9510665Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 2012 2025-08-14T21:42:20.9511308Z 2025-08-14T21:42:20.9512524Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 1068 2025-08-14T21:42:20.9513227Z 2025-08-14T21:42:20.9513901Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 1692 2025-08-14T21:42:20.9514686Z 2025-08-14T21:42:20.9515285Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2176 2025-08-14T21:42:20.9515968Z 2025-08-14T21:42:20.9517268Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 2196 2025-08-14T21:42:20.9518107Z 2025-08-14T21:42:20.9519619Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2224 2025-08-14T21:42:20.9520751Z 2025-08-14T21:42:20.9521298Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2388 2025-08-14T21:42:20.9522033Z 2025-08-14T21:42:20.9522576Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2424 2025-08-14T21:42:20.9523185Z 2025-08-14T21:42:20.9523614Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2636 2025-08-14T21:42:20.9524143Z 2025-08-14T21:42:20.9525253Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2712 2025-08-14T21:42:20.9525891Z 2025-08-14T21:42:20.9526616Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2720 2025-08-14T21:42:20.9527405Z 2025-08-14T21:42:20.9527910Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2728 2025-08-14T21:42:20.9528565Z 2025-08-14T21:42:20.9529816Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2736 2025-08-14T21:42:20.9530532Z 2025-08-14T21:42:20.9531149Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2744 2025-08-14T21:42:20.9531784Z 2025-08-14T21:42:20.9532486Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2752 2025-08-14T21:42:20.9533188Z 2025-08-14T21:42:20.9534125Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2760 2025-08-14T21:42:20.9534751Z 2025-08-14T21:42:20.9535282Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2776 2025-08-14T21:42:20.9535925Z 2025-08-14T21:42:20.9537036Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 3012 2025-08-14T21:42:20.9537819Z 2025-08-14T21:42:20.9538496Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 3048 2025-08-14T21:42:20.9539134Z 2025-08-14T21:42:20.9540082Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 3060 2025-08-14T21:42:20.9540616Z 2025-08-14T21:42:20.9541823Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 2972 2025-08-14T21:42:20.9542489Z 2025-08-14T21:42:20.9543338Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe 3108 2025-08-14T21:42:20.9544224Z 2025-08-14T21:42:20.9544874Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3516 2025-08-14T21:42:20.9545737Z 2025-08-14T21:42:20.9546184Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 3632 2025-08-14T21:42:20.9546728Z 2025-08-14T21:42:20.9547828Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 4088 2025-08-14T21:42:20.9548549Z 2025-08-14T21:42:20.9549079Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a77055 /state1:0x41c64e6d 756 2025-08-14T21:42:20.9549702Z 2025-08-14T21:42:20.9551937Z 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 656 2025-08-14T21:42:20.9553820Z 2025-08-14T21:42:20.9554583Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe -spawnprovider 920 2025-08-14T21:42:20.9555442Z 2025-08-14T21:42:20.9555907Z vds.exe C:\Windows\System32\vds.exe 892 2025-08-14T21:42:20.9556381Z 2025-08-14T21:42:20.9556939Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 1312 2025-08-14T21:42:20.9557663Z 2025-08-14T21:42:20.9558067Z msdtc.exe C:\Windows\System32\msdtc.exe 1300 2025-08-14T21:42:20.9558563Z 2025-08-14T21:42:20.9559170Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 2188 2025-08-14T21:42:20.9559883Z 2025-08-14T21:42:20.9560373Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 3056 2025-08-14T21:42:20.9560976Z 2025-08-14T21:42:20.9561618Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s WdiSystemHost 3524 2025-08-14T21:42:20.9562366Z 2025-08-14T21:42:20.9562979Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 1980 2025-08-14T21:42:20.9563678Z 2025-08-14T21:42:20.9564186Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 4148 2025-08-14T21:42:20.9564804Z 2025-08-14T21:42:20.9565415Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 4860 2025-08-14T21:42:20.9566074Z 2025-08-14T21:42:20.9566828Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 4720 2025-08-14T21:42:20.9567752Z 2025-08-14T21:42:20.9569437Z 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 4616 2025-08-14T21:42:20.9571179Z 2025-08-14T21:42:20.9571608Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4692 2025-08-14T21:42:20.9572143Z 2025-08-14T21:42:20.9572726Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p 3760 2025-08-14T21:42:20.9573398Z 2025-08-14T21:42:20.9573950Z svchost.exe C:\Windows\system32\svchost.exe -k appmodel -p -s StateRepository 5072 2025-08-14T21:42:20.9574595Z 2025-08-14T21:42:20.9575247Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 1192 2025-08-14T21:42:20.9575977Z 2025-08-14T21:42:20.9576483Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s wuauserv 3488 2025-08-14T21:42:20.9577078Z 2025-08-14T21:42:20.9577589Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1524 2025-08-14T21:42:20.9578116Z 2025-08-14T21:42:20.9578616Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 2208 2025-08-14T21:42:20.9579303Z 2025-08-14T21:42:20.9579816Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 1372 2025-08-14T21:42:20.9580436Z 2025-08-14T21:42:20.9580955Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 1056 2025-08-14T21:42:20.9581588Z 2025-08-14T21:42:20.9582015Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 5104 2025-08-14T21:42:20.9582550Z 2025-08-14T21:42:20.9583318Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2036 1896 4936 2025-08-14T21:42:20.9584058Z 2025-08-14T21:42:20.9584510Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3900 2025-08-14T21:42:20.9585052Z 2025-08-14T21:42:20.9586259Z taskhostw.exe taskhostw.exe /RuntimeWide 3308 2025-08-14T21:42:20.9586805Z 2025-08-14T21:42:20.9587515Z ngentask.exe "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\NGenTask.exe" /RuntimeWide /StopEvent:536 1496 2025-08-14T21:42:20.9588253Z 2025-08-14T21:42:20.9588877Z ngentask.exe "C:\Windows\Microsoft.NET\Framework\v4.0.30319\NGenTask.exe" /RuntimeWide /StopEvent:1016 2140 2025-08-14T21:42:20.9589688Z 2025-08-14T21:42:20.9590106Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4476 2025-08-14T21:42:20.9590646Z 2025-08-14T21:42:20.9591748Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2084 2025-08-14T21:42:20.9592283Z 2025-08-14T21:42:20.9593340Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 3964 2025-08-14T21:42:20.9594048Z 2025-08-14T21:42:20.9594712Z ngen.exe "C:\Windows\Microsoft.NET\Framework\v4.0.30319\ngen.exe" ExecuteQueuedItems /LegacyServiceBehavior 3256 2025-08-14T21:42:20.9595489Z 2025-08-14T21:42:20.9596158Z ngen.exe "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\ngen.exe" ExecuteQueuedItems /LegacyServiceBehavior 2032 2025-08-14T21:42:20.9596944Z 2025-08-14T21:42:20.9597891Z mscorsvw.exe C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorsvw.exe -StartupEvent 1b0 -InterruptEvent 0 -NGENProcess 3a0 -Pipe 39c -Comment "NGen Worker Process" 2652 2025-08-14T21:42:20.9598850Z 2025-08-14T21:42:20.9599716Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\9f2a6a6d-a5ab-4b01-8ee1-badfe8a716f5.ps1'" 5048 2025-08-14T21:42:20.9601325Z 2025-08-14T21:42:20.9601957Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 2688 2025-08-14T21:42:20.9602667Z 2025-08-14T21:42:20.9603117Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 4260 2025-08-14T21:42:20.9603667Z 2025-08-14T21:42:20.9603671Z 2025-08-14T21:42:20.9603675Z 2025-08-14T21:42:20.9942677Z ##[group]Run pytorch/test-infra/.github/actions/setup-ssh@main 2025-08-14T21:42:20.9943127Z with: 2025-08-14T21:42:20.9943815Z github-secret: *** 2025-08-14T21:42:20.9946351Z instructions: To forward remote desktop on your local machine ssh as follows: ssh -L 3389:localhost:3389 %%username%%@%%hostname%% And then change password using `passwd` command. To start tests locally, change working folder to \actions-runner\_work\pytorch\pytorch\test, Activate miniconda and Visual Studio environment and set PYTHON_PATH, by running: call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 call "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" x64 set PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build 2025-08-14T21:42:20.9948838Z activate-with-label: false 2025-08-14T21:42:20.9949098Z label: with-ssh 2025-08-14T21:42:20.9949313Z remove-existing-keys: true 2025-08-14T21:42:20.9949607Z fail-silently: true 2025-08-14T21:42:20.9949820Z env: 2025-08-14T21:42:20.9950003Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:42:20.9950228Z ##[endgroup] 2025-08-14T21:42:21.1592733Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2025-08-14T21:42:21.1596051Z Not on pull request and ciflow reference could not be extracted, skipping adding ssh keys 2025-08-14T21:42:21.1915589Z ##[group]Run pytorch/pytorch/.github/actions/checkout-pytorch@main 2025-08-14T21:42:21.1916028Z with: 2025-08-14T21:42:21.1916237Z no-sudo: true 2025-08-14T21:42:21.1916453Z submodules: recursive 2025-08-14T21:42:21.1916709Z fetch-depth: 0 2025-08-14T21:42:21.1916912Z env: 2025-08-14T21:42:21.1917116Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:42:21.1917366Z ##[endgroup] 2025-08-14T21:42:21.2010868Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-08-14T21:42:21.2011826Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-08-14T21:42:21.2031986Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:42:21.2032458Z env: 2025-08-14T21:42:21.2032662Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:42:21.2032923Z ##[endgroup] 2025-08-14T21:42:21.2450791Z ##[group]Run # Use all available CPUs for fetching 2025-08-14T21:42:21.2451202Z # Use all available CPUs for fetching 2025-08-14T21:42:21.2451520Z cd "${GITHUB_WORKSPACE}" 2025-08-14T21:42:21.2451895Z git config --global fetch.parallel 0 2025-08-14T21:42:21.2452265Z git config --global submodule.fetchJobs 0 2025-08-14T21:42:21.2452572Z  2025-08-14T21:42:21.2453069Z # Clean workspace. The default checkout action should also do this, but 2025-08-14T21:42:21.2453519Z # do it here as well just in case 2025-08-14T21:42:21.2453822Z if [[ -d .git ]]; then 2025-08-14T21:42:21.2454098Z  if [ -z "${NO_SUDO}" ]; then 2025-08-14T21:42:21.2454381Z  sudo git clean -ffdx 2025-08-14T21:42:21.2454643Z  else 2025-08-14T21:42:21.2454846Z  git clean -ffdx 2025-08-14T21:42:21.2455085Z  fi 2025-08-14T21:42:21.2455273Z fi 2025-08-14T21:42:21.2478009Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:42:21.2478448Z env: 2025-08-14T21:42:21.2478647Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:42:21.2478879Z NO_SUDO: true 2025-08-14T21:42:21.2479079Z ##[endgroup] 2025-08-14T21:42:21.3638417Z ##[group]Run actions/checkout@v4 2025-08-14T21:42:21.3638689Z with: 2025-08-14T21:42:21.3638901Z ref: 1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:42:21.3639229Z fetch-depth: 0 2025-08-14T21:42:21.3639440Z submodules: recursive 2025-08-14T21:42:21.3639683Z show-progress: false 2025-08-14T21:42:21.3639914Z repository: pytorch/pytorch 2025-08-14T21:42:21.3640303Z token: *** 2025-08-14T21:42:21.3640503Z ssh-strict: true 2025-08-14T21:42:21.3640699Z ssh-user: git 2025-08-14T21:42:21.3640921Z persist-credentials: true 2025-08-14T21:42:21.3641168Z clean: true 2025-08-14T21:42:21.3641394Z sparse-checkout-cone-mode: true 2025-08-14T21:42:21.3641664Z fetch-tags: false 2025-08-14T21:42:21.3641880Z lfs: false 2025-08-14T21:42:21.3642073Z set-safe-directory: true 2025-08-14T21:42:21.3642309Z env: 2025-08-14T21:42:21.3642489Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:42:21.3642721Z ##[endgroup] 2025-08-14T21:42:21.5046179Z Syncing repository: pytorch/pytorch 2025-08-14T21:42:21.5047529Z ##[group]Getting Git version info 2025-08-14T21:42:21.5047924Z Working directory is 'C:\actions-runner\_work\pytorch\pytorch' 2025-08-14T21:42:21.5149022Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-08-14T21:42:21.5387907Z git version 2.49.0.windows.1 2025-08-14T21:42:21.5435559Z ##[endgroup] 2025-08-14T21:42:21.5448640Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\cb4fe65a-cc74-47e1-8f00-4a876d4d0baf\.gitconfig' 2025-08-14T21:42:21.5469792Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\cb4fe65a-cc74-47e1-8f00-4a876d4d0baf' before making global git config changes 2025-08-14T21:42:21.5472191Z Adding repository directory to the temporary git global config as a safe directory 2025-08-14T21:42:21.5481545Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-08-14T21:42:21.5744715Z Deleting the contents of 'C:\actions-runner\_work\pytorch\pytorch' 2025-08-14T21:42:21.5750648Z ##[group]Initializing the repository 2025-08-14T21:42:21.5761687Z [command]"C:\Program Files\Git\cmd\git.exe" init C:\actions-runner\_work\pytorch\pytorch 2025-08-14T21:42:21.6130541Z Initialized empty Git repository in C:/actions-runner/_work/pytorch/pytorch/.git/ 2025-08-14T21:42:21.6179644Z [command]"C:\Program Files\Git\cmd\git.exe" remote add origin https://github.com/pytorch/pytorch 2025-08-14T21:42:21.6452064Z ##[endgroup] 2025-08-14T21:42:21.6452481Z ##[group]Disabling automatic garbage collection 2025-08-14T21:42:21.6465450Z [command]"C:\Program Files\Git\cmd\git.exe" config --local gc.auto 0 2025-08-14T21:42:21.6742149Z ##[endgroup] 2025-08-14T21:42:21.6742559Z ##[group]Setting up auth 2025-08-14T21:42:21.6763862Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-08-14T21:42:21.7082869Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" 2025-08-14T21:42:22.2803868Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-08-14T21:42:22.3125505Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" 2025-08-14T21:42:22.7490176Z [command]"C:\Program Files\Git\cmd\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-08-14T21:42:22.7770562Z ##[endgroup] 2025-08-14T21:42:22.7771019Z ##[group]Fetching the repository 2025-08-14T21:42:22.7786967Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* 2025-08-14T21:43:24.7874795Z From https://github.com/pytorch/pytorch 2025-08-14T21:43:24.7875979Z * [new branch] 2.6.0.dev20241004+ -> origin/2.6.0.dev20241004+ 2025-08-14T21:43:24.7877937Z * [new branch] 5addvllmbuild -> origin/5addvllmbuild 2025-08-14T21:43:24.7878547Z * [new branch] AaronWang04_addmmfusion_perftest -> origin/AaronWang04_addmmfusion_perftest 2025-08-14T21:43:24.7879260Z * [new branch] HDCharles-2.6.0-release-notes -> origin/HDCharles-2.6.0-release-notes 2025-08-14T21:43:24.7880015Z * [new branch] JackCaoG/dynamo_make_fx_non_core_aten_ops -> origin/JackCaoG/dynamo_make_fx_non_core_aten_ops 2025-08-14T21:43:24.7880737Z * [new branch] PR-AOTInductorNoneBug -> origin/PR-AOTInductorNoneBug 2025-08-14T21:43:24.7881368Z * [new branch] PR-AOTInductorNoneBugFix -> origin/PR-AOTInductorNoneBugFix 2025-08-14T21:43:24.7881952Z * [new branch] PR-FixConfigsIssue -> origin/PR-FixConfigsIssue 2025-08-14T21:43:24.7884138Z * [new branch] PR-NoneBugFix-viable -> origin/PR-NoneBugFix-viable 2025-08-14T21:43:24.7884696Z * [new branch] PR-ResetToZero -> origin/PR-ResetToZero 2025-08-14T21:43:24.7885246Z * [new branch] Update-Flash-Packaging -> origin/Update-Flash-Packaging 2025-08-14T21:43:24.7885913Z * [new branch] add-missing-args-normalization -> origin/add-missing-args-normalization 2025-08-14T21:43:24.7886571Z * [new branch] add-user-guide-structure -> origin/add-user-guide-structure 2025-08-14T21:43:24.7887121Z * [new branch] addVllmPin -> origin/addVllmPin 2025-08-14T21:43:24.7889719Z * [new branch] add_windows_testing_back -> origin/add_windows_testing_back 2025-08-14T21:43:24.7890768Z * [new branch] addbuildvllm -> origin/addbuildvllm 2025-08-14T21:43:24.7891283Z * [new branch] addmm-heuristic -> origin/addmm-heuristic 2025-08-14T21:43:24.7891761Z * [new branch] addsimde -> origin/addsimde 2025-08-14T21:43:24.7892273Z * [new branch] addvllpinnedfile -> origin/addvllpinnedfile 2025-08-14T21:43:24.7892796Z * [new branch] adi/acl_upgrade -> origin/adi/acl_upgrade 2025-08-14T21:43:24.7893309Z * [new branch] adi/skip_slow_tests -> origin/adi/skip_slow_tests 2025-08-14T21:43:24.7893808Z * [new branch] adi/test -> origin/adi/test 2025-08-14T21:43:24.7894266Z * [new branch] adi/test_bgemm -> origin/adi/test_bgemm 2025-08-14T21:43:24.7896509Z * [new branch] adi/test_fusions -> origin/adi/test_fusions 2025-08-14T21:43:24.7897045Z * [new branch] adi/test_onednn_v3.9 -> origin/adi/test_onednn_v3.9 2025-08-14T21:43:24.7897600Z * [new branch] adi/test_presve_change -> origin/adi/test_presve_change 2025-08-14T21:43:24.7898127Z * [new branch] adi/test_timm -> origin/adi/test_timm 2025-08-14T21:43:24.7898807Z * [new branch] adi/testpresve_change -> origin/adi/testpresve_change 2025-08-14T21:43:24.7899372Z * [new branch] aditew01/test/vec_bf16 -> origin/aditew01/test/vec_bf16 2025-08-14T21:43:24.7899943Z * [new branch] ah-globalfeedback-hook -> origin/ah-globalfeedback-hook 2025-08-14T21:43:24.7900589Z * [new branch] albanD-patch-1 -> origin/albanD-patch-1 2025-08-14T21:43:24.7902735Z * [new branch] alt-disable -> origin/alt-disable 2025-08-14T21:43:24.7903330Z * [new branch] angelayi/aoti_additional_files -> origin/angelayi/aoti_additional_files 2025-08-14T21:43:24.7903978Z * [new branch] angelayi/aoti_inductor_fx -> origin/angelayi/aoti_inductor_fx 2025-08-14T21:43:24.7904687Z * [new branch] angelayi/assert_tensor_metadata_device -> origin/angelayi/assert_tensor_metadata_device 2025-08-14T21:43:24.7905377Z * [new branch] angelayi/benchmark -> origin/angelayi/benchmark 2025-08-14T21:43:24.7905927Z * [new branch] angelayi/benchmark2 -> origin/angelayi/benchmark2 2025-08-14T21:43:24.7906582Z * [new branch] angelayi/change_pytree_serialization -> origin/angelayi/change_pytree_serialization 2025-08-14T21:43:24.7908196Z * [new branch] angelayi/cpp_loader -> origin/angelayi/cpp_loader 2025-08-14T21:43:24.7909450Z * [new branch] angelayi/custom_op_subgraph -> origin/angelayi/custom_op_subgraph 2025-08-14T21:43:24.7910041Z * [new branch] angelayi/customop -> origin/angelayi/customop 2025-08-14T21:43:24.7910585Z * [new branch] angelayi/del_lib -> origin/angelayi/del_lib 2025-08-14T21:43:24.7911081Z * [new branch] angelayi/docs -> origin/angelayi/docs 2025-08-14T21:43:24.7911575Z * [new branch] angelayi/docs2 -> origin/angelayi/docs2 2025-08-14T21:43:24.7912069Z * [new branch] angelayi/fix_pt2 -> origin/angelayi/fix_pt2 2025-08-14T21:43:24.8305783Z * [new branch] angelayi/logging.bak -> origin/angelayi/logging.bak 2025-08-14T21:43:24.8306397Z * [new branch] angelayi/logging2 -> origin/angelayi/logging2 2025-08-14T21:43:24.8306945Z * [new branch] angelayi/no_so_weight -> origin/angelayi/no_so_weight 2025-08-14T21:43:24.8307707Z * [new branch] angelayi/pytree -> origin/angelayi/pytree 2025-08-14T21:43:24.8308236Z * [new branch] angelayi/save_error -> origin/angelayi/save_error 2025-08-14T21:43:24.8308810Z * [new branch] angelayi/scan_layers -> origin/angelayi/scan_layers 2025-08-14T21:43:24.8309369Z * [new branch] angelayi/symint_input -> origin/angelayi/symint_input 2025-08-14T21:43:24.8309970Z * [new branch] angelayi/tensor_nn_module_meta -> origin/angelayi/tensor_nn_module_meta 2025-08-14T21:43:24.8310593Z * [new branch] angelayi/torch_size -> origin/angelayi/torch_size 2025-08-14T21:43:24.8311107Z * [new branch] aoti-cuda-alloc -> origin/aoti-cuda-alloc 2025-08-14T21:43:24.8311630Z * [new branch] aoti_weight_sharing -> origin/aoti_weight_sharing 2025-08-14T21:43:24.8312190Z * [new branch] arsh/symint_mm_ind_decomp -> origin/arsh/symint_mm_ind_decomp 2025-08-14T21:43:24.8312813Z * [new branch] atalman-inductor-perf-cu124 -> origin/atalman-inductor-perf-cu124 2025-08-14T21:43:24.8313497Z * [new branch] atalman-inductor-perf-cu124.1 -> origin/atalman-inductor-perf-cu124.1 2025-08-14T21:43:24.8314099Z * [new branch] atalman-patch-1 -> origin/atalman-patch-1 2025-08-14T21:43:24.8314736Z * [new branch] atalman-patch-2 -> origin/atalman-patch-2 2025-08-14T21:43:24.8315412Z * [new branch] atalman-patch-3 -> origin/atalman-patch-3 2025-08-14T21:43:24.8315916Z * [new branch] atalman-patch-6 -> origin/atalman-patch-6 2025-08-14T21:43:24.8316429Z * [new branch] atalman-patch-7 -> origin/atalman-patch-7 2025-08-14T21:43:24.8316925Z * [new branch] atalman-patch-8 -> origin/atalman-patch-8 2025-08-14T21:43:24.8317463Z * [new branch] atalman_inductor_2.3.0 -> origin/atalman_inductor_2.3.0 2025-08-14T21:43:24.8318036Z * [new branch] atalman_inductor_2.3.1 -> origin/atalman_inductor_2.3.1 2025-08-14T21:43:24.8318585Z * [new branch] atalman_inductor_2.4.0 -> origin/atalman_inductor_2.4.0 2025-08-14T21:43:24.8319150Z * [new branch] atalman_inductor_2.4.x -> origin/atalman_inductor_2.4.x 2025-08-14T21:43:24.8319835Z * [new branch] autoupdate-transformers-pin-via-pr -> origin/autoupdate-transformers-pin-via-pr 2025-08-14T21:43:24.8320494Z * [new branch] backupvllm -> origin/backupvllm 2025-08-14T21:43:24.8320974Z * [new branch] base/1.5 -> origin/base/1.5 2025-08-14T21:43:24.8321543Z * [new branch] batching_sdpa_efficient_attention -> origin/batching_sdpa_efficient_attention 2025-08-14T21:43:24.8322177Z * [new branch] benchmark-updates -> origin/benchmark-updates 2025-08-14T21:43:24.8322730Z * [new branch] benchmarking-script -> origin/benchmarking-script 2025-08-14T21:43:24.8323526Z * [new branch] benjaminglass1/mark-large-tensor-tests-serial -> origin/benjaminglass1/mark-large-tensor-tests-serial 2025-08-14T21:43:24.8324314Z * [new branch] bertmaher/pinbump26 -> origin/bertmaher/pinbump26 2025-08-14T21:43:24.8324873Z * [new branch] bertrand/cutlass -> origin/bertrand/cutlass 2025-08-14T21:43:24.8325384Z * [new branch] bf/cg-log -> origin/bf/cg-log 2025-08-14T21:43:24.8325884Z * [new branch] bf/cg-remove-check -> origin/bf/cg-remove-check 2025-08-14T21:43:24.8326403Z * [new branch] bf/cg-skip-1-kernel -> origin/bf/cg-skip-1-kernel 2025-08-14T21:43:24.8326908Z * [new branch] bf/cudagraph -> origin/bf/cudagraph 2025-08-14T21:43:24.8327546Z * [new branch] bf/cudagraph-disable-input-mutation -> origin/bf/cudagraph-disable-input-mutation 2025-08-14T21:43:24.8328664Z * [new branch] bf/cudagraph-enable-input-mutation-support-benchmark -> origin/bf/cudagraph-enable-input-mutation-support-benchmark 2025-08-14T21:43:24.8329585Z * [new branch] bf/cudagraph-partition -> origin/bf/cudagraph-partition 2025-08-14T21:43:24.8330195Z * [new branch] bf/default-recompile-reason -> origin/bf/default-recompile-reason 2025-08-14T21:43:24.8330810Z * [new branch] bf/donated-buffer-bench -> origin/bf/donated-buffer-bench 2025-08-14T21:43:24.8331389Z * [new branch] bf/improve-kernel-bench -> origin/bf/improve-kernel-bench 2025-08-14T21:43:24.8331957Z * [new branch] bf/kernel-benchmark -> origin/bf/kernel-benchmark 2025-08-14T21:43:24.8332485Z * [new branch] bf/partition-doc -> origin/bf/partition-doc 2025-08-14T21:43:24.8746914Z * [new branch] bf/partition-move-cpu -> origin/bf/partition-move-cpu 2025-08-14T21:43:24.8747583Z * [new branch] bf/partition-turn-on -> origin/bf/partition-turn-on 2025-08-14T21:43:24.8748171Z * [new branch] bf/remove-check-55b0c39d -> origin/bf/remove-check-55b0c39d 2025-08-14T21:43:24.8748712Z * [new branch] bf/skip-asserts -> origin/bf/skip-asserts 2025-08-14T21:43:24.8749200Z * [new branch] bf16adamw -> origin/bf16adamw 2025-08-14T21:43:24.8749939Z * [new branch] bisect_perf_hf_T5_3acc6eac492 -> origin/bisect_perf_hf_T5_3acc6eac492 2025-08-14T21:43:24.8750554Z * [new branch] bisect_perf_hf_T5_3fcf66f61fb -> origin/bisect_perf_hf_T5_3fcf66f61fb 2025-08-14T21:43:24.8751137Z * [new branch] bisect_perf_hf_T5_4009d154129 -> origin/bisect_perf_hf_T5_4009d154129 2025-08-14T21:43:24.8751729Z * [new branch] bisect_perf_hf_T5_40d0740e73d -> origin/bisect_perf_hf_T5_40d0740e73d 2025-08-14T21:43:24.8752315Z * [new branch] bisect_perf_hf_T5_5268754e -> origin/bisect_perf_hf_T5_5268754e 2025-08-14T21:43:24.8752875Z * [new branch] bisect_perf_hf_T5_7d89a8d385c -> origin/bisect_perf_hf_T5_7d89a8d385c 2025-08-14T21:43:24.8753469Z * [new branch] bisect_perf_hf_T5_b7a25c1ee7c -> origin/bisect_perf_hf_T5_b7a25c1ee7c 2025-08-14T21:43:24.8754044Z * [new branch] bisect_perf_hf_T5_c25b201583f -> origin/bisect_perf_hf_T5_c25b201583f 2025-08-14T21:43:24.8754637Z * [new branch] bisect_perf_hf_T5_c93e57efac0 -> origin/bisect_perf_hf_T5_c93e57efac0 2025-08-14T21:43:24.8755225Z * [new branch] bisect_perf_hf_T5_ca9813ea149 -> origin/bisect_perf_hf_T5_ca9813ea149 2025-08-14T21:43:24.8755791Z * [new branch] bisect_perf_hf_T5_d65f194a -> origin/bisect_perf_hf_T5_d65f194a 2025-08-14T21:43:24.8756351Z * [new branch] bisect_perf_hf_T5_da94ab0b -> origin/bisect_perf_hf_T5_da94ab0b 2025-08-14T21:43:24.8756932Z * [new branch] bisect_perf_hf_T5_da94ab0b_new -> origin/bisect_perf_hf_T5_da94ab0b_new 2025-08-14T21:43:24.8757533Z * [new branch] bisect_perf_hf_T5_db4e8a1d8a8 -> origin/bisect_perf_hf_T5_db4e8a1d8a8 2025-08-14T21:43:24.8777923Z * [new branch] bisect_perf_hf_T5_e0d97e936a2 -> origin/bisect_perf_hf_T5_e0d97e936a2 2025-08-14T21:43:24.8778704Z * [new branch] bisect_perf_hf_T5_f23621ec563 -> origin/bisect_perf_hf_T5_f23621ec563 2025-08-14T21:43:24.8779361Z * [new branch] bowbao/bench_updates_stage -> origin/bowbao/bench_updates_stage 2025-08-14T21:43:24.8779932Z * [new branch] bowbao/dort_rewriter -> origin/bowbao/dort_rewriter 2025-08-14T21:43:24.8780545Z * [new branch] bowbao/wip_prs -> origin/bowbao/wip_prs 2025-08-14T21:43:24.8781145Z * [new branch] bowenbao/partial_min_max_reduce -> origin/bowenbao/partial_min_max_reduce 2025-08-14T21:43:24.8782523Z * [new branch] brister/always_wrapper_ir -> origin/brister/always_wrapper_ir 2025-08-14T21:43:24.8783141Z * [new branch] brister/flatten_contig -> origin/brister/flatten_contig 2025-08-14T21:43:24.8783728Z * [new branch] brister/test_block_ptr_same -> origin/brister/test_block_ptr_same 2025-08-14T21:43:24.8784424Z * [new branch] brister/tiled_reduction_no_numel_check -> origin/brister/tiled_reduction_no_numel_check 2025-08-14T21:43:24.8785063Z * [new branch] c57382a49 -> origin/c57382a49 2025-08-14T21:43:24.8785521Z * [new branch] ca_0431d47eaa -> origin/ca_0431d47eaa 2025-08-14T21:43:24.8786012Z * [new branch] ca_fix_0431d47eaa -> origin/ca_fix_0431d47eaa 2025-08-14T21:43:24.8787024Z * [new branch] camyll/revert-94bc900da97ad7f3c35b3b819bb53b23c74b581a-for-release-2.8 -> origin/camyll/revert-94bc900da97ad7f3c35b3b819bb53b23c74b581a-for-release-2.8 2025-08-14T21:43:24.8788180Z * [new branch] camyll/test_precommit_hooks_lintrunner -> origin/camyll/test_precommit_hooks_lintrunner 2025-08-14T21:43:24.8789017Z * [new branch] camyllh/cherrypick-151547-for-release28 -> origin/camyllh/cherrypick-151547-for-release28 2025-08-14T21:43:24.8789749Z * [new branch] camyllh/test_setup_hooks_push -> origin/camyllh/test_setup_hooks_push 2025-08-14T21:43:24.8790524Z * [new branch] cherry-pick-149654-by-pytorch_bot_bot_ -> origin/cherry-pick-149654-by-pytorch_bot_bot_ 2025-08-14T21:43:24.8791436Z * [new branch] cherry-pick-151939-by-pytorch_bot_bot_ -> origin/cherry-pick-151939-by-pytorch_bot_bot_ 2025-08-14T21:43:24.8792232Z * [new branch] cherry-pick-154174-by-pytorch_bot_bot_ -> origin/cherry-pick-154174-by-pytorch_bot_bot_ 2025-08-14T21:43:24.8793024Z * [new branch] cherry-pick-155896-by-pytorch_bot_bot_ -> origin/cherry-pick-155896-by-pytorch_bot_bot_ 2025-08-14T21:43:24.8793809Z * [new branch] cherry-pick-156260-by-pytorch_bot_bot_ -> origin/cherry-pick-156260-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9102188Z * [new branch] cherry-pick-156719-by-pytorch_bot_bot_ -> origin/cherry-pick-156719-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9103100Z * [new branch] cherry-pick-156876-by-pytorch_bot_bot_ -> origin/cherry-pick-156876-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9103993Z * [new branch] cherry-pick-156888-by-pytorch_bot_bot_ -> origin/cherry-pick-156888-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9104818Z * [new branch] cherry-pick-157014-by-pytorch_bot_bot_ -> origin/cherry-pick-157014-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9105602Z * [new branch] cherry-pick-157179-by-pytorch_bot_bot_ -> origin/cherry-pick-157179-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9106416Z * [new branch] cherry-pick-157453-by-pytorch_bot_bot_ -> origin/cherry-pick-157453-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9107219Z * [new branch] cherry-pick-157513-by-pytorch_bot_bot_ -> origin/cherry-pick-157513-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9108008Z * [new branch] cherry-pick-157558-by-pytorch_bot_bot_ -> origin/cherry-pick-157558-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9108794Z * [new branch] cherry-pick-157598-by-pytorch_bot_bot_ -> origin/cherry-pick-157598-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9109652Z * [new branch] cherry-pick-157600-by-pytorch_bot_bot_ -> origin/cherry-pick-157600-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9110543Z * [new branch] cherry-pick-157630-by-pytorch_bot_bot_ -> origin/cherry-pick-157630-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9111335Z * [new branch] cherry-pick-157695-by-pytorch_bot_bot_ -> origin/cherry-pick-157695-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9112114Z * [new branch] cherry-pick-157732-by-pytorch_bot_bot_ -> origin/cherry-pick-157732-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9113067Z * [new branch] cherry-pick-157733-by-pytorch_bot_bot_ -> origin/cherry-pick-157733-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9113865Z * [new branch] cherry-pick-157985-by-pytorch_bot_bot_ -> origin/cherry-pick-157985-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9114646Z * [new branch] cherry-pick-157993-by-pytorch_bot_bot_ -> origin/cherry-pick-157993-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9115434Z * [new branch] cherry-pick-158064-by-pytorch_bot_bot_ -> origin/cherry-pick-158064-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9116304Z * [new branch] cherry-pick-158152-by-pytorch_bot_bot_ -> origin/cherry-pick-158152-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9117179Z * [new branch] cherry-pick-158295-by-pytorch_bot_bot_ -> origin/cherry-pick-158295-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9118053Z * [new branch] cherry-pick-158301-by-pytorch_bot_bot_ -> origin/cherry-pick-158301-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9118920Z * [new branch] cherry-pick-158537-by-pytorch_bot_bot_ -> origin/cherry-pick-158537-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9119801Z * [new branch] cherry-pick-158572-by-pytorch_bot_bot_ -> origin/cherry-pick-158572-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9120470Z * [new branch] cherry-pick-158595 -> origin/cherry-pick-158595 2025-08-14T21:43:24.9121144Z * [new branch] cherry-pick-159181-by-pytorch_bot_bot_ -> origin/cherry-pick-159181-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9122056Z * [new branch] cherry-pick-159969-by-pytorch_bot_bot_ -> origin/cherry-pick-159969-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9122840Z * [new branch] cherry-pick-160586-by-pytorch_bot_bot_ -> origin/cherry-pick-160586-by-pytorch_bot_bot_ 2025-08-14T21:43:24.9123525Z * [new branch] cherry-pick-PR-158746 -> origin/cherry-pick-PR-158746 2025-08-14T21:43:24.9124367Z * [new branch] cherrypick-e4e2701429c17078c3c475382a8b1fa4c8a8cefc -> origin/cherrypick-e4e2701429c17078c3c475382a8b1fa4c8a8cefc 2025-08-14T21:43:24.9125277Z * [new branch] chilli/flex_vllm -> origin/chilli/flex_vllm 2025-08-14T21:43:24.9125928Z * [new branch] ckluk2-compileThread-1 -> origin/ckluk2-compileThread-1 2025-08-14T21:43:24.9126592Z * [new branch] ckluk2-compileThread-2 -> origin/ckluk2-compileThread-2 2025-08-14T21:43:24.9127203Z * [new branch] ckluk2-compileThread-64 -> origin/ckluk2-compileThread-64 2025-08-14T21:43:24.9127835Z * [new branch] ckluk2-test-1 -> origin/ckluk2-test-1 2025-08-14T21:43:24.9128413Z * [new branch] cleantest1 -> origin/cleantest1 2025-08-14T21:43:24.9128980Z * [new branch] codex-testing -> origin/codex-testing 2025-08-14T21:43:24.9129909Z * [new branch] codex/create-test-for-tensor-memory-leak-in-cudagraph -> origin/codex/create-test-for-tensor-memory-leak-in-cudagraph 2025-08-14T21:43:24.9131042Z * [new branch] codex/fix-issue-121219-in-pytorch -> origin/codex/fix-issue-121219-in-pytorch 2025-08-14T21:43:24.9503855Z * [new branch] codex/fix-issue-160415-in-pytorch -> origin/codex/fix-issue-160415-in-pytorch 2025-08-14T21:43:24.9504749Z * [new branch] codex/fix-noqengine-quantized-engine-support -> origin/codex/fix-noqengine-quantized-engine-support 2025-08-14T21:43:24.9505673Z * [new branch] codex/fix-pin_memory-error-handling -> origin/codex/fix-pin_memory-error-handling 2025-08-14T21:43:24.9506433Z * [new branch] codex/propose-fix-for-issue-160332 -> origin/codex/propose-fix-for-issue-160332 2025-08-14T21:43:24.9507346Z * [new branch] codex/refactor-lintrunner-config-to-use-uv-run -> origin/codex/refactor-lintrunner-config-to-use-uv-run 2025-08-14T21:43:24.9508509Z * [new branch] codex/verify-torch-output-and-log-results -> origin/codex/verify-torch-output-and-log-results 2025-08-14T21:43:24.9509461Z * [new branch] compile_fsdp2_disable_stream_and_event -> origin/compile_fsdp2_disable_stream_and_event 2025-08-14T21:43:24.9510251Z * [new branch] comply-with-setuptools -> origin/comply-with-setuptools 2025-08-14T21:43:24.9510789Z * [new branch] context_test -> origin/context_test 2025-08-14T21:43:24.9511316Z * [new branch] copilot/fix-157446 -> origin/copilot/fix-157446 2025-08-14T21:43:24.9511861Z * [new branch] copilot/fix-159257 -> origin/copilot/fix-159257 2025-08-14T21:43:24.9512350Z * [new branch] copy_graph -> origin/copy_graph 2025-08-14T21:43:24.9512867Z * [new branch] cpio/fix_new_ami_tests -> origin/cpio/fix_new_ami_tests 2025-08-14T21:43:24.9513367Z * [new branch] csl/3_proc_sm -> origin/csl/3_proc_sm 2025-08-14T21:43:24.9513932Z * [new branch] csl/add_file_merge_conflict_csv -> origin/csl/add_file_merge_conflict_csv 2025-08-14T21:43:24.9514546Z * [new branch] csl/always_produce_xml -> origin/csl/always_produce_xml 2025-08-14T21:43:24.9515109Z * [new branch] csl/build_test_more_procs -> origin/csl/build_test_more_procs 2025-08-14T21:43:24.9515785Z * [new branch] csl/build_test_more_procs2 -> origin/csl/build_test_more_procs2 2025-08-14T21:43:24.9516594Z * [new branch] csl/disable_flaky_cpp_test -> origin/csl/disable_flaky_cpp_test 2025-08-14T21:43:24.9517189Z * [new branch] csl/disable_periodic_test -> origin/csl/disable_periodic_test 2025-08-14T21:43:24.9517788Z * [new branch] csl/executorch_docker_fail -> origin/csl/executorch_docker_fail 2025-08-14T21:43:24.9518349Z * [new branch] csl/fix_check_alerts -> origin/csl/fix_check_alerts 2025-08-14T21:43:24.9518858Z * [new branch] csl/katex -> origin/csl/katex 2025-08-14T21:43:24.9519340Z * [new branch] csl/larger_runner -> origin/csl/larger_runner 2025-08-14T21:43:24.9519981Z * [new branch] csl/lintrunner_changed_files_removed -> origin/csl/lintrunner_changed_files_removed 2025-08-14T21:43:24.9520766Z * [new branch] csl/lintrunner_changed_files_removed_test -> origin/csl/lintrunner_changed_files_removed_test 2025-08-14T21:43:24.9521470Z * [new branch] csl/lintrunner_stuff -> origin/csl/lintrunner_stuff 2025-08-14T21:43:24.9522093Z * [new branch] csl/mps_sharding -> origin/csl/mps_sharding 2025-08-14T21:43:24.9522702Z * [new branch] csl/multistage_docker -> origin/csl/multistage_docker 2025-08-14T21:43:24.9523247Z * [new branch] csl/no_keep_goin_rocm -> origin/csl/no_keep_goin_rocm 2025-08-14T21:43:24.9523770Z * [new branch] csl/not_600_timeout -> origin/csl/not_600_timeout 2025-08-14T21:43:24.9524375Z * [new branch] csl/remove_unused_docker_images -> origin/csl/remove_unused_docker_images 2025-08-14T21:43:24.9524966Z * [new branch] csl/revert_open -> origin/csl/revert_open 2025-08-14T21:43:24.9525609Z * [new branch] csl/rocm_upload_artifacts_while_running -> origin/csl/rocm_upload_artifacts_while_running 2025-08-14T21:43:24.9526254Z * [new branch] csl/skip_build -> origin/csl/skip_build 2025-08-14T21:43:24.9526738Z * [new branch] csl/td_dynamo -> origin/csl/td_dynamo 2025-08-14T21:43:24.9527322Z * [new branch] csl/test_cuda_build_large_runner -> origin/csl/test_cuda_build_large_runner 2025-08-14T21:43:24.9527921Z * [new branch] csl/unused_docker -> origin/csl/unused_docker 2025-08-14T21:43:24.9528513Z * [new branch] csl/win_sccache -> origin/csl/win_sccache 2025-08-14T21:43:24.9529242Z * [new branch] cublasltrelax2 -> origin/cublasltrelax2 2025-08-14T21:43:24.9529740Z * [new branch] cublasrelax2 -> origin/cublasrelax2 2025-08-14T21:43:24.9530269Z * [new branch] cudnnsdparefactor -> origin/cudnnsdparefactor 2025-08-14T21:43:24.9530824Z * [new branch] custom_lowering_dict -> origin/custom_lowering_dict 2025-08-14T21:43:24.9947472Z * [new branch] czhuge_muon_dev -> origin/czhuge_muon_dev 2025-08-14T21:43:24.9948023Z * [new branch] d4l3k/delete_hook -> origin/d4l3k/delete_hook 2025-08-14T21:43:24.9948535Z * [new branch] d4l3k/dist_queue -> origin/d4l3k/dist_queue 2025-08-14T21:43:24.9949061Z * [new branch] d4l3k/wait_stream -> origin/d4l3k/wait_stream 2025-08-14T21:43:24.9949642Z * [new branch] dcp-safetensor-test-fix -> origin/dcp-safetensor-test-fix 2025-08-14T21:43:24.9950274Z * [new branch] dcp_zoc -> origin/dcp_zoc 2025-08-14T21:43:24.9950862Z * [new branch] delete-quant-docs -> origin/delete-quant-docs 2025-08-14T21:43:24.9951587Z * [new branch] dependabot/pip/dot-ci/docker/protobuf-5.29.5 -> origin/dependabot/pip/dot-ci/docker/protobuf-5.29.5 2025-08-14T21:43:24.9952373Z * [new branch] desertfire/test_cpp_wrapper -> origin/desertfire/test_cpp_wrapper 2025-08-14T21:43:24.9953237Z * [new branch] desertfire/triton-cpu-for-aarch64 -> origin/desertfire/triton-cpu-for-aarch64 2025-08-14T21:43:24.9953912Z * [new branch] dev/joona/MPSNDArrayAdd -> origin/dev/joona/MPSNDArrayAdd 2025-08-14T21:43:24.9954497Z * [new branch] dev/joona/Unranked -> origin/dev/joona/Unranked 2025-08-14T21:43:24.9955007Z * [new branch] dev/joona/cat -> origin/dev/joona/cat 2025-08-14T21:43:24.9955559Z * [new branch] dev/joona/cat_remove_graph -> origin/dev/joona/cat_remove_graph 2025-08-14T21:43:24.9956157Z * [new branch] dev/joona/embeddingbag -> origin/dev/joona/embeddingbag 2025-08-14T21:43:24.9956858Z * [new branch] dev/joona/getTensorsString -> origin/dev/joona/getTensorsString 2025-08-14T21:43:24.9957683Z * [new branch] dev/joona/maxpool2dwithindices_errmsg -> origin/dev/joona/maxpool2dwithindices_errmsg 2025-08-14T21:43:24.9958401Z * [new branch] dev/joona/mps_linear_macos14 -> origin/dev/joona/mps_linear_macos14 2025-08-14T21:43:24.9958963Z * [new branch] dev/joona/sdpa -> origin/dev/joona/sdpa 2025-08-14T21:43:24.9959563Z * [new branch] dev/joona/synchronize_benchmark -> origin/dev/joona/synchronize_benchmark 2025-08-14T21:43:24.9960175Z * [new branch] dev/joona/topk_newapi -> origin/dev/joona/topk_newapi 2025-08-14T21:43:24.9960730Z * [new branch] dev/joona/type_inf -> origin/dev/joona/type_inf 2025-08-14T21:43:24.9961258Z * [new branch] dev/joona/upsize3d -> origin/dev/joona/upsize3d 2025-08-14T21:43:24.9961760Z * [new branch] disable -> origin/disable 2025-08-14T21:43:24.9962402Z * [new branch] divyanshk-log-api-usage-datapipes-1 -> origin/divyanshk-log-api-usage-datapipes-1 2025-08-14T21:43:24.9963126Z * [new branch] e2e-baseline -> origin/e2e-baseline 2025-08-14T21:43:24.9963681Z * [new branch] embg/test_inductor_ci_128B -> origin/embg/test_inductor_ci_128B 2025-08-14T21:43:24.9964353Z * [new branch] embg/test_inductor_ci_base -> origin/embg/test_inductor_ci_base 2025-08-14T21:43:24.9964965Z * [new branch] embg/test_inductor_ci_control -> origin/embg/test_inductor_ci_control 2025-08-14T21:43:24.9965595Z * [new branch] embg/triton_l2_prefetch_128B -> origin/embg/triton_l2_prefetch_128B 2025-08-14T21:43:24.9966963Z * [new branch] embg/triton_l2_prefetch_256B -> origin/embg/triton_l2_prefetch_256B 2025-08-14T21:43:24.9967583Z * [new branch] enable-b200-benchmark -> origin/enable-b200-benchmark 2025-08-14T21:43:24.9968109Z * [new branch] eqy-patch-1 -> origin/eqy-patch-1 2025-08-14T21:43:24.9968610Z * [new branch] eqy-patch-10 -> origin/eqy-patch-10 2025-08-14T21:43:24.9969083Z * [new branch] eqy-patch-2 -> origin/eqy-patch-2 2025-08-14T21:43:24.9969739Z * [new branch] example-convert-torch.nn -> origin/example-convert-torch.nn 2025-08-14T21:43:24.9970425Z * [new branch] exclamaforte/amd-ma -> origin/exclamaforte/amd-ma 2025-08-14T21:43:24.9971124Z * [new branch] exclamaforte/bump-transformer-version -> origin/exclamaforte/bump-transformer-version 2025-08-14T21:43:24.9971955Z * [new branch] exclamaforte/combo-kernels-perf-run -> origin/exclamaforte/combo-kernels-perf-run 2025-08-14T21:43:24.9972741Z * [new branch] exclamaforte/debug-autotuner-profile -> origin/exclamaforte/debug-autotuner-profile 2025-08-14T21:43:24.9973487Z * [new branch] exclamaforte/do_bench_refactor -> origin/exclamaforte/do_bench_refactor 2025-08-14T21:43:24.9974208Z * [new branch] exclamaforte/enable-mem-dep-fusion -> origin/exclamaforte/enable-mem-dep-fusion 2025-08-14T21:43:24.9975135Z * [new branch] exclamaforte/fix-exhaustive-autotuning -> origin/exclamaforte/fix-exhaustive-autotuning 2025-08-14T21:43:24.9976070Z * [new branch] exclamaforte/fix-trace-parsing-fx-svg -> origin/exclamaforte/fix-trace-parsing-fx-svg 2025-08-14T21:43:25.0373463Z * [new branch] exclamaforte/force-pointwise-cat-perf-run -> origin/exclamaforte/force-pointwise-cat-perf-run 2025-08-14T21:43:25.0374257Z * [new branch] exclamaforte/fusion-data -> origin/exclamaforte/fusion-data 2025-08-14T21:43:25.0374981Z * [new branch] exclamaforte/gemm-benchmark-run -> origin/exclamaforte/gemm-benchmark-run 2025-08-14T21:43:25.0375697Z * [new branch] exclamaforte/gemm-export-model -> origin/exclamaforte/gemm-export-model 2025-08-14T21:43:25.0376342Z * [new branch] exclamaforte/gemm-model -> origin/exclamaforte/gemm-model 2025-08-14T21:43:25.0377128Z * [new branch] exclamaforte/gemm-model-all-data-collection -> origin/exclamaforte/gemm-model-all-data-collection 2025-08-14T21:43:25.0377924Z * [new branch] exclamaforte/gemm-to-amd -> origin/exclamaforte/gemm-to-amd 2025-08-14T21:43:25.0378564Z * [new branch] exclamaforte/just-gemm-model -> origin/exclamaforte/just-gemm-model 2025-08-14T21:43:25.0379333Z * [new branch] exclamaforte/just-gemm-model-no-refactor -> origin/exclamaforte/just-gemm-model-no-refactor 2025-08-14T21:43:25.0380154Z * [new branch] exclamaforte/memory-counter -> origin/exclamaforte/memory-counter 2025-08-14T21:43:25.0380846Z * [new branch] exclamaforte/scheduler-refactor -> origin/exclamaforte/scheduler-refactor 2025-08-14T21:43:25.0381571Z * [new branch] exclamaforte/test_cpp_wrapper_mode -> origin/exclamaforte/test_cpp_wrapper_mode 2025-08-14T21:43:25.0382366Z * [new branch] exclamaforte/update-autotune-configs -> origin/exclamaforte/update-autotune-configs 2025-08-14T21:43:25.0383212Z * [new branch] exclamaforte/update-autotune-configs-2 -> origin/exclamaforte/update-autotune-configs-2 2025-08-14T21:43:25.0384026Z * [new branch] exclamaforte/update-pandas-numpy-ci -> origin/exclamaforte/update-pandas-numpy-ci 2025-08-14T21:43:25.0384753Z * [new branch] exclamforte/gemm-model-final -> origin/exclamforte/gemm-model-final 2025-08-14T21:43:25.0385289Z * [new branch] exec -> origin/exec 2025-08-14T21:43:25.0385980Z * [new branch] experimental-mosaic -> origin/experimental-mosaic 2025-08-14T21:43:25.0386542Z * [new branch] export-D58091437 -> origin/export-D58091437 2025-08-14T21:43:25.0387055Z * [new branch] export-D61047529 -> origin/export-D61047529 2025-08-14T21:43:25.0387576Z * [new branch] export-D68846308 -> origin/export-D68846308 2025-08-14T21:43:25.0388085Z * [new branch] export-D70112642 -> origin/export-D70112642 2025-08-14T21:43:25.0388585Z * [new branch] export-D71412006 -> origin/export-D71412006 2025-08-14T21:43:25.0389088Z * [new branch] export-D72483950 -> origin/export-D72483950 2025-08-14T21:43:25.0389575Z * [new branch] export-D73042989 -> origin/export-D73042989 2025-08-14T21:43:25.0390076Z * [new branch] export-D73287751 -> origin/export-D73287751 2025-08-14T21:43:25.0390572Z * [new branch] export-D75183591 -> origin/export-D75183591 2025-08-14T21:43:25.0391074Z * [new branch] export-D75605373 -> origin/export-D75605373 2025-08-14T21:43:25.0391568Z * [new branch] export-D75617432 -> origin/export-D75617432 2025-08-14T21:43:25.0392078Z * [new branch] export-D75659965 -> origin/export-D75659965 2025-08-14T21:43:25.0392706Z * [new branch] export-D76080931 -> origin/export-D76080931 2025-08-14T21:43:25.0393198Z * [new branch] export-D76463347 -> origin/export-D76463347 2025-08-14T21:43:25.0393705Z * [new branch] export-D76797250 -> origin/export-D76797250 2025-08-14T21:43:25.0394194Z * [new branch] export-D76885271 -> origin/export-D76885271 2025-08-14T21:43:25.0394710Z * [new branch] export-D76885620 -> origin/export-D76885620 2025-08-14T21:43:25.0395219Z * [new branch] export-D76936623 -> origin/export-D76936623 2025-08-14T21:43:25.0395718Z * [new branch] export-D76958268 -> origin/export-D76958268 2025-08-14T21:43:25.0396227Z * [new branch] export-D78047846 -> origin/export-D78047846 2025-08-14T21:43:25.0396720Z * [new branch] export-D78308105 -> origin/export-D78308105 2025-08-14T21:43:25.0397223Z * [new branch] export-D78363609 -> origin/export-D78363609 2025-08-14T21:43:25.0397708Z * [new branch] export-D78375400 -> origin/export-D78375400 2025-08-14T21:43:25.0398220Z * [new branch] export-D78431075 -> origin/export-D78431075 2025-08-14T21:43:25.0398728Z * [new branch] export-D78431305 -> origin/export-D78431305 2025-08-14T21:43:25.0399216Z * [new branch] export-D78458745 -> origin/export-D78458745 2025-08-14T21:43:25.0399711Z * [new branch] export-D78524147 -> origin/export-D78524147 2025-08-14T21:43:25.0848813Z * [new branch] export-D78580107 -> origin/export-D78580107 2025-08-14T21:43:25.0849367Z * [new branch] export-D78588406 -> origin/export-D78588406 2025-08-14T21:43:25.0849860Z * [new branch] export-D78691422 -> origin/export-D78691422 2025-08-14T21:43:25.0850385Z * [new branch] export-D78758466 -> origin/export-D78758466 2025-08-14T21:43:25.0850868Z * [new branch] export-D78822171 -> origin/export-D78822171 2025-08-14T21:43:25.0851358Z * [new branch] export-D78822351 -> origin/export-D78822351 2025-08-14T21:43:25.0851843Z * [new branch] export-D78822507 -> origin/export-D78822507 2025-08-14T21:43:25.0852325Z * [new branch] export-D78826994 -> origin/export-D78826994 2025-08-14T21:43:25.0853011Z * [new branch] export-D78894142 -> origin/export-D78894142 2025-08-14T21:43:25.0853506Z * [new branch] export-D78894324 -> origin/export-D78894324 2025-08-14T21:43:25.0854007Z * [new branch] export-D78907485 -> origin/export-D78907485 2025-08-14T21:43:25.0854506Z * [new branch] export-D78929245 -> origin/export-D78929245 2025-08-14T21:43:25.0854997Z * [new branch] export-D78934925 -> origin/export-D78934925 2025-08-14T21:43:25.0855492Z * [new branch] export-D78953203 -> origin/export-D78953203 2025-08-14T21:43:25.0855988Z * [new branch] export-D78953229 -> origin/export-D78953229 2025-08-14T21:43:25.0856486Z * [new branch] export-D78957093 -> origin/export-D78957093 2025-08-14T21:43:25.0856975Z * [new branch] export-D78957389 -> origin/export-D78957389 2025-08-14T21:43:25.0857460Z * [new branch] export-D78957974 -> origin/export-D78957974 2025-08-14T21:43:25.0857961Z * [new branch] export-D78979812 -> origin/export-D78979812 2025-08-14T21:43:25.0858438Z * [new branch] export-D78996107 -> origin/export-D78996107 2025-08-14T21:43:25.0858940Z * [new branch] export-D79026433 -> origin/export-D79026433 2025-08-14T21:43:25.0859549Z * [new branch] export-D79230339 -> origin/export-D79230339 2025-08-14T21:43:25.0860110Z * [new branch] export-D79319835 -> origin/export-D79319835 2025-08-14T21:43:25.0860600Z * [new branch] export-D79328456 -> origin/export-D79328456 2025-08-14T21:43:25.0861090Z * [new branch] export-D79534608 -> origin/export-D79534608 2025-08-14T21:43:25.0861588Z * [new branch] export-D79647167 -> origin/export-D79647167 2025-08-14T21:43:25.0862077Z * [new branch] export-D79751098 -> origin/export-D79751098 2025-08-14T21:43:25.0862576Z * [new branch] export-D79785974 -> origin/export-D79785974 2025-08-14T21:43:25.0863070Z * [new branch] export-D80025417 -> origin/export-D80025417 2025-08-14T21:43:25.0863550Z * [new branch] export-D80120333 -> origin/export-D80120333 2025-08-14T21:43:25.0864042Z * [new branch] export-D80214882 -> origin/export-D80214882 2025-08-14T21:43:25.0864654Z * [new branch] exported-model-train-idempotent -> origin/exported-model-train-idempotent 2025-08-14T21:43:25.0865341Z * [new branch] ezyang/wip-aot-descriptors -> origin/ezyang/wip-aot-descriptors 2025-08-14T21:43:25.0865875Z * [new branch] fa_u8_brgemm -> origin/fa_u8_brgemm 2025-08-14T21:43:25.0866350Z * [new branch] fastmath_baseline -> origin/fastmath_baseline 2025-08-14T21:43:25.0866855Z * [new branch] fbcode/warm -> origin/fbcode/warm 2025-08-14T21:43:25.0867281Z * [new branch] fca -> origin/fca 2025-08-14T21:43:25.0867716Z * [new branch] fca2_ca5984c -> origin/fca2_ca5984c 2025-08-14T21:43:25.0868156Z * [new branch] fca5 -> origin/fca5 2025-08-14T21:43:25.0868702Z * [new branch] feature/function-numa-binding -> origin/feature/function-numa-binding 2025-08-14T21:43:25.0869360Z * [new branch] fengyuan/external-proj -> origin/fengyuan/external-proj 2025-08-14T21:43:25.0870086Z * [new branch] fengyuan/out-of-tree-xpu-ops-improve-test -> origin/fengyuan/out-of-tree-xpu-ops-improve-test 2025-08-14T21:43:25.0870968Z * [new branch] fengyuan/out-of-tree-xpu-ops-remove-dtype -> origin/fengyuan/out-of-tree-xpu-ops-remove-dtype 2025-08-14T21:43:25.0871794Z * [new branch] fengyuan/test-xpu -> origin/fengyuan/test-xpu 2025-08-14T21:43:25.0872321Z * [new branch] ffast_math_baseline -> origin/ffast_math_baseline 2025-08-14T21:43:25.0872843Z * [new branch] ffast_math_target -> origin/ffast_math_target 2025-08-14T21:43:25.0873351Z * [new branch] findhao/base_commit -> origin/findhao/base_commit 2025-08-14T21:43:25.1315236Z * [new branch] findhao/base_commit1 -> origin/findhao/base_commit1 2025-08-14T21:43:25.1315867Z * [new branch] findhao/fix-indirect-access -> origin/findhao/fix-indirect-access 2025-08-14T21:43:25.1316459Z * [new branch] findhao/multistream2 -> origin/findhao/multistream2 2025-08-14T21:43:25.1317002Z * [new branch] findhao/multistream5 -> origin/findhao/multistream5 2025-08-14T21:43:25.1317545Z * [new branch] findhao/multistream6 -> origin/findhao/multistream6 2025-08-14T21:43:25.1318118Z * [new branch] findhao/operatorbench3 -> origin/findhao/operatorbench3 2025-08-14T21:43:25.1318698Z * [new branch] findhao/operatorbench5 -> origin/findhao/operatorbench5 2025-08-14T21:43:25.1319245Z * [new branch] findhao/tritonparse -> origin/findhao/tritonparse 2025-08-14T21:43:25.1319726Z * [new branch] fix -> origin/fix 2025-08-14T21:43:25.1320421Z * [new branch] fix-ck-gemm-template-format -> origin/fix-ck-gemm-template-format 2025-08-14T21:43:25.1321009Z * [new branch] fix-config-ignore -> origin/fix-config-ignore 2025-08-14T21:43:25.1321521Z * [new branch] fix-dict-guard -> origin/fix-dict-guard 2025-08-14T21:43:25.1322058Z * [new branch] fix-distributed-warning -> origin/fix-distributed-warning 2025-08-14T21:43:25.1322683Z * [new branch] fix-inductor-periodic-0528 -> origin/fix-inductor-periodic-0528 2025-08-14T21:43:25.1323312Z * [new branch] fix-rlease-feature-template -> origin/fix-rlease-feature-template 2025-08-14T21:43:25.1323850Z * [new branch] fix_153389 -> origin/fix_153389 2025-08-14T21:43:25.1324311Z * [new branch] fixes-triage -> origin/fixes-triage 2025-08-14T21:43:25.1324801Z * [new branch] flash_decoding_cpu -> origin/flash_decoding_cpu 2025-08-14T21:43:25.1325291Z * [new branch] flex-flash -> origin/flex-flash 2025-08-14T21:43:25.1325746Z * [new branch] flex-lowering -> origin/flex-lowering 2025-08-14T21:43:25.1326218Z * [new branch] flex-warning -> origin/flex-warning 2025-08-14T21:43:25.1326766Z * [new branch] flex_attention_functorch_grad -> origin/flex_attention_functorch_grad 2025-08-14T21:43:25.1327301Z * [new branch] flex_flash -> origin/flex_flash 2025-08-14T21:43:25.1327861Z * [new branch] fmassa/fix_memeff_sharding_rule -> origin/fmassa/fix_memeff_sharding_rule 2025-08-14T21:43:25.1328519Z * [new branch] fmassa/try_fix_ac_tag_propagation -> origin/fmassa/try_fix_ac_tag_propagation 2025-08-14T21:43:25.1329104Z * [new branch] fsdp2_trace_rules -> origin/fsdp2_trace_rules 2025-08-14T21:43:25.1329582Z * [new branch] fsdpv2_3d -> origin/fsdpv2_3d 2025-08-14T21:43:25.1330030Z * [new branch] fsdpv2_3d_m1 -> origin/fsdpv2_3d_m1 2025-08-14T21:43:25.1330472Z * [new branch] fx_cpp -> origin/fx_cpp 2025-08-14T21:43:25.1330902Z * [new branch] fy/fix-win -> origin/fy/fix-win 2025-08-14T21:43:25.1331393Z * [new branch] gh/AlnisM/1/base -> origin/gh/AlnisM/1/base 2025-08-14T21:43:25.1331995Z * [new branch] gh/AlnisM/1/head -> origin/gh/AlnisM/1/head 2025-08-14T21:43:25.1332495Z * [new branch] gh/CaoE/2/base -> origin/gh/CaoE/2/base 2025-08-14T21:43:25.1332971Z * [new branch] gh/CaoE/2/head -> origin/gh/CaoE/2/head 2025-08-14T21:43:25.1333431Z * [new branch] gh/CaoE/2/orig -> origin/gh/CaoE/2/orig 2025-08-14T21:43:25.1333968Z * [new branch] gh/ColinPeppler/72/base -> origin/gh/ColinPeppler/72/base 2025-08-14T21:43:25.1334553Z * [new branch] gh/ColinPeppler/72/head -> origin/gh/ColinPeppler/72/head 2025-08-14T21:43:25.1335141Z * [new branch] gh/ColinPeppler/72/orig -> origin/gh/ColinPeppler/72/orig 2025-08-14T21:43:25.1335714Z * [new branch] gh/ColinPeppler/77/base -> origin/gh/ColinPeppler/77/base 2025-08-14T21:43:25.1336273Z * [new branch] gh/ColinPeppler/77/head -> origin/gh/ColinPeppler/77/head 2025-08-14T21:43:25.1336841Z * [new branch] gh/ColinPeppler/77/orig -> origin/gh/ColinPeppler/77/orig 2025-08-14T21:43:25.1337403Z * [new branch] gh/ColinPeppler/78/base -> origin/gh/ColinPeppler/78/base 2025-08-14T21:43:25.1337970Z * [new branch] gh/ColinPeppler/78/head -> origin/gh/ColinPeppler/78/head 2025-08-14T21:43:25.1338529Z * [new branch] gh/ColinPeppler/78/orig -> origin/gh/ColinPeppler/78/orig 2025-08-14T21:43:25.1339186Z * [new branch] gh/EikanWang/67/base -> origin/gh/EikanWang/67/base 2025-08-14T21:43:25.1339727Z * [new branch] gh/EikanWang/67/head -> origin/gh/EikanWang/67/head 2025-08-14T21:43:25.1340352Z * [new branch] gh/EikanWang/80/base -> origin/gh/EikanWang/80/base 2025-08-14T21:43:25.1837238Z * [new branch] gh/EikanWang/80/head -> origin/gh/EikanWang/80/head 2025-08-14T21:43:25.1837963Z * [new branch] gh/EikanWang/80/orig -> origin/gh/EikanWang/80/orig 2025-08-14T21:43:25.1838609Z * [new branch] gh/EikanWang/81/base -> origin/gh/EikanWang/81/base 2025-08-14T21:43:25.1839154Z * [new branch] gh/EikanWang/81/head -> origin/gh/EikanWang/81/head 2025-08-14T21:43:25.1839675Z * [new branch] gh/EikanWang/81/orig -> origin/gh/EikanWang/81/orig 2025-08-14T21:43:25.1840209Z * [new branch] gh/Gasoonjia/1/base -> origin/gh/Gasoonjia/1/base 2025-08-14T21:43:25.1840759Z * [new branch] gh/Gasoonjia/1/head -> origin/gh/Gasoonjia/1/head 2025-08-14T21:43:25.1841272Z * [new branch] gh/H-Huang/131/base -> origin/gh/H-Huang/131/base 2025-08-14T21:43:25.1841781Z * [new branch] gh/H-Huang/131/head -> origin/gh/H-Huang/131/head 2025-08-14T21:43:25.1842272Z * [new branch] gh/H-Huang/131/orig -> origin/gh/H-Huang/131/orig 2025-08-14T21:43:25.1842777Z * [new branch] gh/H-Huang/132/base -> origin/gh/H-Huang/132/base 2025-08-14T21:43:25.1843279Z * [new branch] gh/H-Huang/132/head -> origin/gh/H-Huang/132/head 2025-08-14T21:43:25.1843767Z * [new branch] gh/H-Huang/132/orig -> origin/gh/H-Huang/132/orig 2025-08-14T21:43:25.1844268Z * [new branch] gh/H-Huang/180/base -> origin/gh/H-Huang/180/base 2025-08-14T21:43:25.1844755Z * [new branch] gh/H-Huang/180/head -> origin/gh/H-Huang/180/head 2025-08-14T21:43:25.1845259Z * [new branch] gh/H-Huang/180/orig -> origin/gh/H-Huang/180/orig 2025-08-14T21:43:25.1845758Z * [new branch] gh/H-Huang/182/base -> origin/gh/H-Huang/182/base 2025-08-14T21:43:25.1846247Z * [new branch] gh/H-Huang/182/head -> origin/gh/H-Huang/182/head 2025-08-14T21:43:25.1846747Z * [new branch] gh/H-Huang/182/orig -> origin/gh/H-Huang/182/orig 2025-08-14T21:43:25.1847416Z * [new branch] gh/H-Huang/183/base -> origin/gh/H-Huang/183/base 2025-08-14T21:43:25.1847922Z * [new branch] gh/H-Huang/183/head -> origin/gh/H-Huang/183/head 2025-08-14T21:43:25.1848422Z * [new branch] gh/H-Huang/183/orig -> origin/gh/H-Huang/183/orig 2025-08-14T21:43:25.1848928Z * [new branch] gh/H-Huang/187/base -> origin/gh/H-Huang/187/base 2025-08-14T21:43:25.1849434Z * [new branch] gh/H-Huang/187/head -> origin/gh/H-Huang/187/head 2025-08-14T21:43:25.1849931Z * [new branch] gh/H-Huang/187/orig -> origin/gh/H-Huang/187/orig 2025-08-14T21:43:25.1850436Z * [new branch] gh/H-Huang/192/base -> origin/gh/H-Huang/192/base 2025-08-14T21:43:25.1850934Z * [new branch] gh/H-Huang/192/head -> origin/gh/H-Huang/192/head 2025-08-14T21:43:25.1851430Z * [new branch] gh/H-Huang/192/orig -> origin/gh/H-Huang/192/orig 2025-08-14T21:43:25.1851942Z * [new branch] gh/H-Huang/195/base -> origin/gh/H-Huang/195/base 2025-08-14T21:43:25.1852433Z * [new branch] gh/H-Huang/195/head -> origin/gh/H-Huang/195/head 2025-08-14T21:43:25.1852930Z * [new branch] gh/H-Huang/195/orig -> origin/gh/H-Huang/195/orig 2025-08-14T21:43:25.1853419Z * [new branch] gh/H-Huang/196/base -> origin/gh/H-Huang/196/base 2025-08-14T21:43:25.1854051Z * [new branch] gh/H-Huang/196/head -> origin/gh/H-Huang/196/head 2025-08-14T21:43:25.1854554Z * [new branch] gh/H-Huang/196/orig -> origin/gh/H-Huang/196/orig 2025-08-14T21:43:25.1855050Z * [new branch] gh/H-Huang/197/base -> origin/gh/H-Huang/197/base 2025-08-14T21:43:25.1855550Z * [new branch] gh/H-Huang/197/head -> origin/gh/H-Huang/197/head 2025-08-14T21:43:25.1856037Z * [new branch] gh/H-Huang/197/orig -> origin/gh/H-Huang/197/orig 2025-08-14T21:43:25.1856554Z * [new branch] gh/H-Huang/198/base -> origin/gh/H-Huang/198/base 2025-08-14T21:43:25.1857048Z * [new branch] gh/H-Huang/198/head -> origin/gh/H-Huang/198/head 2025-08-14T21:43:25.1857547Z * [new branch] gh/H-Huang/198/orig -> origin/gh/H-Huang/198/orig 2025-08-14T21:43:25.1858045Z * [new branch] gh/H-Huang/199/base -> origin/gh/H-Huang/199/base 2025-08-14T21:43:25.1858536Z * [new branch] gh/H-Huang/199/head -> origin/gh/H-Huang/199/head 2025-08-14T21:43:25.1859041Z * [new branch] gh/H-Huang/199/orig -> origin/gh/H-Huang/199/orig 2025-08-14T21:43:25.1859531Z * [new branch] gh/H-Huang/200/base -> origin/gh/H-Huang/200/base 2025-08-14T21:43:25.1860119Z * [new branch] gh/H-Huang/200/head -> origin/gh/H-Huang/200/head 2025-08-14T21:43:25.1860631Z * [new branch] gh/H-Huang/200/orig -> origin/gh/H-Huang/200/orig 2025-08-14T21:43:25.1861128Z * [new branch] gh/H-Huang/201/base -> origin/gh/H-Huang/201/base 2025-08-14T21:43:25.2304907Z * [new branch] gh/H-Huang/201/head -> origin/gh/H-Huang/201/head 2025-08-14T21:43:25.2305472Z * [new branch] gh/H-Huang/201/orig -> origin/gh/H-Huang/201/orig 2025-08-14T21:43:25.2305997Z * [new branch] gh/H-Huang/202/base -> origin/gh/H-Huang/202/base 2025-08-14T21:43:25.2306536Z * [new branch] gh/H-Huang/202/head -> origin/gh/H-Huang/202/head 2025-08-14T21:43:25.2307042Z * [new branch] gh/H-Huang/202/orig -> origin/gh/H-Huang/202/orig 2025-08-14T21:43:25.2307550Z * [new branch] gh/H-Huang/203/base -> origin/gh/H-Huang/203/base 2025-08-14T21:43:25.2308063Z * [new branch] gh/H-Huang/203/head -> origin/gh/H-Huang/203/head 2025-08-14T21:43:25.2308764Z * [new branch] gh/H-Huang/203/orig -> origin/gh/H-Huang/203/orig 2025-08-14T21:43:25.2309278Z * [new branch] gh/H-Huang/204/base -> origin/gh/H-Huang/204/base 2025-08-14T21:43:25.2309772Z * [new branch] gh/H-Huang/204/head -> origin/gh/H-Huang/204/head 2025-08-14T21:43:25.2310280Z * [new branch] gh/H-Huang/204/orig -> origin/gh/H-Huang/204/orig 2025-08-14T21:43:25.2310799Z * [new branch] gh/H-Huang/205/base -> origin/gh/H-Huang/205/base 2025-08-14T21:43:25.2311292Z * [new branch] gh/H-Huang/205/head -> origin/gh/H-Huang/205/head 2025-08-14T21:43:25.2311793Z * [new branch] gh/H-Huang/205/orig -> origin/gh/H-Huang/205/orig 2025-08-14T21:43:25.2312281Z * [new branch] gh/H-Huang/206/base -> origin/gh/H-Huang/206/base 2025-08-14T21:43:25.2312783Z * [new branch] gh/H-Huang/206/head -> origin/gh/H-Huang/206/head 2025-08-14T21:43:25.2313276Z * [new branch] gh/H-Huang/206/orig -> origin/gh/H-Huang/206/orig 2025-08-14T21:43:25.2313780Z * [new branch] gh/H-Huang/207/base -> origin/gh/H-Huang/207/base 2025-08-14T21:43:25.2314277Z * [new branch] gh/H-Huang/207/head -> origin/gh/H-Huang/207/head 2025-08-14T21:43:25.2314765Z * [new branch] gh/H-Huang/207/orig -> origin/gh/H-Huang/207/orig 2025-08-14T21:43:25.2316040Z * [new branch] gh/H-Huang/208/base -> origin/gh/H-Huang/208/base 2025-08-14T21:43:25.2316546Z * [new branch] gh/H-Huang/208/head -> origin/gh/H-Huang/208/head 2025-08-14T21:43:25.2317057Z * [new branch] gh/H-Huang/208/orig -> origin/gh/H-Huang/208/orig 2025-08-14T21:43:25.2317553Z * [new branch] gh/H-Huang/209/base -> origin/gh/H-Huang/209/base 2025-08-14T21:43:25.2318070Z * [new branch] gh/H-Huang/209/head -> origin/gh/H-Huang/209/head 2025-08-14T21:43:25.2318579Z * [new branch] gh/H-Huang/209/orig -> origin/gh/H-Huang/209/orig 2025-08-14T21:43:25.2319094Z * [new branch] gh/H-Huang/210/base -> origin/gh/H-Huang/210/base 2025-08-14T21:43:25.2319592Z * [new branch] gh/H-Huang/210/head -> origin/gh/H-Huang/210/head 2025-08-14T21:43:25.2320076Z * [new branch] gh/H-Huang/210/orig -> origin/gh/H-Huang/210/orig 2025-08-14T21:43:25.2320624Z * [new branch] gh/IvanKobzarev/107/base -> origin/gh/IvanKobzarev/107/base 2025-08-14T21:43:25.2321205Z * [new branch] gh/IvanKobzarev/107/head -> origin/gh/IvanKobzarev/107/head 2025-08-14T21:43:25.2321769Z * [new branch] gh/IvanKobzarev/107/orig -> origin/gh/IvanKobzarev/107/orig 2025-08-14T21:43:25.2322341Z * [new branch] gh/IvanKobzarev/110/base -> origin/gh/IvanKobzarev/110/base 2025-08-14T21:43:25.2322919Z * [new branch] gh/IvanKobzarev/110/head -> origin/gh/IvanKobzarev/110/head 2025-08-14T21:43:25.2323489Z * [new branch] gh/IvanKobzarev/110/orig -> origin/gh/IvanKobzarev/110/orig 2025-08-14T21:43:25.2324062Z * [new branch] gh/IvanKobzarev/111/base -> origin/gh/IvanKobzarev/111/base 2025-08-14T21:43:25.2324633Z * [new branch] gh/IvanKobzarev/111/head -> origin/gh/IvanKobzarev/111/head 2025-08-14T21:43:25.2325208Z * [new branch] gh/IvanKobzarev/111/orig -> origin/gh/IvanKobzarev/111/orig 2025-08-14T21:43:25.2325769Z * [new branch] gh/IvanKobzarev/112/base -> origin/gh/IvanKobzarev/112/base 2025-08-14T21:43:25.2326337Z * [new branch] gh/IvanKobzarev/112/head -> origin/gh/IvanKobzarev/112/head 2025-08-14T21:43:25.2326907Z * [new branch] gh/IvanKobzarev/112/orig -> origin/gh/IvanKobzarev/112/orig 2025-08-14T21:43:25.2327470Z * [new branch] gh/IvanKobzarev/115/base -> origin/gh/IvanKobzarev/115/base 2025-08-14T21:43:25.2328164Z * [new branch] gh/IvanKobzarev/115/head -> origin/gh/IvanKobzarev/115/head 2025-08-14T21:43:25.2328732Z * [new branch] gh/IvanKobzarev/115/orig -> origin/gh/IvanKobzarev/115/orig 2025-08-14T21:43:25.2329310Z * [new branch] gh/IvanKobzarev/116/base -> origin/gh/IvanKobzarev/116/base 2025-08-14T21:43:25.2329886Z * [new branch] gh/IvanKobzarev/116/head -> origin/gh/IvanKobzarev/116/head 2025-08-14T21:43:25.2770818Z * [new branch] gh/IvanKobzarev/116/orig -> origin/gh/IvanKobzarev/116/orig 2025-08-14T21:43:25.2771459Z * [new branch] gh/IvanKobzarev/118/base -> origin/gh/IvanKobzarev/118/base 2025-08-14T21:43:25.2772034Z * [new branch] gh/IvanKobzarev/118/head -> origin/gh/IvanKobzarev/118/head 2025-08-14T21:43:25.2772615Z * [new branch] gh/IvanKobzarev/118/orig -> origin/gh/IvanKobzarev/118/orig 2025-08-14T21:43:25.2773207Z * [new branch] gh/IvanKobzarev/124/base -> origin/gh/IvanKobzarev/124/base 2025-08-14T21:43:25.2773769Z * [new branch] gh/IvanKobzarev/124/head -> origin/gh/IvanKobzarev/124/head 2025-08-14T21:43:25.2774334Z * [new branch] gh/IvanKobzarev/124/orig -> origin/gh/IvanKobzarev/124/orig 2025-08-14T21:43:25.2774896Z * [new branch] gh/IvanKobzarev/126/base -> origin/gh/IvanKobzarev/126/base 2025-08-14T21:43:25.2775656Z * [new branch] gh/IvanKobzarev/126/head -> origin/gh/IvanKobzarev/126/head 2025-08-14T21:43:25.2776231Z * [new branch] gh/IvanKobzarev/126/orig -> origin/gh/IvanKobzarev/126/orig 2025-08-14T21:43:25.2776800Z * [new branch] gh/IvanKobzarev/127/base -> origin/gh/IvanKobzarev/127/base 2025-08-14T21:43:25.2777385Z * [new branch] gh/IvanKobzarev/127/head -> origin/gh/IvanKobzarev/127/head 2025-08-14T21:43:25.2777966Z * [new branch] gh/IvanKobzarev/127/orig -> origin/gh/IvanKobzarev/127/orig 2025-08-14T21:43:25.2778538Z * [new branch] gh/IvanKobzarev/128/base -> origin/gh/IvanKobzarev/128/base 2025-08-14T21:43:25.2779109Z * [new branch] gh/IvanKobzarev/128/head -> origin/gh/IvanKobzarev/128/head 2025-08-14T21:43:25.2779673Z * [new branch] gh/IvanKobzarev/128/orig -> origin/gh/IvanKobzarev/128/orig 2025-08-14T21:43:25.2780356Z * [new branch] gh/IvanKobzarev/129/base -> origin/gh/IvanKobzarev/129/base 2025-08-14T21:43:25.2780928Z * [new branch] gh/IvanKobzarev/129/head -> origin/gh/IvanKobzarev/129/head 2025-08-14T21:43:25.2781506Z * [new branch] gh/IvanKobzarev/129/orig -> origin/gh/IvanKobzarev/129/orig 2025-08-14T21:43:25.2782082Z * [new branch] gh/IvanKobzarev/130/base -> origin/gh/IvanKobzarev/130/base 2025-08-14T21:43:25.2782646Z * [new branch] gh/IvanKobzarev/130/head -> origin/gh/IvanKobzarev/130/head 2025-08-14T21:43:25.2783231Z * [new branch] gh/IvanKobzarev/130/orig -> origin/gh/IvanKobzarev/130/orig 2025-08-14T21:43:25.2783793Z * [new branch] gh/IvanKobzarev/131/base -> origin/gh/IvanKobzarev/131/base 2025-08-14T21:43:25.2784360Z * [new branch] gh/IvanKobzarev/131/head -> origin/gh/IvanKobzarev/131/head 2025-08-14T21:43:25.2784935Z * [new branch] gh/IvanKobzarev/131/orig -> origin/gh/IvanKobzarev/131/orig 2025-08-14T21:43:25.2785502Z * [new branch] gh/IvanKobzarev/132/base -> origin/gh/IvanKobzarev/132/base 2025-08-14T21:43:25.2786076Z * [new branch] gh/IvanKobzarev/132/head -> origin/gh/IvanKobzarev/132/head 2025-08-14T21:43:25.2786642Z * [new branch] gh/IvanKobzarev/132/orig -> origin/gh/IvanKobzarev/132/orig 2025-08-14T21:43:25.2787207Z * [new branch] gh/IvanKobzarev/133/base -> origin/gh/IvanKobzarev/133/base 2025-08-14T21:43:25.2788427Z * [new branch] gh/IvanKobzarev/133/head -> origin/gh/IvanKobzarev/133/head 2025-08-14T21:43:25.2789006Z * [new branch] gh/IvanKobzarev/133/orig -> origin/gh/IvanKobzarev/133/orig 2025-08-14T21:43:25.2789594Z * [new branch] gh/IvanKobzarev/134/base -> origin/gh/IvanKobzarev/134/base 2025-08-14T21:43:25.2790275Z * [new branch] gh/IvanKobzarev/134/head -> origin/gh/IvanKobzarev/134/head 2025-08-14T21:43:25.2790862Z * [new branch] gh/IvanKobzarev/134/orig -> origin/gh/IvanKobzarev/134/orig 2025-08-14T21:43:25.2791519Z * [new branch] gh/IvanKobzarev/135/base -> origin/gh/IvanKobzarev/135/base 2025-08-14T21:43:25.2792088Z * [new branch] gh/IvanKobzarev/135/head -> origin/gh/IvanKobzarev/135/head 2025-08-14T21:43:25.2792658Z * [new branch] gh/IvanKobzarev/135/orig -> origin/gh/IvanKobzarev/135/orig 2025-08-14T21:43:25.2793236Z * [new branch] gh/NikhilAPatel/1/base -> origin/gh/NikhilAPatel/1/base 2025-08-14T21:43:25.2793815Z * [new branch] gh/NikhilAPatel/1/head -> origin/gh/NikhilAPatel/1/head 2025-08-14T21:43:25.2794375Z * [new branch] gh/NikhilAPatel/16/base -> origin/gh/NikhilAPatel/16/base 2025-08-14T21:43:25.2794948Z * [new branch] gh/NikhilAPatel/16/head -> origin/gh/NikhilAPatel/16/head 2025-08-14T21:43:25.2795515Z * [new branch] gh/NikhilAPatel/16/orig -> origin/gh/NikhilAPatel/16/orig 2025-08-14T21:43:25.2796196Z * [new branch] gh/NikhilAPatel/18/base -> origin/gh/NikhilAPatel/18/base 2025-08-14T21:43:25.2796862Z * [new branch] gh/NikhilAPatel/18/head -> origin/gh/NikhilAPatel/18/head 2025-08-14T21:43:25.2797524Z * [new branch] gh/NikhilAPatel/18/orig -> origin/gh/NikhilAPatel/18/orig 2025-08-14T21:43:25.3273031Z * [new branch] gh/NikhilAPatel/19/base -> origin/gh/NikhilAPatel/19/base 2025-08-14T21:43:25.3273689Z * [new branch] gh/NikhilAPatel/19/head -> origin/gh/NikhilAPatel/19/head 2025-08-14T21:43:25.3274289Z * [new branch] gh/NikhilAPatel/19/orig -> origin/gh/NikhilAPatel/19/orig 2025-08-14T21:43:25.3274881Z * [new branch] gh/NikhilAPatel/2/base -> origin/gh/NikhilAPatel/2/base 2025-08-14T21:43:25.3275464Z * [new branch] gh/NikhilAPatel/2/head -> origin/gh/NikhilAPatel/2/head 2025-08-14T21:43:25.3276034Z * [new branch] gh/NikhilAPatel/4/base -> origin/gh/NikhilAPatel/4/base 2025-08-14T21:43:25.3276612Z * [new branch] gh/NikhilAPatel/4/head -> origin/gh/NikhilAPatel/4/head 2025-08-14T21:43:25.3277176Z * [new branch] gh/NikhilAPatel/8/base -> origin/gh/NikhilAPatel/8/base 2025-08-14T21:43:25.3277749Z * [new branch] gh/NikhilAPatel/8/head -> origin/gh/NikhilAPatel/8/head 2025-08-14T21:43:25.3278332Z * [new branch] gh/NikhilAPatel/8/orig -> origin/gh/NikhilAPatel/8/orig 2025-08-14T21:43:25.3278890Z * [new branch] gh/NikhilAPatel/9/base -> origin/gh/NikhilAPatel/9/base 2025-08-14T21:43:25.3279456Z * [new branch] gh/NikhilAPatel/9/head -> origin/gh/NikhilAPatel/9/head 2025-08-14T21:43:25.3280014Z * [new branch] gh/NikhilAPatel/9/orig -> origin/gh/NikhilAPatel/9/orig 2025-08-14T21:43:25.3280570Z * [new branch] gh/PaliC/1/base -> origin/gh/PaliC/1/base 2025-08-14T21:43:25.3281064Z * [new branch] gh/PaliC/1/head -> origin/gh/PaliC/1/head 2025-08-14T21:43:25.3281562Z * [new branch] gh/PaliC/1/orig -> origin/gh/PaliC/1/orig 2025-08-14T21:43:25.3282074Z * [new branch] gh/PaliC/12/base -> origin/gh/PaliC/12/base 2025-08-14T21:43:25.3282572Z * [new branch] gh/PaliC/12/head -> origin/gh/PaliC/12/head 2025-08-14T21:43:25.3283261Z * [new branch] gh/PaliC/12/orig -> origin/gh/PaliC/12/orig 2025-08-14T21:43:25.3283760Z * [new branch] gh/PaliC/13/base -> origin/gh/PaliC/13/base 2025-08-14T21:43:25.3284271Z * [new branch] gh/PaliC/13/head -> origin/gh/PaliC/13/head 2025-08-14T21:43:25.3284783Z * [new branch] gh/PaliC/13/orig -> origin/gh/PaliC/13/orig 2025-08-14T21:43:25.3285280Z * [new branch] gh/PaliC/14/base -> origin/gh/PaliC/14/base 2025-08-14T21:43:25.3285801Z * [new branch] gh/PaliC/14/head -> origin/gh/PaliC/14/head 2025-08-14T21:43:25.3286292Z * [new branch] gh/PaliC/14/orig -> origin/gh/PaliC/14/orig 2025-08-14T21:43:25.3286798Z * [new branch] gh/PaliC/15/base -> origin/gh/PaliC/15/base 2025-08-14T21:43:25.3287298Z * [new branch] gh/PaliC/15/head -> origin/gh/PaliC/15/head 2025-08-14T21:43:25.3287786Z * [new branch] gh/PaliC/15/orig -> origin/gh/PaliC/15/orig 2025-08-14T21:43:25.3288285Z * [new branch] gh/PaliC/16/base -> origin/gh/PaliC/16/base 2025-08-14T21:43:25.3288777Z * [new branch] gh/PaliC/16/head -> origin/gh/PaliC/16/head 2025-08-14T21:43:25.3289277Z * [new branch] gh/PaliC/16/orig -> origin/gh/PaliC/16/orig 2025-08-14T21:43:25.3289768Z * [new branch] gh/PaliC/17/base -> origin/gh/PaliC/17/base 2025-08-14T21:43:25.3290384Z * [new branch] gh/PaliC/17/head -> origin/gh/PaliC/17/head 2025-08-14T21:43:25.3290898Z * [new branch] gh/PaliC/17/orig -> origin/gh/PaliC/17/orig 2025-08-14T21:43:25.3291393Z * [new branch] gh/PaliC/18/base -> origin/gh/PaliC/18/base 2025-08-14T21:43:25.3291902Z * [new branch] gh/PaliC/18/head -> origin/gh/PaliC/18/head 2025-08-14T21:43:25.3292402Z * [new branch] gh/PaliC/18/orig -> origin/gh/PaliC/18/orig 2025-08-14T21:43:25.3292906Z * [new branch] gh/PaliC/19/base -> origin/gh/PaliC/19/base 2025-08-14T21:43:25.3293406Z * [new branch] gh/PaliC/19/head -> origin/gh/PaliC/19/head 2025-08-14T21:43:25.3293889Z * [new branch] gh/PaliC/19/orig -> origin/gh/PaliC/19/orig 2025-08-14T21:43:25.3294395Z * [new branch] gh/PaliC/2/base -> origin/gh/PaliC/2/base 2025-08-14T21:43:25.3294887Z * [new branch] gh/PaliC/2/head -> origin/gh/PaliC/2/head 2025-08-14T21:43:25.3295384Z * [new branch] gh/PaliC/2/orig -> origin/gh/PaliC/2/orig 2025-08-14T21:43:25.3295881Z * [new branch] gh/PaliC/20/base -> origin/gh/PaliC/20/base 2025-08-14T21:43:25.3296369Z * [new branch] gh/PaliC/20/head -> origin/gh/PaliC/20/head 2025-08-14T21:43:25.3296871Z * [new branch] gh/PaliC/20/orig -> origin/gh/PaliC/20/orig 2025-08-14T21:43:25.3297359Z * [new branch] gh/PaliC/21/base -> origin/gh/PaliC/21/base 2025-08-14T21:43:25.3297861Z * [new branch] gh/PaliC/21/head -> origin/gh/PaliC/21/head 2025-08-14T21:43:25.3753748Z * [new branch] gh/PaliC/21/orig -> origin/gh/PaliC/21/orig 2025-08-14T21:43:25.3754304Z * [new branch] gh/PaliC/22/base -> origin/gh/PaliC/22/base 2025-08-14T21:43:25.3754853Z * [new branch] gh/PaliC/22/head -> origin/gh/PaliC/22/head 2025-08-14T21:43:25.3755350Z * [new branch] gh/PaliC/22/orig -> origin/gh/PaliC/22/orig 2025-08-14T21:43:25.3755856Z * [new branch] gh/PaliC/23/base -> origin/gh/PaliC/23/base 2025-08-14T21:43:25.3756368Z * [new branch] gh/PaliC/23/head -> origin/gh/PaliC/23/head 2025-08-14T21:43:25.3757035Z * [new branch] gh/PaliC/23/orig -> origin/gh/PaliC/23/orig 2025-08-14T21:43:25.3757560Z * [new branch] gh/PaliC/24/base -> origin/gh/PaliC/24/base 2025-08-14T21:43:25.3758061Z * [new branch] gh/PaliC/24/head -> origin/gh/PaliC/24/head 2025-08-14T21:43:25.3758574Z * [new branch] gh/PaliC/24/orig -> origin/gh/PaliC/24/orig 2025-08-14T21:43:25.3759111Z * [new branch] gh/PaulZhang12/17/base -> origin/gh/PaulZhang12/17/base 2025-08-14T21:43:25.3759699Z * [new branch] gh/PaulZhang12/17/head -> origin/gh/PaulZhang12/17/head 2025-08-14T21:43:25.3760265Z * [new branch] gh/PaulZhang12/18/base -> origin/gh/PaulZhang12/18/base 2025-08-14T21:43:25.3760819Z * [new branch] gh/PaulZhang12/18/head -> origin/gh/PaulZhang12/18/head 2025-08-14T21:43:25.3761385Z * [new branch] gh/PaulZhang12/18/orig -> origin/gh/PaulZhang12/18/orig 2025-08-14T21:43:25.3761942Z * [new branch] gh/PaulZhang12/19/base -> origin/gh/PaulZhang12/19/base 2025-08-14T21:43:25.3762505Z * [new branch] gh/PaulZhang12/19/head -> origin/gh/PaulZhang12/19/head 2025-08-14T21:43:25.3763071Z * [new branch] gh/PaulZhang12/19/orig -> origin/gh/PaulZhang12/19/orig 2025-08-14T21:43:25.3763619Z * [new branch] gh/PaulZhang12/20/base -> origin/gh/PaulZhang12/20/base 2025-08-14T21:43:25.3764298Z * [new branch] gh/PaulZhang12/20/head -> origin/gh/PaulZhang12/20/head 2025-08-14T21:43:25.3764852Z * [new branch] gh/PaulZhang12/20/orig -> origin/gh/PaulZhang12/20/orig 2025-08-14T21:43:25.3765430Z * [new branch] gh/PaulZhang12/21/base -> origin/gh/PaulZhang12/21/base 2025-08-14T21:43:25.3765997Z * [new branch] gh/PaulZhang12/21/head -> origin/gh/PaulZhang12/21/head 2025-08-14T21:43:25.3766553Z * [new branch] gh/PaulZhang12/21/orig -> origin/gh/PaulZhang12/21/orig 2025-08-14T21:43:25.3767127Z * [new branch] gh/PaulZhang12/22/base -> origin/gh/PaulZhang12/22/base 2025-08-14T21:43:25.3767682Z * [new branch] gh/PaulZhang12/22/head -> origin/gh/PaulZhang12/22/head 2025-08-14T21:43:25.3768248Z * [new branch] gh/PaulZhang12/22/orig -> origin/gh/PaulZhang12/22/orig 2025-08-14T21:43:25.3768818Z * [new branch] gh/SamGinzburg/11/base -> origin/gh/SamGinzburg/11/base 2025-08-14T21:43:25.3769374Z * [new branch] gh/SamGinzburg/11/head -> origin/gh/SamGinzburg/11/head 2025-08-14T21:43:25.3769978Z * [new branch] gh/Sidharth123-cpu/24/base -> origin/gh/Sidharth123-cpu/24/base 2025-08-14T21:43:25.3770575Z * [new branch] gh/Sidharth123-cpu/25/base -> origin/gh/Sidharth123-cpu/25/base 2025-08-14T21:43:25.3771184Z * [new branch] gh/Sidharth123-cpu/26/base -> origin/gh/Sidharth123-cpu/26/base 2025-08-14T21:43:25.3771800Z * [new branch] gh/Sidharth123-cpu/27/base -> origin/gh/Sidharth123-cpu/27/base 2025-08-14T21:43:25.3772388Z * [new branch] gh/Sidharth123-cpu/42/base -> origin/gh/Sidharth123-cpu/42/base 2025-08-14T21:43:25.3772986Z * [new branch] gh/Sidharth123-cpu/42/head -> origin/gh/Sidharth123-cpu/42/head 2025-08-14T21:43:25.3773575Z * [new branch] gh/Sidharth123-cpu/42/orig -> origin/gh/Sidharth123-cpu/42/orig 2025-08-14T21:43:25.3774184Z * [new branch] gh/Sidharth123-cpu/43/base -> origin/gh/Sidharth123-cpu/43/base 2025-08-14T21:43:25.3774784Z * [new branch] gh/Sidharth123-cpu/43/head -> origin/gh/Sidharth123-cpu/43/head 2025-08-14T21:43:25.3775369Z * [new branch] gh/Sidharth123-cpu/43/orig -> origin/gh/Sidharth123-cpu/43/orig 2025-08-14T21:43:25.3775965Z * [new branch] gh/Sidharth123-cpu/44/base -> origin/gh/Sidharth123-cpu/44/base 2025-08-14T21:43:25.3776640Z * [new branch] gh/Sidharth123-cpu/44/head -> origin/gh/Sidharth123-cpu/44/head 2025-08-14T21:43:25.3777243Z * [new branch] gh/Sidharth123-cpu/44/orig -> origin/gh/Sidharth123-cpu/44/orig 2025-08-14T21:43:25.3777850Z * [new branch] gh/Sidharth123-cpu/45/base -> origin/gh/Sidharth123-cpu/45/base 2025-08-14T21:43:25.3778439Z * [new branch] gh/Sidharth123-cpu/45/head -> origin/gh/Sidharth123-cpu/45/head 2025-08-14T21:43:25.3779040Z * [new branch] gh/Sidharth123-cpu/45/orig -> origin/gh/Sidharth123-cpu/45/orig 2025-08-14T21:43:25.4234183Z * [new branch] gh/StrongerXi/1/base -> origin/gh/StrongerXi/1/base 2025-08-14T21:43:25.4234830Z * [new branch] gh/StrongerXi/1/head -> origin/gh/StrongerXi/1/head 2025-08-14T21:43:25.4235413Z * [new branch] gh/StrongerXi/103/base -> origin/gh/StrongerXi/103/base 2025-08-14T21:43:25.4236003Z * [new branch] gh/StrongerXi/103/head -> origin/gh/StrongerXi/103/head 2025-08-14T21:43:25.4236589Z * [new branch] gh/StrongerXi/103/orig -> origin/gh/StrongerXi/103/orig 2025-08-14T21:43:25.4237156Z * [new branch] gh/StrongerXi/133/base -> origin/gh/StrongerXi/133/base 2025-08-14T21:43:25.4237709Z * [new branch] gh/StrongerXi/133/head -> origin/gh/StrongerXi/133/head 2025-08-14T21:43:25.4238278Z * [new branch] gh/StrongerXi/133/orig -> origin/gh/StrongerXi/133/orig 2025-08-14T21:43:25.4239035Z * [new branch] gh/StrongerXi/134/base -> origin/gh/StrongerXi/134/base 2025-08-14T21:43:25.4239585Z * [new branch] gh/StrongerXi/134/head -> origin/gh/StrongerXi/134/head 2025-08-14T21:43:25.4240145Z * [new branch] gh/StrongerXi/134/orig -> origin/gh/StrongerXi/134/orig 2025-08-14T21:43:25.4240697Z * [new branch] gh/StrongerXi/135/base -> origin/gh/StrongerXi/135/base 2025-08-14T21:43:25.4241268Z * [new branch] gh/StrongerXi/135/head -> origin/gh/StrongerXi/135/head 2025-08-14T21:43:25.4241818Z * [new branch] gh/StrongerXi/135/orig -> origin/gh/StrongerXi/135/orig 2025-08-14T21:43:25.4242386Z * [new branch] gh/StrongerXi/136/base -> origin/gh/StrongerXi/136/base 2025-08-14T21:43:25.4242951Z * [new branch] gh/StrongerXi/136/head -> origin/gh/StrongerXi/136/head 2025-08-14T21:43:25.4243503Z * [new branch] gh/StrongerXi/136/orig -> origin/gh/StrongerXi/136/orig 2025-08-14T21:43:25.4244081Z * [new branch] gh/StrongerXi/137/base -> origin/gh/StrongerXi/137/base 2025-08-14T21:43:25.4244643Z * [new branch] gh/StrongerXi/137/head -> origin/gh/StrongerXi/137/head 2025-08-14T21:43:25.4245194Z * [new branch] gh/StrongerXi/137/orig -> origin/gh/StrongerXi/137/orig 2025-08-14T21:43:25.4245759Z * [new branch] gh/StrongerXi/138/base -> origin/gh/StrongerXi/138/base 2025-08-14T21:43:25.4246323Z * [new branch] gh/StrongerXi/138/head -> origin/gh/StrongerXi/138/head 2025-08-14T21:43:25.4246893Z * [new branch] gh/StrongerXi/138/orig -> origin/gh/StrongerXi/138/orig 2025-08-14T21:43:25.4247462Z * [new branch] gh/StrongerXi/71/base -> origin/gh/StrongerXi/71/base 2025-08-14T21:43:25.4248017Z * [new branch] gh/StrongerXi/71/head -> origin/gh/StrongerXi/71/head 2025-08-14T21:43:25.4248572Z * [new branch] gh/StrongerXi/72/base -> origin/gh/StrongerXi/72/base 2025-08-14T21:43:25.4249110Z * [new branch] gh/StrongerXi/72/head -> origin/gh/StrongerXi/72/head 2025-08-14T21:43:25.4249659Z * [new branch] gh/XilunWu/131/base -> origin/gh/XilunWu/131/base 2025-08-14T21:43:25.4250197Z * [new branch] gh/XilunWu/131/head -> origin/gh/XilunWu/131/head 2025-08-14T21:43:25.4250823Z * [new branch] gh/XilunWu/131/orig -> origin/gh/XilunWu/131/orig 2025-08-14T21:43:25.4251353Z * [new branch] gh/XilunWu/133/base -> origin/gh/XilunWu/133/base 2025-08-14T21:43:25.4251875Z * [new branch] gh/XilunWu/133/head -> origin/gh/XilunWu/133/head 2025-08-14T21:43:25.4252411Z * [new branch] gh/XilunWu/133/orig -> origin/gh/XilunWu/133/orig 2025-08-14T21:43:25.4252934Z * [new branch] gh/XilunWu/136/base -> origin/gh/XilunWu/136/base 2025-08-14T21:43:25.4253459Z * [new branch] gh/XilunWu/136/head -> origin/gh/XilunWu/136/head 2025-08-14T21:43:25.4253992Z * [new branch] gh/XilunWu/136/orig -> origin/gh/XilunWu/136/orig 2025-08-14T21:43:25.4254507Z * [new branch] gh/XilunWu/139/base -> origin/gh/XilunWu/139/base 2025-08-14T21:43:25.4255037Z * [new branch] gh/XilunWu/139/head -> origin/gh/XilunWu/139/head 2025-08-14T21:43:25.4255569Z * [new branch] gh/XilunWu/139/orig -> origin/gh/XilunWu/139/orig 2025-08-14T21:43:25.4256218Z * [new branch] gh/XilunWu/143/base -> origin/gh/XilunWu/143/base 2025-08-14T21:43:25.4256843Z * [new branch] gh/XilunWu/143/head -> origin/gh/XilunWu/143/head 2025-08-14T21:43:25.4257445Z * [new branch] gh/XilunWu/143/orig -> origin/gh/XilunWu/143/orig 2025-08-14T21:43:25.4258071Z * [new branch] gh/XilunWu/144/base -> origin/gh/XilunWu/144/base 2025-08-14T21:43:25.4258583Z * [new branch] gh/XilunWu/144/head -> origin/gh/XilunWu/144/head 2025-08-14T21:43:25.4259105Z * [new branch] gh/XilunWu/144/orig -> origin/gh/XilunWu/144/orig 2025-08-14T21:43:25.4259630Z * [new branch] gh/XilunWu/145/base -> origin/gh/XilunWu/145/base 2025-08-14T21:43:25.4260219Z * [new branch] gh/XilunWu/145/head -> origin/gh/XilunWu/145/head 2025-08-14T21:43:25.4715740Z * [new branch] gh/XilunWu/145/orig -> origin/gh/XilunWu/145/orig 2025-08-14T21:43:25.4716317Z * [new branch] gh/XilunWu/146/base -> origin/gh/XilunWu/146/base 2025-08-14T21:43:25.4716865Z * [new branch] gh/XilunWu/146/head -> origin/gh/XilunWu/146/head 2025-08-14T21:43:25.4717388Z * [new branch] gh/XilunWu/146/orig -> origin/gh/XilunWu/146/orig 2025-08-14T21:43:25.4717918Z * [new branch] gh/XilunWu/147/base -> origin/gh/XilunWu/147/base 2025-08-14T21:43:25.4718538Z * [new branch] gh/XilunWu/147/head -> origin/gh/XilunWu/147/head 2025-08-14T21:43:25.4719055Z * [new branch] gh/XilunWu/147/orig -> origin/gh/XilunWu/147/orig 2025-08-14T21:43:25.4719660Z * [new branch] gh/XilunWu/148/base -> origin/gh/XilunWu/148/base 2025-08-14T21:43:25.4720292Z * [new branch] gh/XilunWu/148/head -> origin/gh/XilunWu/148/head 2025-08-14T21:43:25.4720821Z * [new branch] gh/XilunWu/148/orig -> origin/gh/XilunWu/148/orig 2025-08-14T21:43:25.4721355Z * [new branch] gh/XilunWu/149/base -> origin/gh/XilunWu/149/base 2025-08-14T21:43:25.4721890Z * [new branch] gh/XilunWu/149/head -> origin/gh/XilunWu/149/head 2025-08-14T21:43:25.4722412Z * [new branch] gh/XilunWu/149/orig -> origin/gh/XilunWu/149/orig 2025-08-14T21:43:25.4722953Z * [new branch] gh/XilunWu/150/base -> origin/gh/XilunWu/150/base 2025-08-14T21:43:25.4723471Z * [new branch] gh/XilunWu/150/head -> origin/gh/XilunWu/150/head 2025-08-14T21:43:25.4724010Z * [new branch] gh/XilunWu/150/orig -> origin/gh/XilunWu/150/orig 2025-08-14T21:43:25.4742363Z * [new branch] gh/XilunWu/151/base -> origin/gh/XilunWu/151/base 2025-08-14T21:43:25.4743261Z * [new branch] gh/XilunWu/151/head -> origin/gh/XilunWu/151/head 2025-08-14T21:43:25.4743794Z * [new branch] gh/XilunWu/151/orig -> origin/gh/XilunWu/151/orig 2025-08-14T21:43:25.4744319Z * [new branch] gh/XilunWu/152/base -> origin/gh/XilunWu/152/base 2025-08-14T21:43:25.4744834Z * [new branch] gh/XilunWu/152/head -> origin/gh/XilunWu/152/head 2025-08-14T21:43:25.4745358Z * [new branch] gh/XilunWu/152/orig -> origin/gh/XilunWu/152/orig 2025-08-14T21:43:25.4745894Z * [new branch] gh/XilunWu/153/base -> origin/gh/XilunWu/153/base 2025-08-14T21:43:25.4746417Z * [new branch] gh/XilunWu/153/head -> origin/gh/XilunWu/153/head 2025-08-14T21:43:25.4746938Z * [new branch] gh/XilunWu/153/orig -> origin/gh/XilunWu/153/orig 2025-08-14T21:43:25.4747451Z * [new branch] gh/XilunWu/154/base -> origin/gh/XilunWu/154/base 2025-08-14T21:43:25.4747973Z * [new branch] gh/XilunWu/154/head -> origin/gh/XilunWu/154/head 2025-08-14T21:43:25.4748500Z * [new branch] gh/XilunWu/154/orig -> origin/gh/XilunWu/154/orig 2025-08-14T21:43:25.4749014Z * [new branch] gh/XilunWu/156/base -> origin/gh/XilunWu/156/base 2025-08-14T21:43:25.4749546Z * [new branch] gh/XilunWu/156/head -> origin/gh/XilunWu/156/head 2025-08-14T21:43:25.4750175Z * [new branch] gh/XilunWu/156/orig -> origin/gh/XilunWu/156/orig 2025-08-14T21:43:25.4750697Z * [new branch] gh/XilunWu/157/base -> origin/gh/XilunWu/157/base 2025-08-14T21:43:25.4751223Z * [new branch] gh/XilunWu/157/head -> origin/gh/XilunWu/157/head 2025-08-14T21:43:25.4751736Z * [new branch] gh/XilunWu/157/orig -> origin/gh/XilunWu/157/orig 2025-08-14T21:43:25.4752257Z * [new branch] gh/XilunWu/158/base -> origin/gh/XilunWu/158/base 2025-08-14T21:43:25.4752782Z * [new branch] gh/XilunWu/158/head -> origin/gh/XilunWu/158/head 2025-08-14T21:43:25.4753314Z * [new branch] gh/XilunWu/158/orig -> origin/gh/XilunWu/158/orig 2025-08-14T21:43:25.4753837Z * [new branch] gh/XilunWu/159/base -> origin/gh/XilunWu/159/base 2025-08-14T21:43:25.4754346Z * [new branch] gh/XilunWu/159/head -> origin/gh/XilunWu/159/head 2025-08-14T21:43:25.4754864Z * [new branch] gh/XilunWu/159/orig -> origin/gh/XilunWu/159/orig 2025-08-14T21:43:25.4755369Z * [new branch] gh/XilunWu/160/base -> origin/gh/XilunWu/160/base 2025-08-14T21:43:25.4755883Z * [new branch] gh/XilunWu/160/head -> origin/gh/XilunWu/160/head 2025-08-14T21:43:25.4756386Z * [new branch] gh/XilunWu/160/orig -> origin/gh/XilunWu/160/orig 2025-08-14T21:43:25.4756907Z * [new branch] gh/XilunWu/161/base -> origin/gh/XilunWu/161/base 2025-08-14T21:43:25.4757432Z * [new branch] gh/XilunWu/161/head -> origin/gh/XilunWu/161/head 2025-08-14T21:43:25.4757939Z * [new branch] gh/XilunWu/161/orig -> origin/gh/XilunWu/161/orig 2025-08-14T21:43:25.4758460Z * [new branch] gh/XilunWu/162/base -> origin/gh/XilunWu/162/base 2025-08-14T21:43:25.5189139Z * [new branch] gh/XilunWu/162/head -> origin/gh/XilunWu/162/head 2025-08-14T21:43:25.5189753Z * [new branch] gh/XilunWu/162/orig -> origin/gh/XilunWu/162/orig 2025-08-14T21:43:25.5190290Z * [new branch] gh/XilunWu/163/base -> origin/gh/XilunWu/163/base 2025-08-14T21:43:25.5190809Z * [new branch] gh/XilunWu/163/head -> origin/gh/XilunWu/163/head 2025-08-14T21:43:25.5191345Z * [new branch] gh/XilunWu/163/orig -> origin/gh/XilunWu/163/orig 2025-08-14T21:43:25.5192162Z * [new branch] gh/XuehaiPan/14/base -> origin/gh/XuehaiPan/14/base 2025-08-14T21:43:25.5192876Z * [new branch] gh/XuehaiPan/14/head -> origin/gh/XuehaiPan/14/head 2025-08-14T21:43:25.5193414Z * [new branch] gh/XuehaiPan/14/orig -> origin/gh/XuehaiPan/14/orig 2025-08-14T21:43:25.5193954Z * [new branch] gh/XuehaiPan/179/base -> origin/gh/XuehaiPan/179/base 2025-08-14T21:43:25.5194505Z * [new branch] gh/XuehaiPan/179/head -> origin/gh/XuehaiPan/179/head 2025-08-14T21:43:25.5195050Z * [new branch] gh/XuehaiPan/179/orig -> origin/gh/XuehaiPan/179/orig 2025-08-14T21:43:25.5195584Z * [new branch] gh/XuehaiPan/189/base -> origin/gh/XuehaiPan/189/base 2025-08-14T21:43:25.5196129Z * [new branch] gh/XuehaiPan/189/head -> origin/gh/XuehaiPan/189/head 2025-08-14T21:43:25.5196661Z * [new branch] gh/XuehaiPan/189/orig -> origin/gh/XuehaiPan/189/orig 2025-08-14T21:43:25.5197202Z * [new branch] gh/XuehaiPan/227/base -> origin/gh/XuehaiPan/227/base 2025-08-14T21:43:25.5197735Z * [new branch] gh/XuehaiPan/227/head -> origin/gh/XuehaiPan/227/head 2025-08-14T21:43:25.5198269Z * [new branch] gh/XuehaiPan/227/orig -> origin/gh/XuehaiPan/227/orig 2025-08-14T21:43:25.5198807Z * [new branch] gh/XuehaiPan/231/base -> origin/gh/XuehaiPan/231/base 2025-08-14T21:43:25.5199485Z * [new branch] gh/XuehaiPan/231/head -> origin/gh/XuehaiPan/231/head 2025-08-14T21:43:25.5200036Z * [new branch] gh/XuehaiPan/231/orig -> origin/gh/XuehaiPan/231/orig 2025-08-14T21:43:25.5200573Z * [new branch] gh/XuehaiPan/232/base -> origin/gh/XuehaiPan/232/base 2025-08-14T21:43:25.5201114Z * [new branch] gh/XuehaiPan/232/head -> origin/gh/XuehaiPan/232/head 2025-08-14T21:43:25.5201655Z * [new branch] gh/XuehaiPan/232/orig -> origin/gh/XuehaiPan/232/orig 2025-08-14T21:43:25.5202191Z * [new branch] gh/XuehaiPan/249/base -> origin/gh/XuehaiPan/249/base 2025-08-14T21:43:25.5202731Z * [new branch] gh/XuehaiPan/249/head -> origin/gh/XuehaiPan/249/head 2025-08-14T21:43:25.5203260Z * [new branch] gh/XuehaiPan/249/orig -> origin/gh/XuehaiPan/249/orig 2025-08-14T21:43:25.5203804Z * [new branch] gh/XuehaiPan/253/base -> origin/gh/XuehaiPan/253/base 2025-08-14T21:43:25.5204347Z * [new branch] gh/XuehaiPan/253/head -> origin/gh/XuehaiPan/253/head 2025-08-14T21:43:25.5204876Z * [new branch] gh/XuehaiPan/253/orig -> origin/gh/XuehaiPan/253/orig 2025-08-14T21:43:25.5205425Z * [new branch] gh/XuehaiPan/254/base -> origin/gh/XuehaiPan/254/base 2025-08-14T21:43:25.5205959Z * [new branch] gh/XuehaiPan/254/head -> origin/gh/XuehaiPan/254/head 2025-08-14T21:43:25.5206513Z * [new branch] gh/XuehaiPan/254/orig -> origin/gh/XuehaiPan/254/orig 2025-08-14T21:43:25.5207058Z * [new branch] gh/XuehaiPan/255/base -> origin/gh/XuehaiPan/255/base 2025-08-14T21:43:25.5207597Z * [new branch] gh/XuehaiPan/255/head -> origin/gh/XuehaiPan/255/head 2025-08-14T21:43:25.5208237Z * [new branch] gh/XuehaiPan/255/orig -> origin/gh/XuehaiPan/255/orig 2025-08-14T21:43:25.5208783Z * [new branch] gh/XuehaiPan/257/base -> origin/gh/XuehaiPan/257/base 2025-08-14T21:43:25.5209428Z * [new branch] gh/XuehaiPan/257/head -> origin/gh/XuehaiPan/257/head 2025-08-14T21:43:25.5210056Z * [new branch] gh/XuehaiPan/257/orig -> origin/gh/XuehaiPan/257/orig 2025-08-14T21:43:25.5210602Z * [new branch] gh/XuehaiPan/271/base -> origin/gh/XuehaiPan/271/base 2025-08-14T21:43:25.5211144Z * [new branch] gh/XuehaiPan/271/head -> origin/gh/XuehaiPan/271/head 2025-08-14T21:43:25.5211795Z * [new branch] gh/XuehaiPan/271/orig -> origin/gh/XuehaiPan/271/orig 2025-08-14T21:43:25.5212346Z * [new branch] gh/XuehaiPan/283/base -> origin/gh/XuehaiPan/283/base 2025-08-14T21:43:25.5212883Z * [new branch] gh/XuehaiPan/283/head -> origin/gh/XuehaiPan/283/head 2025-08-14T21:43:25.5213430Z * [new branch] gh/XuehaiPan/283/orig -> origin/gh/XuehaiPan/283/orig 2025-08-14T21:43:25.5213979Z * [new branch] gh/XuehaiPan/290/base -> origin/gh/XuehaiPan/290/base 2025-08-14T21:43:25.5214518Z * [new branch] gh/XuehaiPan/290/head -> origin/gh/XuehaiPan/290/head 2025-08-14T21:43:25.5650165Z * [new branch] gh/XuehaiPan/290/orig -> origin/gh/XuehaiPan/290/orig 2025-08-14T21:43:25.5650764Z * [new branch] gh/XuehaiPan/328/base -> origin/gh/XuehaiPan/328/base 2025-08-14T21:43:25.5651347Z * [new branch] gh/XuehaiPan/328/head -> origin/gh/XuehaiPan/328/head 2025-08-14T21:43:25.5651903Z * [new branch] gh/XuehaiPan/328/orig -> origin/gh/XuehaiPan/328/orig 2025-08-14T21:43:25.5652441Z * [new branch] gh/XuehaiPan/339/base -> origin/gh/XuehaiPan/339/base 2025-08-14T21:43:25.5652980Z * [new branch] gh/XuehaiPan/339/head -> origin/gh/XuehaiPan/339/head 2025-08-14T21:43:25.5653512Z * [new branch] gh/XuehaiPan/339/orig -> origin/gh/XuehaiPan/339/orig 2025-08-14T21:43:25.5654245Z * [new branch] gh/XuehaiPan/343/base -> origin/gh/XuehaiPan/343/base 2025-08-14T21:43:25.5654783Z * [new branch] gh/XuehaiPan/343/head -> origin/gh/XuehaiPan/343/head 2025-08-14T21:43:25.5655319Z * [new branch] gh/XuehaiPan/343/orig -> origin/gh/XuehaiPan/343/orig 2025-08-14T21:43:25.5655859Z * [new branch] gh/XuehaiPan/344/base -> origin/gh/XuehaiPan/344/base 2025-08-14T21:43:25.5656398Z * [new branch] gh/XuehaiPan/344/head -> origin/gh/XuehaiPan/344/head 2025-08-14T21:43:25.5656944Z * [new branch] gh/XuehaiPan/344/orig -> origin/gh/XuehaiPan/344/orig 2025-08-14T21:43:25.5657506Z * [new branch] gh/XuehaiPan/345/base -> origin/gh/XuehaiPan/345/base 2025-08-14T21:43:25.5658037Z * [new branch] gh/XuehaiPan/345/head -> origin/gh/XuehaiPan/345/head 2025-08-14T21:43:25.5658580Z * [new branch] gh/XuehaiPan/345/orig -> origin/gh/XuehaiPan/345/orig 2025-08-14T21:43:25.5659113Z * [new branch] gh/XuehaiPan/346/base -> origin/gh/XuehaiPan/346/base 2025-08-14T21:43:25.5659653Z * [new branch] gh/XuehaiPan/346/head -> origin/gh/XuehaiPan/346/head 2025-08-14T21:43:25.5660279Z * [new branch] gh/XuehaiPan/346/orig -> origin/gh/XuehaiPan/346/orig 2025-08-14T21:43:25.5660816Z * [new branch] gh/XuehaiPan/347/base -> origin/gh/XuehaiPan/347/base 2025-08-14T21:43:25.5661369Z * [new branch] gh/XuehaiPan/347/head -> origin/gh/XuehaiPan/347/head 2025-08-14T21:43:25.5661901Z * [new branch] gh/XuehaiPan/347/orig -> origin/gh/XuehaiPan/347/orig 2025-08-14T21:43:25.5662443Z * [new branch] gh/XuehaiPan/348/base -> origin/gh/XuehaiPan/348/base 2025-08-14T21:43:25.5662989Z * [new branch] gh/XuehaiPan/348/head -> origin/gh/XuehaiPan/348/head 2025-08-14T21:43:25.5663519Z * [new branch] gh/XuehaiPan/348/orig -> origin/gh/XuehaiPan/348/orig 2025-08-14T21:43:25.5664070Z * [new branch] gh/XuehaiPan/350/base -> origin/gh/XuehaiPan/350/base 2025-08-14T21:43:25.5664608Z * [new branch] gh/XuehaiPan/350/head -> origin/gh/XuehaiPan/350/head 2025-08-14T21:43:25.5665152Z * [new branch] gh/XuehaiPan/350/orig -> origin/gh/XuehaiPan/350/orig 2025-08-14T21:43:25.5665811Z * [new branch] gh/XuehaiPan/352/base -> origin/gh/XuehaiPan/352/base 2025-08-14T21:43:25.5666350Z * [new branch] gh/XuehaiPan/352/head -> origin/gh/XuehaiPan/352/head 2025-08-14T21:43:25.5666893Z * [new branch] gh/XuehaiPan/352/orig -> origin/gh/XuehaiPan/352/orig 2025-08-14T21:43:25.5667427Z * [new branch] gh/XuehaiPan/356/base -> origin/gh/XuehaiPan/356/base 2025-08-14T21:43:25.5667981Z * [new branch] gh/XuehaiPan/356/head -> origin/gh/XuehaiPan/356/head 2025-08-14T21:43:25.5668528Z * [new branch] gh/XuehaiPan/356/orig -> origin/gh/XuehaiPan/356/orig 2025-08-14T21:43:25.5669069Z * [new branch] gh/XuehaiPan/357/base -> origin/gh/XuehaiPan/357/base 2025-08-14T21:43:25.5669619Z * [new branch] gh/XuehaiPan/357/head -> origin/gh/XuehaiPan/357/head 2025-08-14T21:43:25.5670153Z * [new branch] gh/XuehaiPan/357/orig -> origin/gh/XuehaiPan/357/orig 2025-08-14T21:43:25.5670708Z * [new branch] gh/XuehaiPan/358/base -> origin/gh/XuehaiPan/358/base 2025-08-14T21:43:25.5671241Z * [new branch] gh/XuehaiPan/358/head -> origin/gh/XuehaiPan/358/head 2025-08-14T21:43:25.5671791Z * [new branch] gh/XuehaiPan/358/orig -> origin/gh/XuehaiPan/358/orig 2025-08-14T21:43:25.5672342Z * [new branch] gh/XuehaiPan/359/base -> origin/gh/XuehaiPan/359/base 2025-08-14T21:43:25.5672980Z * [new branch] gh/XuehaiPan/359/head -> origin/gh/XuehaiPan/359/head 2025-08-14T21:43:25.5673529Z * [new branch] gh/XuehaiPan/359/orig -> origin/gh/XuehaiPan/359/orig 2025-08-14T21:43:25.5674072Z * [new branch] gh/XuehaiPan/360/base -> origin/gh/XuehaiPan/360/base 2025-08-14T21:43:25.5674618Z * [new branch] gh/XuehaiPan/360/head -> origin/gh/XuehaiPan/360/head 2025-08-14T21:43:25.5675162Z * [new branch] gh/XuehaiPan/360/orig -> origin/gh/XuehaiPan/360/orig 2025-08-14T21:43:25.6101007Z * [new branch] gh/XuehaiPan/365/base -> origin/gh/XuehaiPan/365/base 2025-08-14T21:43:25.6101604Z * [new branch] gh/XuehaiPan/365/head -> origin/gh/XuehaiPan/365/head 2025-08-14T21:43:25.6102157Z * [new branch] gh/XuehaiPan/365/orig -> origin/gh/XuehaiPan/365/orig 2025-08-14T21:43:25.6102704Z * [new branch] gh/XuehaiPan/366/base -> origin/gh/XuehaiPan/366/base 2025-08-14T21:43:25.6103263Z * [new branch] gh/XuehaiPan/366/head -> origin/gh/XuehaiPan/366/head 2025-08-14T21:43:25.6103797Z * [new branch] gh/XuehaiPan/368/base -> origin/gh/XuehaiPan/368/base 2025-08-14T21:43:25.6104439Z * [new branch] gh/XuehaiPan/368/head -> origin/gh/XuehaiPan/368/head 2025-08-14T21:43:25.6105068Z * [new branch] gh/XuehaiPan/368/orig -> origin/gh/XuehaiPan/368/orig 2025-08-14T21:43:25.6105614Z * [new branch] gh/XuehaiPan/369/base -> origin/gh/XuehaiPan/369/base 2025-08-14T21:43:25.6106160Z * [new branch] gh/XuehaiPan/369/head -> origin/gh/XuehaiPan/369/head 2025-08-14T21:43:25.6106688Z * [new branch] gh/XuehaiPan/369/orig -> origin/gh/XuehaiPan/369/orig 2025-08-14T21:43:25.6107227Z * [new branch] gh/XuehaiPan/370/base -> origin/gh/XuehaiPan/370/base 2025-08-14T21:43:25.6107768Z * [new branch] gh/XuehaiPan/370/head -> origin/gh/XuehaiPan/370/head 2025-08-14T21:43:25.6108317Z * [new branch] gh/XuehaiPan/370/orig -> origin/gh/XuehaiPan/370/orig 2025-08-14T21:43:25.6108857Z * [new branch] gh/XuehaiPan/371/base -> origin/gh/XuehaiPan/371/base 2025-08-14T21:43:25.6109386Z * [new branch] gh/XuehaiPan/371/head -> origin/gh/XuehaiPan/371/head 2025-08-14T21:43:25.6109924Z * [new branch] gh/XuehaiPan/371/orig -> origin/gh/XuehaiPan/371/orig 2025-08-14T21:43:25.6110692Z * [new branch] gh/XuehaiPan/372/base -> origin/gh/XuehaiPan/372/base 2025-08-14T21:43:25.6111326Z * [new branch] gh/XuehaiPan/372/head -> origin/gh/XuehaiPan/372/head 2025-08-14T21:43:25.6111867Z * [new branch] gh/XuehaiPan/372/orig -> origin/gh/XuehaiPan/372/orig 2025-08-14T21:43:25.6112400Z * [new branch] gh/XuehaiPan/373/base -> origin/gh/XuehaiPan/373/base 2025-08-14T21:43:25.6112956Z * [new branch] gh/XuehaiPan/373/head -> origin/gh/XuehaiPan/373/head 2025-08-14T21:43:25.6113492Z * [new branch] gh/XuehaiPan/373/orig -> origin/gh/XuehaiPan/373/orig 2025-08-14T21:43:25.6114029Z * [new branch] gh/XuehaiPan/374/base -> origin/gh/XuehaiPan/374/base 2025-08-14T21:43:25.6114572Z * [new branch] gh/XuehaiPan/374/head -> origin/gh/XuehaiPan/374/head 2025-08-14T21:43:25.6115113Z * [new branch] gh/XuehaiPan/374/orig -> origin/gh/XuehaiPan/374/orig 2025-08-14T21:43:25.6115657Z * [new branch] gh/XuehaiPan/375/base -> origin/gh/XuehaiPan/375/base 2025-08-14T21:43:25.6116187Z * [new branch] gh/XuehaiPan/375/head -> origin/gh/XuehaiPan/375/head 2025-08-14T21:43:25.6116825Z * [new branch] gh/XuehaiPan/375/orig -> origin/gh/XuehaiPan/375/orig 2025-08-14T21:43:25.6117577Z * [new branch] gh/XuehaiPan/376/base -> origin/gh/XuehaiPan/376/base 2025-08-14T21:43:25.6118117Z * [new branch] gh/XuehaiPan/376/head -> origin/gh/XuehaiPan/376/head 2025-08-14T21:43:25.6118672Z * [new branch] gh/XuehaiPan/376/orig -> origin/gh/XuehaiPan/376/orig 2025-08-14T21:43:25.6119206Z * [new branch] gh/XuehaiPan/377/base -> origin/gh/XuehaiPan/377/base 2025-08-14T21:43:25.6119752Z * [new branch] gh/XuehaiPan/377/head -> origin/gh/XuehaiPan/377/head 2025-08-14T21:43:25.6120299Z * [new branch] gh/XuehaiPan/377/orig -> origin/gh/XuehaiPan/377/orig 2025-08-14T21:43:25.6120848Z * [new branch] gh/XuehaiPan/378/base -> origin/gh/XuehaiPan/378/base 2025-08-14T21:43:25.6121387Z * [new branch] gh/XuehaiPan/378/head -> origin/gh/XuehaiPan/378/head 2025-08-14T21:43:25.6121921Z * [new branch] gh/XuehaiPan/378/orig -> origin/gh/XuehaiPan/378/orig 2025-08-14T21:43:25.6122473Z * [new branch] gh/XuehaiPan/379/base -> origin/gh/XuehaiPan/379/base 2025-08-14T21:43:25.6123065Z * [new branch] gh/XuehaiPan/379/head -> origin/gh/XuehaiPan/379/head 2025-08-14T21:43:25.6123702Z * [new branch] gh/XuehaiPan/379/orig -> origin/gh/XuehaiPan/379/orig 2025-08-14T21:43:25.6124272Z * [new branch] gh/ZhiweiYan-96/39/base -> origin/gh/ZhiweiYan-96/39/base 2025-08-14T21:43:25.6124838Z * [new branch] gh/ZhiweiYan-96/39/head -> origin/gh/ZhiweiYan-96/39/head 2025-08-14T21:43:25.6125402Z * [new branch] gh/ZhiweiYan-96/39/orig -> origin/gh/ZhiweiYan-96/39/orig 2025-08-14T21:43:25.6125947Z * [new branch] gh/ZhiweiYan-96/44/base -> origin/gh/ZhiweiYan-96/44/base 2025-08-14T21:43:25.6126505Z * [new branch] gh/ZhiweiYan-96/44/head -> origin/gh/ZhiweiYan-96/44/head 2025-08-14T21:43:25.6582015Z * [new branch] gh/ZhiweiYan-96/45/base -> origin/gh/ZhiweiYan-96/45/base 2025-08-14T21:43:25.6582619Z * [new branch] gh/ZhiweiYan-96/45/head -> origin/gh/ZhiweiYan-96/45/head 2025-08-14T21:43:25.6583199Z * [new branch] gh/ZhiweiYan-96/49/base -> origin/gh/ZhiweiYan-96/49/base 2025-08-14T21:43:25.6583871Z * [new branch] gh/ZhiweiYan-96/49/head -> origin/gh/ZhiweiYan-96/49/head 2025-08-14T21:43:25.6584510Z * [new branch] gh/ZhiweiYan-96/62/base -> origin/gh/ZhiweiYan-96/62/base 2025-08-14T21:43:25.6585228Z * [new branch] gh/ZhiweiYan-96/62/head -> origin/gh/ZhiweiYan-96/62/head 2025-08-14T21:43:25.6585777Z * [new branch] gh/ZhiweiYan-96/64/base -> origin/gh/ZhiweiYan-96/64/base 2025-08-14T21:43:25.6586339Z * [new branch] gh/ZhiweiYan-96/64/head -> origin/gh/ZhiweiYan-96/64/head 2025-08-14T21:43:25.6586900Z * [new branch] gh/ZhiweiYan-96/64/orig -> origin/gh/ZhiweiYan-96/64/orig 2025-08-14T21:43:25.6587443Z * [new branch] gh/ZhiweiYan-96/65/base -> origin/gh/ZhiweiYan-96/65/base 2025-08-14T21:43:25.6587990Z * [new branch] gh/ZhiweiYan-96/65/head -> origin/gh/ZhiweiYan-96/65/head 2025-08-14T21:43:25.6588529Z * [new branch] gh/ZhiweiYan-96/65/orig -> origin/gh/ZhiweiYan-96/65/orig 2025-08-14T21:43:25.6589083Z * [new branch] gh/ZhiweiYan-96/66/base -> origin/gh/ZhiweiYan-96/66/base 2025-08-14T21:43:25.6589629Z * [new branch] gh/ZhiweiYan-96/66/head -> origin/gh/ZhiweiYan-96/66/head 2025-08-14T21:43:25.6590279Z * [new branch] gh/ZhiweiYan-96/67/base -> origin/gh/ZhiweiYan-96/67/base 2025-08-14T21:43:25.6590925Z * [new branch] gh/ZhiweiYan-96/67/head -> origin/gh/ZhiweiYan-96/67/head 2025-08-14T21:43:25.6591476Z * [new branch] gh/ZhiweiYan-96/68/base -> origin/gh/ZhiweiYan-96/68/base 2025-08-14T21:43:25.6592027Z * [new branch] gh/ZhiweiYan-96/68/head -> origin/gh/ZhiweiYan-96/68/head 2025-08-14T21:43:25.6592691Z * [new branch] gh/ZhiweiYan-96/68/orig -> origin/gh/ZhiweiYan-96/68/orig 2025-08-14T21:43:25.6593248Z * [new branch] gh/aakhundov/1/base -> origin/gh/aakhundov/1/base 2025-08-14T21:43:25.6593791Z * [new branch] gh/aakhundov/1/head -> origin/gh/aakhundov/1/head 2025-08-14T21:43:25.6594331Z * [new branch] gh/aakhundov/2/base -> origin/gh/aakhundov/2/base 2025-08-14T21:43:25.6594862Z * [new branch] gh/aakhundov/2/head -> origin/gh/aakhundov/2/head 2025-08-14T21:43:25.6595405Z * [new branch] gh/aditew01/openblas -> origin/gh/aditew01/openblas 2025-08-14T21:43:25.6595939Z * [new branch] gh/aditew01/sbgemm -> origin/gh/aditew01/sbgemm 2025-08-14T21:43:25.6596550Z * [new branch] gh/aditew01/vecbf16 -> origin/gh/aditew01/vecbf16 2025-08-14T21:43:25.6597413Z * [new branch] gh/alexbrauckmann/paddedtensor_faketensor_init -> origin/gh/alexbrauckmann/paddedtensor_faketensor_init 2025-08-14T21:43:25.6598283Z * [new branch] gh/alexbrauckmann/paddedtensor_init -> origin/gh/alexbrauckmann/paddedtensor_init 2025-08-14T21:43:25.6599096Z * [new branch] gh/alexbrauckmann/paddedtensor_meta_init -> origin/gh/alexbrauckmann/paddedtensor_meta_init 2025-08-14T21:43:25.6599820Z * [new branch] gh/alexsamardzic/7/base -> origin/gh/alexsamardzic/7/base 2025-08-14T21:43:25.6600392Z * [new branch] gh/alexsamardzic/7/head -> origin/gh/alexsamardzic/7/head 2025-08-14T21:43:25.6600963Z * [new branch] gh/alexsamardzic/7/orig -> origin/gh/alexsamardzic/7/orig 2025-08-14T21:43:25.6601520Z * [new branch] gh/alexsamardzic/8/base -> origin/gh/alexsamardzic/8/base 2025-08-14T21:43:25.6602085Z * [new branch] gh/alexsamardzic/8/head -> origin/gh/alexsamardzic/8/head 2025-08-14T21:43:25.6602741Z * [new branch] gh/alexsamardzic/8/orig -> origin/gh/alexsamardzic/8/orig 2025-08-14T21:43:25.6603278Z * [new branch] gh/amjames/18/base -> origin/gh/amjames/18/base 2025-08-14T21:43:25.6603884Z * [new branch] gh/amjames/18/head -> origin/gh/amjames/18/head 2025-08-14T21:43:25.6604384Z * [new branch] gh/amjames/18/orig -> origin/gh/amjames/18/orig 2025-08-14T21:43:25.6605034Z * [new branch] gh/andrewor14/35/base -> origin/gh/andrewor14/35/base 2025-08-14T21:43:25.6605582Z * [new branch] gh/andrewor14/35/head -> origin/gh/andrewor14/35/head 2025-08-14T21:43:25.6606118Z * [new branch] gh/andrewor14/35/orig -> origin/gh/andrewor14/35/orig 2025-08-14T21:43:25.6606653Z * [new branch] gh/andrewor14/50/base -> origin/gh/andrewor14/50/base 2025-08-14T21:43:25.6607177Z * [new branch] gh/andrewor14/50/head -> origin/gh/andrewor14/50/head 2025-08-14T21:43:25.6607718Z * [new branch] gh/andrewor14/50/orig -> origin/gh/andrewor14/50/orig 2025-08-14T21:43:25.7055647Z * [new branch] gh/andyanwang/1/base -> origin/gh/andyanwang/1/base 2025-08-14T21:43:25.7056232Z * [new branch] gh/andyanwang/1/head -> origin/gh/andyanwang/1/head 2025-08-14T21:43:25.7056869Z * [new branch] gh/andyanwang/1/orig -> origin/gh/andyanwang/1/orig 2025-08-14T21:43:25.7057508Z * [new branch] gh/andyanwang/13/base -> origin/gh/andyanwang/13/base 2025-08-14T21:43:25.7058056Z * [new branch] gh/andyanwang/13/head -> origin/gh/andyanwang/13/head 2025-08-14T21:43:25.7058598Z * [new branch] gh/andyanwang/13/orig -> origin/gh/andyanwang/13/orig 2025-08-14T21:43:25.7059131Z * [new branch] gh/andyanwang/2/base -> origin/gh/andyanwang/2/base 2025-08-14T21:43:25.7059842Z * [new branch] gh/andyanwang/2/head -> origin/gh/andyanwang/2/head 2025-08-14T21:43:25.7060422Z * [new branch] gh/andyanwang/2/orig -> origin/gh/andyanwang/2/orig 2025-08-14T21:43:25.7060971Z * [new branch] gh/andyanwang/28/base -> origin/gh/andyanwang/28/base 2025-08-14T21:43:25.7061522Z * [new branch] gh/andyanwang/28/head -> origin/gh/andyanwang/28/head 2025-08-14T21:43:25.7062063Z * [new branch] gh/andyanwang/28/orig -> origin/gh/andyanwang/28/orig 2025-08-14T21:43:25.7062609Z * [new branch] gh/andyanwang/3/base -> origin/gh/andyanwang/3/base 2025-08-14T21:43:25.7063226Z * [new branch] gh/andyanwang/3/head -> origin/gh/andyanwang/3/head 2025-08-14T21:43:25.7063850Z * [new branch] gh/andyanwang/3/orig -> origin/gh/andyanwang/3/orig 2025-08-14T21:43:25.7064407Z * [new branch] gh/andyanwang/30/base -> origin/gh/andyanwang/30/base 2025-08-14T21:43:25.7064943Z * [new branch] gh/andyanwang/30/orig -> origin/gh/andyanwang/30/orig 2025-08-14T21:43:25.7065479Z * [new branch] gh/andyanwang/31/base -> origin/gh/andyanwang/31/base 2025-08-14T21:43:25.7066010Z * [new branch] gh/andyanwang/31/orig -> origin/gh/andyanwang/31/orig 2025-08-14T21:43:25.7066548Z * [new branch] gh/andyanwang/32/base -> origin/gh/andyanwang/32/base 2025-08-14T21:43:25.7067085Z * [new branch] gh/andyanwang/32/head -> origin/gh/andyanwang/32/head 2025-08-14T21:43:25.7067632Z * [new branch] gh/andyanwang/32/orig -> origin/gh/andyanwang/32/orig 2025-08-14T21:43:25.7068177Z * [new branch] gh/andyanwang/33/base -> origin/gh/andyanwang/33/base 2025-08-14T21:43:25.7068713Z * [new branch] gh/andyanwang/33/head -> origin/gh/andyanwang/33/head 2025-08-14T21:43:25.7069253Z * [new branch] gh/andyanwang/33/orig -> origin/gh/andyanwang/33/orig 2025-08-14T21:43:25.7069876Z * [new branch] gh/andyanwang/34/base -> origin/gh/andyanwang/34/base 2025-08-14T21:43:25.7070507Z * [new branch] gh/andyanwang/34/head -> origin/gh/andyanwang/34/head 2025-08-14T21:43:25.7071044Z * [new branch] gh/andyanwang/34/orig -> origin/gh/andyanwang/34/orig 2025-08-14T21:43:25.7071582Z * [new branch] gh/andyanwang/35/base -> origin/gh/andyanwang/35/base 2025-08-14T21:43:25.7072246Z * [new branch] gh/andyanwang/35/head -> origin/gh/andyanwang/35/head 2025-08-14T21:43:25.7072788Z * [new branch] gh/andyanwang/35/orig -> origin/gh/andyanwang/35/orig 2025-08-14T21:43:25.7073331Z * [new branch] gh/andyanwang/36/base -> origin/gh/andyanwang/36/base 2025-08-14T21:43:25.7073873Z * [new branch] gh/andyanwang/36/head -> origin/gh/andyanwang/36/head 2025-08-14T21:43:25.7074410Z * [new branch] gh/andyanwang/36/orig -> origin/gh/andyanwang/36/orig 2025-08-14T21:43:25.7074958Z * [new branch] gh/andyanwang/37/base -> origin/gh/andyanwang/37/base 2025-08-14T21:43:25.7075496Z * [new branch] gh/andyanwang/37/head -> origin/gh/andyanwang/37/head 2025-08-14T21:43:25.7076136Z * [new branch] gh/andyanwang/37/orig -> origin/gh/andyanwang/37/orig 2025-08-14T21:43:25.7076780Z * [new branch] gh/andyanwang/38/base -> origin/gh/andyanwang/38/base 2025-08-14T21:43:25.7077317Z * [new branch] gh/andyanwang/38/head -> origin/gh/andyanwang/38/head 2025-08-14T21:43:25.7077861Z * [new branch] gh/andyanwang/38/orig -> origin/gh/andyanwang/38/orig 2025-08-14T21:43:25.7078395Z * [new branch] gh/andyanwang/39/base -> origin/gh/andyanwang/39/base 2025-08-14T21:43:25.7078929Z * [new branch] gh/andyanwang/39/head -> origin/gh/andyanwang/39/head 2025-08-14T21:43:25.7079575Z * [new branch] gh/andyanwang/39/orig -> origin/gh/andyanwang/39/orig 2025-08-14T21:43:25.7080119Z * [new branch] gh/andyanwang/4/base -> origin/gh/andyanwang/4/base 2025-08-14T21:43:25.7080654Z * [new branch] gh/andyanwang/4/head -> origin/gh/andyanwang/4/head 2025-08-14T21:43:25.7081186Z * [new branch] gh/andyanwang/4/orig -> origin/gh/andyanwang/4/orig 2025-08-14T21:43:25.7081730Z * [new branch] gh/andyanwang/40/base -> origin/gh/andyanwang/40/base 2025-08-14T21:43:25.7528563Z * [new branch] gh/andyanwang/40/head -> origin/gh/andyanwang/40/head 2025-08-14T21:43:25.7529238Z * [new branch] gh/andyanwang/40/orig -> origin/gh/andyanwang/40/orig 2025-08-14T21:43:25.7529787Z * [new branch] gh/angelayi/102/base -> origin/gh/angelayi/102/base 2025-08-14T21:43:25.7530446Z * [new branch] gh/angelayi/102/head -> origin/gh/angelayi/102/head 2025-08-14T21:43:25.7530971Z * [new branch] gh/angelayi/102/orig -> origin/gh/angelayi/102/orig 2025-08-14T21:43:25.7531500Z * [new branch] gh/angelayi/103/base -> origin/gh/angelayi/103/base 2025-08-14T21:43:25.7532017Z * [new branch] gh/angelayi/103/head -> origin/gh/angelayi/103/head 2025-08-14T21:43:25.7532552Z * [new branch] gh/angelayi/103/orig -> origin/gh/angelayi/103/orig 2025-08-14T21:43:25.7533084Z * [new branch] gh/angelayi/104/base -> origin/gh/angelayi/104/base 2025-08-14T21:43:25.7533614Z * [new branch] gh/angelayi/104/head -> origin/gh/angelayi/104/head 2025-08-14T21:43:25.7534153Z * [new branch] gh/angelayi/104/orig -> origin/gh/angelayi/104/orig 2025-08-14T21:43:25.7534670Z * [new branch] gh/angelayi/105/base -> origin/gh/angelayi/105/base 2025-08-14T21:43:25.7535200Z * [new branch] gh/angelayi/105/head -> origin/gh/angelayi/105/head 2025-08-14T21:43:25.7535806Z * [new branch] gh/angelayi/105/orig -> origin/gh/angelayi/105/orig 2025-08-14T21:43:25.7536414Z * [new branch] gh/angelayi/106/base -> origin/gh/angelayi/106/base 2025-08-14T21:43:25.7536940Z * [new branch] gh/angelayi/106/head -> origin/gh/angelayi/106/head 2025-08-14T21:43:25.7537627Z * [new branch] gh/angelayi/106/orig -> origin/gh/angelayi/106/orig 2025-08-14T21:43:25.7538159Z * [new branch] gh/angelayi/107/base -> origin/gh/angelayi/107/base 2025-08-14T21:43:25.7538673Z * [new branch] gh/angelayi/107/head -> origin/gh/angelayi/107/head 2025-08-14T21:43:25.7539204Z * [new branch] gh/angelayi/108/base -> origin/gh/angelayi/108/base 2025-08-14T21:43:25.7539725Z * [new branch] gh/angelayi/108/head -> origin/gh/angelayi/108/head 2025-08-14T21:43:25.7540330Z * [new branch] gh/angelayi/108/orig -> origin/gh/angelayi/108/orig 2025-08-14T21:43:25.7540855Z * [new branch] gh/angelayi/109/base -> origin/gh/angelayi/109/base 2025-08-14T21:43:25.7541376Z * [new branch] gh/angelayi/109/head -> origin/gh/angelayi/109/head 2025-08-14T21:43:25.7542006Z * [new branch] gh/angelayi/109/orig -> origin/gh/angelayi/109/orig 2025-08-14T21:43:25.7542531Z * [new branch] gh/angelayi/110/base -> origin/gh/angelayi/110/base 2025-08-14T21:43:25.7543157Z * [new branch] gh/angelayi/110/head -> origin/gh/angelayi/110/head 2025-08-14T21:43:25.7543689Z * [new branch] gh/angelayi/110/orig -> origin/gh/angelayi/110/orig 2025-08-14T21:43:25.7544208Z * [new branch] gh/angelayi/97/base -> origin/gh/angelayi/97/base 2025-08-14T21:43:25.7544850Z * [new branch] gh/angelayi/97/head -> origin/gh/angelayi/97/head 2025-08-14T21:43:25.7545366Z * [new branch] gh/angelayi/97/orig -> origin/gh/angelayi/97/orig 2025-08-14T21:43:25.7545878Z * [new branch] gh/ani300/1/base -> origin/gh/ani300/1/base 2025-08-14T21:43:25.7546377Z * [new branch] gh/ani300/1/head -> origin/gh/ani300/1/head 2025-08-14T21:43:25.7546855Z * [new branch] gh/ani300/1/orig -> origin/gh/ani300/1/orig 2025-08-14T21:43:25.7547388Z * [new branch] gh/anijain2305/753/base -> origin/gh/anijain2305/753/base 2025-08-14T21:43:25.7547938Z * [new branch] gh/anijain2305/753/head -> origin/gh/anijain2305/753/head 2025-08-14T21:43:25.7548591Z * [new branch] gh/anijain2305/753/orig -> origin/gh/anijain2305/753/orig 2025-08-14T21:43:25.7549233Z * [new branch] gh/anijain2305/766/base -> origin/gh/anijain2305/766/base 2025-08-14T21:43:25.7549784Z * [new branch] gh/anijain2305/766/head -> origin/gh/anijain2305/766/head 2025-08-14T21:43:25.7550331Z * [new branch] gh/anijain2305/766/orig -> origin/gh/anijain2305/766/orig 2025-08-14T21:43:25.7550870Z * [new branch] gh/anijain2305/790/base -> origin/gh/anijain2305/790/base 2025-08-14T21:43:25.7551418Z * [new branch] gh/anijain2305/790/head -> origin/gh/anijain2305/790/head 2025-08-14T21:43:25.7551961Z * [new branch] gh/anijain2305/790/orig -> origin/gh/anijain2305/790/orig 2025-08-14T21:43:25.7552511Z * [new branch] gh/anijain2305/792/base -> origin/gh/anijain2305/792/base 2025-08-14T21:43:25.7553063Z * [new branch] gh/anijain2305/792/head -> origin/gh/anijain2305/792/head 2025-08-14T21:43:25.7553604Z * [new branch] gh/anijain2305/792/orig -> origin/gh/anijain2305/792/orig 2025-08-14T21:43:25.7987931Z * [new branch] gh/anijain2305/803/base -> origin/gh/anijain2305/803/base 2025-08-14T21:43:25.7988557Z * [new branch] gh/anijain2305/803/head -> origin/gh/anijain2305/803/head 2025-08-14T21:43:25.7989110Z * [new branch] gh/anijain2305/803/orig -> origin/gh/anijain2305/803/orig 2025-08-14T21:43:25.7989663Z * [new branch] gh/anijain2305/804/base -> origin/gh/anijain2305/804/base 2025-08-14T21:43:25.7990206Z * [new branch] gh/anijain2305/804/head -> origin/gh/anijain2305/804/head 2025-08-14T21:43:25.7990933Z * [new branch] gh/anijain2305/804/orig -> origin/gh/anijain2305/804/orig 2025-08-14T21:43:25.7991490Z * [new branch] gh/anijain2305/805/base -> origin/gh/anijain2305/805/base 2025-08-14T21:43:25.7992037Z * [new branch] gh/anijain2305/805/head -> origin/gh/anijain2305/805/head 2025-08-14T21:43:25.7992591Z * [new branch] gh/anijain2305/805/orig -> origin/gh/anijain2305/805/orig 2025-08-14T21:43:25.7993153Z * [new branch] gh/anijain2305/810/base -> origin/gh/anijain2305/810/base 2025-08-14T21:43:25.7993710Z * [new branch] gh/anijain2305/810/head -> origin/gh/anijain2305/810/head 2025-08-14T21:43:25.7994260Z * [new branch] gh/anijain2305/810/orig -> origin/gh/anijain2305/810/orig 2025-08-14T21:43:25.7994804Z * [new branch] gh/anijain2305/811/base -> origin/gh/anijain2305/811/base 2025-08-14T21:43:25.7995359Z * [new branch] gh/anijain2305/811/head -> origin/gh/anijain2305/811/head 2025-08-14T21:43:25.7995902Z * [new branch] gh/anijain2305/811/orig -> origin/gh/anijain2305/811/orig 2025-08-14T21:43:25.7996447Z * [new branch] gh/anijain2305/812/base -> origin/gh/anijain2305/812/base 2025-08-14T21:43:25.7996989Z * [new branch] gh/anijain2305/812/head -> origin/gh/anijain2305/812/head 2025-08-14T21:43:25.7998273Z * [new branch] gh/anijain2305/812/orig -> origin/gh/anijain2305/812/orig 2025-08-14T21:43:25.7998826Z * [new branch] gh/anijain2305/813/base -> origin/gh/anijain2305/813/base 2025-08-14T21:43:25.7999376Z * [new branch] gh/anijain2305/813/head -> origin/gh/anijain2305/813/head 2025-08-14T21:43:25.7999929Z * [new branch] gh/anijain2305/813/orig -> origin/gh/anijain2305/813/orig 2025-08-14T21:43:25.8000471Z * [new branch] gh/anijain2305/814/base -> origin/gh/anijain2305/814/base 2025-08-14T21:43:25.8001040Z * [new branch] gh/anijain2305/814/head -> origin/gh/anijain2305/814/head 2025-08-14T21:43:25.8001586Z * [new branch] gh/anijain2305/814/orig -> origin/gh/anijain2305/814/orig 2025-08-14T21:43:25.8002123Z * [new branch] gh/anijain2305/815/base -> origin/gh/anijain2305/815/base 2025-08-14T21:43:25.8002669Z * [new branch] gh/anijain2305/815/head -> origin/gh/anijain2305/815/head 2025-08-14T21:43:25.8003216Z * [new branch] gh/anijain2305/815/orig -> origin/gh/anijain2305/815/orig 2025-08-14T21:43:25.8003768Z * [new branch] gh/anijain2305/816/base -> origin/gh/anijain2305/816/base 2025-08-14T21:43:25.8004318Z * [new branch] gh/anijain2305/816/head -> origin/gh/anijain2305/816/head 2025-08-14T21:43:25.8004867Z * [new branch] gh/anijain2305/817/base -> origin/gh/anijain2305/817/base 2025-08-14T21:43:25.8005423Z * [new branch] gh/anijain2305/817/head -> origin/gh/anijain2305/817/head 2025-08-14T21:43:25.8005971Z * [new branch] gh/anijain2305/817/orig -> origin/gh/anijain2305/817/orig 2025-08-14T21:43:25.8006517Z * [new branch] gh/anijain2305/818/base -> origin/gh/anijain2305/818/base 2025-08-14T21:43:25.8007077Z * [new branch] gh/anijain2305/818/head -> origin/gh/anijain2305/818/head 2025-08-14T21:43:25.8007624Z * [new branch] gh/anijain2305/818/orig -> origin/gh/anijain2305/818/orig 2025-08-14T21:43:25.8008178Z * [new branch] gh/anijain2305/819/base -> origin/gh/anijain2305/819/base 2025-08-14T21:43:25.8008726Z * [new branch] gh/anijain2305/819/head -> origin/gh/anijain2305/819/head 2025-08-14T21:43:25.8009280Z * [new branch] gh/anijain2305/819/orig -> origin/gh/anijain2305/819/orig 2025-08-14T21:43:25.8009831Z * [new branch] gh/anijain2305/820/base -> origin/gh/anijain2305/820/base 2025-08-14T21:43:25.8010502Z * [new branch] gh/anijain2305/820/head -> origin/gh/anijain2305/820/head 2025-08-14T21:43:25.8011068Z * [new branch] gh/anijain2305/820/orig -> origin/gh/anijain2305/820/orig 2025-08-14T21:43:25.8011619Z * [new branch] gh/anijain2305/821/base -> origin/gh/anijain2305/821/base 2025-08-14T21:43:25.8012177Z * [new branch] gh/anijain2305/821/head -> origin/gh/anijain2305/821/head 2025-08-14T21:43:25.8012739Z * [new branch] gh/anijain2305/821/orig -> origin/gh/anijain2305/821/orig 2025-08-14T21:43:25.8013288Z * [new branch] gh/anijain2305/822/base -> origin/gh/anijain2305/822/base 2025-08-14T21:43:25.8430069Z * [new branch] gh/anijain2305/822/head -> origin/gh/anijain2305/822/head 2025-08-14T21:43:25.8430653Z * [new branch] gh/anijain2305/822/orig -> origin/gh/anijain2305/822/orig 2025-08-14T21:43:25.8431223Z * [new branch] gh/anijain2305/823/base -> origin/gh/anijain2305/823/base 2025-08-14T21:43:25.8431765Z * [new branch] gh/anijain2305/823/head -> origin/gh/anijain2305/823/head 2025-08-14T21:43:25.8432312Z * [new branch] gh/anijain2305/823/orig -> origin/gh/anijain2305/823/orig 2025-08-14T21:43:25.8432855Z * [new branch] gh/anijain2305/824/base -> origin/gh/anijain2305/824/base 2025-08-14T21:43:25.8433612Z * [new branch] gh/anijain2305/824/head -> origin/gh/anijain2305/824/head 2025-08-14T21:43:25.8434159Z * [new branch] gh/anijain2305/824/orig -> origin/gh/anijain2305/824/orig 2025-08-14T21:43:25.8434707Z * [new branch] gh/anijain2305/825/base -> origin/gh/anijain2305/825/base 2025-08-14T21:43:25.8435258Z * [new branch] gh/anijain2305/825/head -> origin/gh/anijain2305/825/head 2025-08-14T21:43:25.8435795Z * [new branch] gh/anijain2305/825/orig -> origin/gh/anijain2305/825/orig 2025-08-14T21:43:25.8436354Z * [new branch] gh/anijain2305/826/base -> origin/gh/anijain2305/826/base 2025-08-14T21:43:25.8436897Z * [new branch] gh/anijain2305/826/head -> origin/gh/anijain2305/826/head 2025-08-14T21:43:25.8437443Z * [new branch] gh/anijain2305/826/orig -> origin/gh/anijain2305/826/orig 2025-08-14T21:43:25.8437986Z * [new branch] gh/anijain2305/827/base -> origin/gh/anijain2305/827/base 2025-08-14T21:43:25.8438528Z * [new branch] gh/anijain2305/827/head -> origin/gh/anijain2305/827/head 2025-08-14T21:43:25.8439069Z * [new branch] gh/anijain2305/827/orig -> origin/gh/anijain2305/827/orig 2025-08-14T21:43:25.8439604Z * [new branch] gh/anijain2305/828/base -> origin/gh/anijain2305/828/base 2025-08-14T21:43:25.8440147Z * [new branch] gh/anijain2305/828/head -> origin/gh/anijain2305/828/head 2025-08-14T21:43:25.8440706Z * [new branch] gh/anijain2305/828/orig -> origin/gh/anijain2305/828/orig 2025-08-14T21:43:25.8441248Z * [new branch] gh/anijain2305/829/base -> origin/gh/anijain2305/829/base 2025-08-14T21:43:25.8441791Z * [new branch] gh/anijain2305/829/head -> origin/gh/anijain2305/829/head 2025-08-14T21:43:25.8442326Z * [new branch] gh/anijain2305/829/orig -> origin/gh/anijain2305/829/orig 2025-08-14T21:43:25.8442874Z * [new branch] gh/anijain2305/830/base -> origin/gh/anijain2305/830/base 2025-08-14T21:43:25.8443421Z * [new branch] gh/anijain2305/830/head -> origin/gh/anijain2305/830/head 2025-08-14T21:43:25.8443961Z * [new branch] gh/anijain2305/830/orig -> origin/gh/anijain2305/830/orig 2025-08-14T21:43:25.8444516Z * [new branch] gh/anijain2305/831/base -> origin/gh/anijain2305/831/base 2025-08-14T21:43:25.8445732Z * [new branch] gh/anijain2305/831/head -> origin/gh/anijain2305/831/head 2025-08-14T21:43:25.8446308Z * [new branch] gh/anijain2305/831/orig -> origin/gh/anijain2305/831/orig 2025-08-14T21:43:25.8446865Z * [new branch] gh/anijain2305/832/base -> origin/gh/anijain2305/832/base 2025-08-14T21:43:25.8447409Z * [new branch] gh/anijain2305/832/head -> origin/gh/anijain2305/832/head 2025-08-14T21:43:25.8447959Z * [new branch] gh/anijain2305/832/orig -> origin/gh/anijain2305/832/orig 2025-08-14T21:43:25.8448513Z * [new branch] gh/anijain2305/833/base -> origin/gh/anijain2305/833/base 2025-08-14T21:43:25.8449060Z * [new branch] gh/anijain2305/833/head -> origin/gh/anijain2305/833/head 2025-08-14T21:43:25.8449599Z * [new branch] gh/anijain2305/833/orig -> origin/gh/anijain2305/833/orig 2025-08-14T21:43:25.8450149Z * [new branch] gh/anijain2305/834/base -> origin/gh/anijain2305/834/base 2025-08-14T21:43:25.8450717Z * [new branch] gh/anijain2305/834/head -> origin/gh/anijain2305/834/head 2025-08-14T21:43:25.8451261Z * [new branch] gh/anijain2305/834/orig -> origin/gh/anijain2305/834/orig 2025-08-14T21:43:25.8451812Z * [new branch] gh/anijain2305/835/base -> origin/gh/anijain2305/835/base 2025-08-14T21:43:25.8452375Z * [new branch] gh/anijain2305/835/head -> origin/gh/anijain2305/835/head 2025-08-14T21:43:25.8453046Z * [new branch] gh/anijain2305/835/orig -> origin/gh/anijain2305/835/orig 2025-08-14T21:43:25.8453605Z * [new branch] gh/anijain2305/836/base -> origin/gh/anijain2305/836/base 2025-08-14T21:43:25.8454147Z * [new branch] gh/anijain2305/836/head -> origin/gh/anijain2305/836/head 2025-08-14T21:43:25.8454698Z * [new branch] gh/anijain2305/836/orig -> origin/gh/anijain2305/836/orig 2025-08-14T21:43:25.8455252Z * [new branch] gh/anijain2305/837/base -> origin/gh/anijain2305/837/base 2025-08-14T21:43:25.8905129Z * [new branch] gh/anijain2305/837/head -> origin/gh/anijain2305/837/head 2025-08-14T21:43:25.8905765Z * [new branch] gh/anijain2305/837/orig -> origin/gh/anijain2305/837/orig 2025-08-14T21:43:25.8906347Z * [new branch] gh/anijain2305/838/base -> origin/gh/anijain2305/838/base 2025-08-14T21:43:25.8906906Z * [new branch] gh/anijain2305/838/head -> origin/gh/anijain2305/838/head 2025-08-14T21:43:25.8907499Z * [new branch] gh/anijain2305/838/orig -> origin/gh/anijain2305/838/orig 2025-08-14T21:43:25.8908057Z * [new branch] gh/anijain2305/839/base -> origin/gh/anijain2305/839/base 2025-08-14T21:43:25.8908622Z * [new branch] gh/anijain2305/839/head -> origin/gh/anijain2305/839/head 2025-08-14T21:43:25.8909195Z * [new branch] gh/anijain2305/839/orig -> origin/gh/anijain2305/839/orig 2025-08-14T21:43:25.8909762Z * [new branch] gh/anijain2305/840/base -> origin/gh/anijain2305/840/base 2025-08-14T21:43:25.8910335Z * [new branch] gh/anijain2305/840/head -> origin/gh/anijain2305/840/head 2025-08-14T21:43:25.8910890Z * [new branch] gh/anijain2305/840/orig -> origin/gh/anijain2305/840/orig 2025-08-14T21:43:25.8911459Z * [new branch] gh/anijain2305/841/base -> origin/gh/anijain2305/841/base 2025-08-14T21:43:25.8912040Z * [new branch] gh/anijain2305/841/head -> origin/gh/anijain2305/841/head 2025-08-14T21:43:25.8912595Z * [new branch] gh/anijain2305/841/orig -> origin/gh/anijain2305/841/orig 2025-08-14T21:43:25.8913153Z * [new branch] gh/anijain2305/842/base -> origin/gh/anijain2305/842/base 2025-08-14T21:43:25.8913699Z * [new branch] gh/anijain2305/842/head -> origin/gh/anijain2305/842/head 2025-08-14T21:43:25.8914454Z * [new branch] gh/anijain2305/842/orig -> origin/gh/anijain2305/842/orig 2025-08-14T21:43:25.8915009Z * [new branch] gh/anijain2305/843/base -> origin/gh/anijain2305/843/base 2025-08-14T21:43:25.8915572Z * [new branch] gh/anijain2305/843/head -> origin/gh/anijain2305/843/head 2025-08-14T21:43:25.8916135Z * [new branch] gh/anijain2305/843/orig -> origin/gh/anijain2305/843/orig 2025-08-14T21:43:25.8916694Z * [new branch] gh/anijain2305/844/base -> origin/gh/anijain2305/844/base 2025-08-14T21:43:25.8917267Z * [new branch] gh/anijain2305/844/head -> origin/gh/anijain2305/844/head 2025-08-14T21:43:25.8917817Z * [new branch] gh/anijain2305/844/orig -> origin/gh/anijain2305/844/orig 2025-08-14T21:43:25.8918384Z * [new branch] gh/anijain2305/845/base -> origin/gh/anijain2305/845/base 2025-08-14T21:43:25.8918952Z * [new branch] gh/anijain2305/845/head -> origin/gh/anijain2305/845/head 2025-08-14T21:43:25.8919509Z * [new branch] gh/anijain2305/845/orig -> origin/gh/anijain2305/845/orig 2025-08-14T21:43:25.8920073Z * [new branch] gh/anijain2305/846/base -> origin/gh/anijain2305/846/base 2025-08-14T21:43:25.8920627Z * [new branch] gh/anijain2305/846/head -> origin/gh/anijain2305/846/head 2025-08-14T21:43:25.8921188Z * [new branch] gh/anijain2305/846/orig -> origin/gh/anijain2305/846/orig 2025-08-14T21:43:25.8921889Z * [new branch] gh/anijain2305/847/base -> origin/gh/anijain2305/847/base 2025-08-14T21:43:25.8922441Z * [new branch] gh/anijain2305/847/head -> origin/gh/anijain2305/847/head 2025-08-14T21:43:25.8923014Z * [new branch] gh/anijain2305/847/orig -> origin/gh/anijain2305/847/orig 2025-08-14T21:43:25.8923563Z * [new branch] gh/anijain2305/848/base -> origin/gh/anijain2305/848/base 2025-08-14T21:43:25.8924129Z * [new branch] gh/anijain2305/848/head -> origin/gh/anijain2305/848/head 2025-08-14T21:43:25.8924697Z * [new branch] gh/anijain2305/848/orig -> origin/gh/anijain2305/848/orig 2025-08-14T21:43:25.8925247Z * [new branch] gh/anjali411/216/base -> origin/gh/anjali411/216/base 2025-08-14T21:43:25.8925801Z * [new branch] gh/anjali411/216/head -> origin/gh/anjali411/216/head 2025-08-14T21:43:25.8926341Z * [new branch] gh/anjali411/216/orig -> origin/gh/anjali411/216/orig 2025-08-14T21:43:25.8926905Z * [new branch] gh/ankitageorge/10/base -> origin/gh/ankitageorge/10/base 2025-08-14T21:43:25.8927490Z * [new branch] gh/ankitageorge/10/head -> origin/gh/ankitageorge/10/head 2025-08-14T21:43:25.8928055Z * [new branch] gh/ankitageorge/10/orig -> origin/gh/ankitageorge/10/orig 2025-08-14T21:43:25.8928626Z * [new branch] gh/ankitageorge/12/base -> origin/gh/ankitageorge/12/base 2025-08-14T21:43:25.8929200Z * [new branch] gh/ankitageorge/12/head -> origin/gh/ankitageorge/12/head 2025-08-14T21:43:25.8929776Z * [new branch] gh/ankitageorge/12/orig -> origin/gh/ankitageorge/12/orig 2025-08-14T21:43:25.8930331Z * [new branch] gh/ankitageorge/13/base -> origin/gh/ankitageorge/13/base 2025-08-14T21:43:25.9400291Z * [new branch] gh/ankitageorge/13/head -> origin/gh/ankitageorge/13/head 2025-08-14T21:43:25.9400920Z * [new branch] gh/ankitageorge/13/orig -> origin/gh/ankitageorge/13/orig 2025-08-14T21:43:25.9401505Z * [new branch] gh/ankitageorge/14/base -> origin/gh/ankitageorge/14/base 2025-08-14T21:43:25.9402073Z * [new branch] gh/ankitageorge/14/head -> origin/gh/ankitageorge/14/head 2025-08-14T21:43:25.9402638Z * [new branch] gh/ankitageorge/14/orig -> origin/gh/ankitageorge/14/orig 2025-08-14T21:43:25.9403398Z * [new branch] gh/ankitageorge/15/base -> origin/gh/ankitageorge/15/base 2025-08-14T21:43:25.9403974Z * [new branch] gh/ankitageorge/15/head -> origin/gh/ankitageorge/15/head 2025-08-14T21:43:25.9404545Z * [new branch] gh/ankitageorge/15/orig -> origin/gh/ankitageorge/15/orig 2025-08-14T21:43:25.9405120Z * [new branch] gh/ankitageorge/16/base -> origin/gh/ankitageorge/16/base 2025-08-14T21:43:25.9405696Z * [new branch] gh/ankitageorge/16/head -> origin/gh/ankitageorge/16/head 2025-08-14T21:43:25.9406254Z * [new branch] gh/ankitageorge/16/orig -> origin/gh/ankitageorge/16/orig 2025-08-14T21:43:25.9406817Z * [new branch] gh/ankitageorge/17/base -> origin/gh/ankitageorge/17/base 2025-08-14T21:43:25.9407374Z * [new branch] gh/ankitageorge/17/head -> origin/gh/ankitageorge/17/head 2025-08-14T21:43:25.9407935Z * [new branch] gh/ankitageorge/17/orig -> origin/gh/ankitageorge/17/orig 2025-08-14T21:43:25.9408507Z * [new branch] gh/ankitageorge/18/base -> origin/gh/ankitageorge/18/base 2025-08-14T21:43:25.9409063Z * [new branch] gh/ankitageorge/18/head -> origin/gh/ankitageorge/18/head 2025-08-14T21:43:25.9409628Z * [new branch] gh/ankitageorge/18/orig -> origin/gh/ankitageorge/18/orig 2025-08-14T21:43:25.9410182Z * [new branch] gh/ankitageorge/19/base -> origin/gh/ankitageorge/19/base 2025-08-14T21:43:25.9410881Z * [new branch] gh/ankitageorge/19/head -> origin/gh/ankitageorge/19/head 2025-08-14T21:43:25.9411446Z * [new branch] gh/ankitageorge/19/orig -> origin/gh/ankitageorge/19/orig 2025-08-14T21:43:25.9412013Z * [new branch] gh/ankitageorge/20/base -> origin/gh/ankitageorge/20/base 2025-08-14T21:43:25.9412581Z * [new branch] gh/ankitageorge/20/head -> origin/gh/ankitageorge/20/head 2025-08-14T21:43:25.9413142Z * [new branch] gh/ankitageorge/20/orig -> origin/gh/ankitageorge/20/orig 2025-08-14T21:43:25.9413703Z * [new branch] gh/ankitageorge/21/base -> origin/gh/ankitageorge/21/base 2025-08-14T21:43:25.9414270Z * [new branch] gh/ankitageorge/21/head -> origin/gh/ankitageorge/21/head 2025-08-14T21:43:25.9414828Z * [new branch] gh/ankitageorge/21/orig -> origin/gh/ankitageorge/21/orig 2025-08-14T21:43:25.9415379Z * [new branch] gh/anshul-si/1/base -> origin/gh/anshul-si/1/base 2025-08-14T21:43:25.9415898Z * [new branch] gh/anshul-si/1/head -> origin/gh/anshul-si/1/head 2025-08-14T21:43:25.9416427Z * [new branch] gh/anshul-si/10/base -> origin/gh/anshul-si/10/base 2025-08-14T21:43:25.9416950Z * [new branch] gh/anshul-si/10/head -> origin/gh/anshul-si/10/head 2025-08-14T21:43:25.9417477Z * [new branch] gh/anshul-si/10/orig -> origin/gh/anshul-si/10/orig 2025-08-14T21:43:25.9418005Z * [new branch] gh/anshul-si/11/base -> origin/gh/anshul-si/11/base 2025-08-14T21:43:25.9418516Z * [new branch] gh/anshul-si/11/head -> origin/gh/anshul-si/11/head 2025-08-14T21:43:25.9419035Z * [new branch] gh/anshul-si/11/orig -> origin/gh/anshul-si/11/orig 2025-08-14T21:43:25.9419544Z * [new branch] gh/anshul-si/12/base -> origin/gh/anshul-si/12/base 2025-08-14T21:43:25.9420176Z * [new branch] gh/anshul-si/12/head -> origin/gh/anshul-si/12/head 2025-08-14T21:43:25.9420699Z * [new branch] gh/anshul-si/12/orig -> origin/gh/anshul-si/12/orig 2025-08-14T21:43:25.9421210Z * [new branch] gh/anshul-si/13/base -> origin/gh/anshul-si/13/base 2025-08-14T21:43:25.9421729Z * [new branch] gh/anshul-si/13/head -> origin/gh/anshul-si/13/head 2025-08-14T21:43:25.9422356Z * [new branch] gh/anshul-si/13/orig -> origin/gh/anshul-si/13/orig 2025-08-14T21:43:25.9422882Z * [new branch] gh/anshul-si/14/base -> origin/gh/anshul-si/14/base 2025-08-14T21:43:25.9423409Z * [new branch] gh/anshul-si/14/head -> origin/gh/anshul-si/14/head 2025-08-14T21:43:25.9423925Z * [new branch] gh/anshul-si/14/orig -> origin/gh/anshul-si/14/orig 2025-08-14T21:43:25.9424452Z * [new branch] gh/anshul-si/15/base -> origin/gh/anshul-si/15/base 2025-08-14T21:43:25.9424972Z * [new branch] gh/anshul-si/15/head -> origin/gh/anshul-si/15/head 2025-08-14T21:43:25.9425494Z * [new branch] gh/anshul-si/15/orig -> origin/gh/anshul-si/15/orig 2025-08-14T21:43:25.9859864Z * [new branch] gh/anshul-si/16/base -> origin/gh/anshul-si/16/base 2025-08-14T21:43:25.9860490Z * [new branch] gh/anshul-si/16/head -> origin/gh/anshul-si/16/head 2025-08-14T21:43:25.9861041Z * [new branch] gh/anshul-si/16/orig -> origin/gh/anshul-si/16/orig 2025-08-14T21:43:25.9861580Z * [new branch] gh/anshul-si/17/base -> origin/gh/anshul-si/17/base 2025-08-14T21:43:25.9862106Z * [new branch] gh/anshul-si/17/head -> origin/gh/anshul-si/17/head 2025-08-14T21:43:25.9862627Z * [new branch] gh/anshul-si/17/orig -> origin/gh/anshul-si/17/orig 2025-08-14T21:43:25.9863338Z * [new branch] gh/anshul-si/18/base -> origin/gh/anshul-si/18/base 2025-08-14T21:43:25.9863863Z * [new branch] gh/anshul-si/18/head -> origin/gh/anshul-si/18/head 2025-08-14T21:43:25.9864386Z * [new branch] gh/anshul-si/18/orig -> origin/gh/anshul-si/18/orig 2025-08-14T21:43:25.9864921Z * [new branch] gh/anshul-si/19/base -> origin/gh/anshul-si/19/base 2025-08-14T21:43:25.9865466Z * [new branch] gh/anshul-si/19/head -> origin/gh/anshul-si/19/head 2025-08-14T21:43:25.9865993Z * [new branch] gh/anshul-si/19/orig -> origin/gh/anshul-si/19/orig 2025-08-14T21:43:25.9866527Z * [new branch] gh/anshul-si/2/base -> origin/gh/anshul-si/2/base 2025-08-14T21:43:25.9867043Z * [new branch] gh/anshul-si/2/head -> origin/gh/anshul-si/2/head 2025-08-14T21:43:25.9867573Z * [new branch] gh/anshul-si/20/base -> origin/gh/anshul-si/20/base 2025-08-14T21:43:25.9868101Z * [new branch] gh/anshul-si/20/head -> origin/gh/anshul-si/20/head 2025-08-14T21:43:25.9868615Z * [new branch] gh/anshul-si/20/orig -> origin/gh/anshul-si/20/orig 2025-08-14T21:43:25.9869135Z * [new branch] gh/anshul-si/21/base -> origin/gh/anshul-si/21/base 2025-08-14T21:43:25.9869648Z * [new branch] gh/anshul-si/21/head -> origin/gh/anshul-si/21/head 2025-08-14T21:43:25.9870179Z * [new branch] gh/anshul-si/21/orig -> origin/gh/anshul-si/21/orig 2025-08-14T21:43:25.9870704Z * [new branch] gh/anshul-si/22/base -> origin/gh/anshul-si/22/base 2025-08-14T21:43:25.9871224Z * [new branch] gh/anshul-si/22/head -> origin/gh/anshul-si/22/head 2025-08-14T21:43:25.9871750Z * [new branch] gh/anshul-si/22/orig -> origin/gh/anshul-si/22/orig 2025-08-14T21:43:25.9872261Z * [new branch] gh/anshul-si/23/base -> origin/gh/anshul-si/23/base 2025-08-14T21:43:25.9872791Z * [new branch] gh/anshul-si/23/head -> origin/gh/anshul-si/23/head 2025-08-14T21:43:25.9873307Z * [new branch] gh/anshul-si/23/orig -> origin/gh/anshul-si/23/orig 2025-08-14T21:43:25.9873832Z * [new branch] gh/anshul-si/24/base -> origin/gh/anshul-si/24/base 2025-08-14T21:43:25.9874353Z * [new branch] gh/anshul-si/24/head -> origin/gh/anshul-si/24/head 2025-08-14T21:43:25.9874994Z * [new branch] gh/anshul-si/24/orig -> origin/gh/anshul-si/24/orig 2025-08-14T21:43:25.9875528Z * [new branch] gh/anshul-si/25/base -> origin/gh/anshul-si/25/base 2025-08-14T21:43:25.9876050Z * [new branch] gh/anshul-si/25/head -> origin/gh/anshul-si/25/head 2025-08-14T21:43:25.9876588Z * [new branch] gh/anshul-si/25/orig -> origin/gh/anshul-si/25/orig 2025-08-14T21:43:25.9877130Z * [new branch] gh/anshul-si/26/base -> origin/gh/anshul-si/26/base 2025-08-14T21:43:25.9877655Z * [new branch] gh/anshul-si/26/head -> origin/gh/anshul-si/26/head 2025-08-14T21:43:25.9878187Z * [new branch] gh/anshul-si/26/orig -> origin/gh/anshul-si/26/orig 2025-08-14T21:43:25.9878699Z * [new branch] gh/anshul-si/27/base -> origin/gh/anshul-si/27/base 2025-08-14T21:43:25.9879227Z * [new branch] gh/anshul-si/27/head -> origin/gh/anshul-si/27/head 2025-08-14T21:43:25.9879760Z * [new branch] gh/anshul-si/27/orig -> origin/gh/anshul-si/27/orig 2025-08-14T21:43:25.9880275Z * [new branch] gh/anshul-si/3/base -> origin/gh/anshul-si/3/base 2025-08-14T21:43:25.9880798Z * [new branch] gh/anshul-si/3/head -> origin/gh/anshul-si/3/head 2025-08-14T21:43:25.9881308Z * [new branch] gh/anshul-si/4/base -> origin/gh/anshul-si/4/base 2025-08-14T21:43:25.9881935Z * [new branch] gh/anshul-si/4/head -> origin/gh/anshul-si/4/head 2025-08-14T21:43:25.9882470Z * [new branch] gh/anshul-si/5/base -> origin/gh/anshul-si/5/base 2025-08-14T21:43:25.9882987Z * [new branch] gh/anshul-si/5/head -> origin/gh/anshul-si/5/head 2025-08-14T21:43:25.9883508Z * [new branch] gh/anshul-si/6/base -> origin/gh/anshul-si/6/base 2025-08-14T21:43:25.9884021Z * [new branch] gh/anshul-si/6/head -> origin/gh/anshul-si/6/head 2025-08-14T21:43:26.0338401Z * [new branch] gh/anshul-si/6/orig -> origin/gh/anshul-si/6/orig 2025-08-14T21:43:26.0338953Z * [new branch] gh/anshul-si/7/base -> origin/gh/anshul-si/7/base 2025-08-14T21:43:26.0339501Z * [new branch] gh/anshul-si/7/head -> origin/gh/anshul-si/7/head 2025-08-14T21:43:26.0340078Z * [new branch] gh/anshul-si/7/orig -> origin/gh/anshul-si/7/orig 2025-08-14T21:43:26.0340607Z * [new branch] gh/anshul-si/8/base -> origin/gh/anshul-si/8/base 2025-08-14T21:43:26.0341114Z * [new branch] gh/anshul-si/8/head -> origin/gh/anshul-si/8/head 2025-08-14T21:43:26.0341633Z * [new branch] gh/anshul-si/8/orig -> origin/gh/anshul-si/8/orig 2025-08-14T21:43:26.0342149Z * [new branch] gh/anshul-si/9/base -> origin/gh/anshul-si/9/base 2025-08-14T21:43:26.0342672Z * [new branch] gh/anshul-si/9/head -> origin/gh/anshul-si/9/head 2025-08-14T21:43:26.0343191Z * [new branch] gh/anshul-si/9/orig -> origin/gh/anshul-si/9/orig 2025-08-14T21:43:26.0343710Z * [new branch] gh/aorenste/132/base -> origin/gh/aorenste/132/base 2025-08-14T21:43:26.0344241Z * [new branch] gh/aorenste/132/head -> origin/gh/aorenste/132/head 2025-08-14T21:43:26.0345733Z * [new branch] gh/aorenste/235/base -> origin/gh/aorenste/235/base 2025-08-14T21:43:26.0346272Z * [new branch] gh/aorenste/235/head -> origin/gh/aorenste/235/head 2025-08-14T21:43:26.0346799Z * [new branch] gh/aorenste/235/orig -> origin/gh/aorenste/235/orig 2025-08-14T21:43:26.0347318Z * [new branch] gh/aorenste/236/base -> origin/gh/aorenste/236/base 2025-08-14T21:43:26.0347842Z * [new branch] gh/aorenste/236/head -> origin/gh/aorenste/236/head 2025-08-14T21:43:26.0348556Z * [new branch] gh/aorenste/236/orig -> origin/gh/aorenste/236/orig 2025-08-14T21:43:26.0349084Z * [new branch] gh/aorenste/237/base -> origin/gh/aorenste/237/base 2025-08-14T21:43:26.0349622Z * [new branch] gh/aorenste/237/head -> origin/gh/aorenste/237/head 2025-08-14T21:43:26.0350141Z * [new branch] gh/aorenste/237/orig -> origin/gh/aorenste/237/orig 2025-08-14T21:43:26.0350674Z * [new branch] gh/aorenste/238/base -> origin/gh/aorenste/238/base 2025-08-14T21:43:26.0351198Z * [new branch] gh/aorenste/238/head -> origin/gh/aorenste/238/head 2025-08-14T21:43:26.0351723Z * [new branch] gh/aorenste/238/orig -> origin/gh/aorenste/238/orig 2025-08-14T21:43:26.0352236Z * [new branch] gh/bdhirsh/650/base -> origin/gh/bdhirsh/650/base 2025-08-14T21:43:26.0352758Z * [new branch] gh/bdhirsh/650/head -> origin/gh/bdhirsh/650/head 2025-08-14T21:43:26.0353284Z * [new branch] gh/bdhirsh/650/orig -> origin/gh/bdhirsh/650/orig 2025-08-14T21:43:26.0353794Z * [new branch] gh/bdhirsh/656/base -> origin/gh/bdhirsh/656/base 2025-08-14T21:43:26.0354306Z * [new branch] gh/bdhirsh/656/head -> origin/gh/bdhirsh/656/head 2025-08-14T21:43:26.0354811Z * [new branch] gh/bdhirsh/657/base -> origin/gh/bdhirsh/657/base 2025-08-14T21:43:26.0355454Z * [new branch] gh/bdhirsh/657/head -> origin/gh/bdhirsh/657/head 2025-08-14T21:43:26.0355975Z * [new branch] gh/bdhirsh/659/base -> origin/gh/bdhirsh/659/base 2025-08-14T21:43:26.0356488Z * [new branch] gh/bdhirsh/659/head -> origin/gh/bdhirsh/659/head 2025-08-14T21:43:26.0357011Z * [new branch] gh/bdhirsh/659/orig -> origin/gh/bdhirsh/659/orig 2025-08-14T21:43:26.0357525Z * [new branch] gh/bdhirsh/663/base -> origin/gh/bdhirsh/663/base 2025-08-14T21:43:26.0358045Z * [new branch] gh/bdhirsh/663/head -> origin/gh/bdhirsh/663/head 2025-08-14T21:43:26.0358565Z * [new branch] gh/bdhirsh/663/orig -> origin/gh/bdhirsh/663/orig 2025-08-14T21:43:26.0359072Z * [new branch] gh/bdhirsh/665/base -> origin/gh/bdhirsh/665/base 2025-08-14T21:43:26.0359587Z * [new branch] gh/bdhirsh/665/head -> origin/gh/bdhirsh/665/head 2025-08-14T21:43:26.0360107Z * [new branch] gh/bdhirsh/665/orig -> origin/gh/bdhirsh/665/orig 2025-08-14T21:43:26.0360620Z * [new branch] gh/bdhirsh/666/base -> origin/gh/bdhirsh/666/base 2025-08-14T21:43:26.0361134Z * [new branch] gh/bdhirsh/666/head -> origin/gh/bdhirsh/666/head 2025-08-14T21:43:26.0361642Z * [new branch] gh/bdhirsh/666/orig -> origin/gh/bdhirsh/666/orig 2025-08-14T21:43:26.0362214Z * [new branch] gh/benjaminglass1/79/base -> origin/gh/benjaminglass1/79/base 2025-08-14T21:43:26.0362812Z * [new branch] gh/benjaminglass1/79/head -> origin/gh/benjaminglass1/79/head 2025-08-14T21:43:26.0363414Z * [new branch] gh/benjaminglass1/79/orig -> origin/gh/benjaminglass1/79/orig 2025-08-14T21:43:26.0363991Z * [new branch] gh/benjaminglass1/86/base -> origin/gh/benjaminglass1/86/base 2025-08-14T21:43:26.0806763Z * [new branch] gh/benjaminglass1/86/head -> origin/gh/benjaminglass1/86/head 2025-08-14T21:43:26.0827924Z * [new branch] gh/benjaminglass1/86/orig -> origin/gh/benjaminglass1/86/orig 2025-08-14T21:43:26.0828589Z * [new branch] gh/benjaminglass1/89/base -> origin/gh/benjaminglass1/89/base 2025-08-14T21:43:26.0829178Z * [new branch] gh/benjaminglass1/89/head -> origin/gh/benjaminglass1/89/head 2025-08-14T21:43:26.0829772Z * [new branch] gh/benjaminglass1/89/orig -> origin/gh/benjaminglass1/89/orig 2025-08-14T21:43:26.0830584Z * [new branch] gh/benjaminglass1/91/base -> origin/gh/benjaminglass1/91/base 2025-08-14T21:43:26.0831172Z * [new branch] gh/benjaminglass1/91/head -> origin/gh/benjaminglass1/91/head 2025-08-14T21:43:26.0831772Z * [new branch] gh/benjaminglass1/91/orig -> origin/gh/benjaminglass1/91/orig 2025-08-14T21:43:26.0832360Z * [new branch] gh/benjaminglass1/93/base -> origin/gh/benjaminglass1/93/base 2025-08-14T21:43:26.0832975Z * [new branch] gh/benjaminglass1/93/head -> origin/gh/benjaminglass1/93/head 2025-08-14T21:43:26.0833565Z * [new branch] gh/benjaminglass1/93/orig -> origin/gh/benjaminglass1/93/orig 2025-08-14T21:43:26.0834151Z * [new branch] gh/benjaminglass1/94/base -> origin/gh/benjaminglass1/94/base 2025-08-14T21:43:26.0834751Z * [new branch] gh/benjaminglass1/94/head -> origin/gh/benjaminglass1/94/head 2025-08-14T21:43:26.0835339Z * [new branch] gh/benjaminglass1/94/orig -> origin/gh/benjaminglass1/94/orig 2025-08-14T21:43:26.0835939Z * [new branch] gh/benjaminglass1/95/base -> origin/gh/benjaminglass1/95/base 2025-08-14T21:43:26.0836543Z * [new branch] gh/benjaminglass1/95/head -> origin/gh/benjaminglass1/95/head 2025-08-14T21:43:26.0837130Z * [new branch] gh/benjaminglass1/95/orig -> origin/gh/benjaminglass1/95/orig 2025-08-14T21:43:26.0837856Z * [new branch] gh/benjaminglass1/96/base -> origin/gh/benjaminglass1/96/base 2025-08-14T21:43:26.0838445Z * [new branch] gh/benjaminglass1/96/head -> origin/gh/benjaminglass1/96/head 2025-08-14T21:43:26.0839047Z * [new branch] gh/benjaminglass1/96/orig -> origin/gh/benjaminglass1/96/orig 2025-08-14T21:43:26.0839646Z * [new branch] gh/benjaminglass1/97/base -> origin/gh/benjaminglass1/97/base 2025-08-14T21:43:26.0840240Z * [new branch] gh/benjaminglass1/97/head -> origin/gh/benjaminglass1/97/head 2025-08-14T21:43:26.0840841Z * [new branch] gh/benjaminglass1/97/orig -> origin/gh/benjaminglass1/97/orig 2025-08-14T21:43:26.0841420Z * [new branch] gh/benjaminglass1/98/base -> origin/gh/benjaminglass1/98/base 2025-08-14T21:43:26.0842015Z * [new branch] gh/benjaminglass1/98/head -> origin/gh/benjaminglass1/98/head 2025-08-14T21:43:26.0845185Z * [new branch] gh/benjaminglass1/98/orig -> origin/gh/benjaminglass1/98/orig 2025-08-14T21:43:26.0845769Z * [new branch] gh/bobrenjc93/478/base -> origin/gh/bobrenjc93/478/base 2025-08-14T21:43:26.0846326Z * [new branch] gh/bobrenjc93/478/head -> origin/gh/bobrenjc93/478/head 2025-08-14T21:43:26.0846869Z * [new branch] gh/bobrenjc93/478/orig -> origin/gh/bobrenjc93/478/orig 2025-08-14T21:43:26.0847416Z * [new branch] gh/bobrenjc93/514/base -> origin/gh/bobrenjc93/514/base 2025-08-14T21:43:26.0847971Z * [new branch] gh/bobrenjc93/514/head -> origin/gh/bobrenjc93/514/head 2025-08-14T21:43:26.0848513Z * [new branch] gh/bobrenjc93/514/orig -> origin/gh/bobrenjc93/514/orig 2025-08-14T21:43:26.0849052Z * [new branch] gh/bobrenjc93/521/base -> origin/gh/bobrenjc93/521/base 2025-08-14T21:43:26.0851295Z * [new branch] gh/bobrenjc93/521/head -> origin/gh/bobrenjc93/521/head 2025-08-14T21:43:26.0851868Z * [new branch] gh/bobrenjc93/521/orig -> origin/gh/bobrenjc93/521/orig 2025-08-14T21:43:26.0852404Z * [new branch] gh/bobrenjc93/522/base -> origin/gh/bobrenjc93/522/base 2025-08-14T21:43:26.0852950Z * [new branch] gh/bobrenjc93/522/head -> origin/gh/bobrenjc93/522/head 2025-08-14T21:43:26.0853497Z * [new branch] gh/bobrenjc93/522/orig -> origin/gh/bobrenjc93/522/orig 2025-08-14T21:43:26.0854193Z * [new branch] gh/bobrenjc93/525/base -> origin/gh/bobrenjc93/525/base 2025-08-14T21:43:26.0854750Z * [new branch] gh/bobrenjc93/525/head -> origin/gh/bobrenjc93/525/head 2025-08-14T21:43:26.0855291Z * [new branch] gh/bobrenjc93/525/orig -> origin/gh/bobrenjc93/525/orig 2025-08-14T21:43:26.0855843Z * [new branch] gh/bobrenjc93/526/base -> origin/gh/bobrenjc93/526/base 2025-08-14T21:43:26.0856398Z * [new branch] gh/bobrenjc93/526/head -> origin/gh/bobrenjc93/526/head 2025-08-14T21:43:26.0856933Z * [new branch] gh/bobrenjc93/526/orig -> origin/gh/bobrenjc93/526/orig 2025-08-14T21:43:26.0857480Z * [new branch] gh/bobrenjc93/527/base -> origin/gh/bobrenjc93/527/base 2025-08-14T21:43:26.1799364Z * [new branch] gh/bobrenjc93/527/head -> origin/gh/bobrenjc93/527/head 2025-08-14T21:43:26.1799998Z * [new branch] gh/bobrenjc93/527/orig -> origin/gh/bobrenjc93/527/orig 2025-08-14T21:43:26.1800582Z * [new branch] gh/bobrenjc93/528/base -> origin/gh/bobrenjc93/528/base 2025-08-14T21:43:26.1801148Z * [new branch] gh/bobrenjc93/528/head -> origin/gh/bobrenjc93/528/head 2025-08-14T21:43:26.1801695Z * [new branch] gh/bobrenjc93/528/orig -> origin/gh/bobrenjc93/528/orig 2025-08-14T21:43:26.1802395Z * [new branch] gh/bobrenjc93/529/base -> origin/gh/bobrenjc93/529/base 2025-08-14T21:43:26.1803134Z * [new branch] gh/bobrenjc93/529/head -> origin/gh/bobrenjc93/529/head 2025-08-14T21:43:26.1803686Z * [new branch] gh/bobrenjc93/529/orig -> origin/gh/bobrenjc93/529/orig 2025-08-14T21:43:26.1804233Z * [new branch] gh/bobrenjc93/534/base -> origin/gh/bobrenjc93/534/base 2025-08-14T21:43:26.1804785Z * [new branch] gh/bobrenjc93/534/head -> origin/gh/bobrenjc93/534/head 2025-08-14T21:43:26.1805355Z * [new branch] gh/bobrenjc93/534/orig -> origin/gh/bobrenjc93/534/orig 2025-08-14T21:43:26.1806018Z * [new branch] gh/bobrenjc93/535/base -> origin/gh/bobrenjc93/535/base 2025-08-14T21:43:26.1806568Z * [new branch] gh/bobrenjc93/535/head -> origin/gh/bobrenjc93/535/head 2025-08-14T21:43:26.1807114Z * [new branch] gh/bobrenjc93/535/orig -> origin/gh/bobrenjc93/535/orig 2025-08-14T21:43:26.1807687Z * [new branch] gh/bobrenjc93/536/base -> origin/gh/bobrenjc93/536/base 2025-08-14T21:43:26.1808229Z * [new branch] gh/bobrenjc93/536/head -> origin/gh/bobrenjc93/536/head 2025-08-14T21:43:26.1808782Z * [new branch] gh/bobrenjc93/536/orig -> origin/gh/bobrenjc93/536/orig 2025-08-14T21:43:26.1809441Z * [new branch] gh/bobrenjc93/537/base -> origin/gh/bobrenjc93/537/base 2025-08-14T21:43:26.1809985Z * [new branch] gh/bobrenjc93/537/head -> origin/gh/bobrenjc93/537/head 2025-08-14T21:43:26.1810541Z * [new branch] gh/bobrenjc93/537/orig -> origin/gh/bobrenjc93/537/orig 2025-08-14T21:43:26.1811089Z * [new branch] gh/bobrenjc93/538/base -> origin/gh/bobrenjc93/538/base 2025-08-14T21:43:26.1811642Z * [new branch] gh/bobrenjc93/538/head -> origin/gh/bobrenjc93/538/head 2025-08-14T21:43:26.1812307Z * [new branch] gh/bobrenjc93/538/orig -> origin/gh/bobrenjc93/538/orig 2025-08-14T21:43:26.1812858Z * [new branch] gh/bobrenjc93/539/base -> origin/gh/bobrenjc93/539/base 2025-08-14T21:43:26.1813410Z * [new branch] gh/bobrenjc93/539/head -> origin/gh/bobrenjc93/539/head 2025-08-14T21:43:26.1813953Z * [new branch] gh/bobrenjc93/539/orig -> origin/gh/bobrenjc93/539/orig 2025-08-14T21:43:26.1814499Z * [new branch] gh/bobrenjc93/540/base -> origin/gh/bobrenjc93/540/base 2025-08-14T21:43:26.1815180Z * [new branch] gh/bobrenjc93/540/head -> origin/gh/bobrenjc93/540/head 2025-08-14T21:43:26.1815844Z * [new branch] gh/bobrenjc93/540/orig -> origin/gh/bobrenjc93/540/orig 2025-08-14T21:43:26.1816387Z * [new branch] gh/bobrenjc93/541/base -> origin/gh/bobrenjc93/541/base 2025-08-14T21:43:26.1816929Z * [new branch] gh/bobrenjc93/541/head -> origin/gh/bobrenjc93/541/head 2025-08-14T21:43:26.1817472Z * [new branch] gh/bobrenjc93/541/orig -> origin/gh/bobrenjc93/541/orig 2025-08-14T21:43:26.1818022Z * [new branch] gh/bobrenjc93/542/base -> origin/gh/bobrenjc93/542/base 2025-08-14T21:43:26.1818558Z * [new branch] gh/bobrenjc93/542/head -> origin/gh/bobrenjc93/542/head 2025-08-14T21:43:26.1819113Z * [new branch] gh/bobrenjc93/542/orig -> origin/gh/bobrenjc93/542/orig 2025-08-14T21:43:26.1819650Z * [new branch] gh/bobrenjc93/543/base -> origin/gh/bobrenjc93/543/base 2025-08-14T21:43:26.1820369Z * [new branch] gh/bobrenjc93/543/head -> origin/gh/bobrenjc93/543/head 2025-08-14T21:43:26.1820927Z * [new branch] gh/bobrenjc93/543/orig -> origin/gh/bobrenjc93/543/orig 2025-08-14T21:43:26.1821475Z * [new branch] gh/bobrenjc93/544/base -> origin/gh/bobrenjc93/544/base 2025-08-14T21:43:26.1822028Z * [new branch] gh/bobrenjc93/544/head -> origin/gh/bobrenjc93/544/head 2025-08-14T21:43:26.1822688Z * [new branch] gh/bobrenjc93/544/orig -> origin/gh/bobrenjc93/544/orig 2025-08-14T21:43:26.1823230Z * [new branch] gh/bobrenjc93/545/base -> origin/gh/bobrenjc93/545/base 2025-08-14T21:43:26.1826244Z * [new branch] gh/bobrenjc93/545/head -> origin/gh/bobrenjc93/545/head 2025-08-14T21:43:26.1826802Z * [new branch] gh/bobrenjc93/545/orig -> origin/gh/bobrenjc93/545/orig 2025-08-14T21:43:26.1827357Z * [new branch] gh/bobrenjc93/546/base -> origin/gh/bobrenjc93/546/base 2025-08-14T21:43:26.2313828Z * [new branch] gh/bobrenjc93/546/head -> origin/gh/bobrenjc93/546/head 2025-08-14T21:43:26.2314444Z * [new branch] gh/bobrenjc93/546/orig -> origin/gh/bobrenjc93/546/orig 2025-08-14T21:43:26.2315018Z * [new branch] gh/bobrenjc93/547/base -> origin/gh/bobrenjc93/547/base 2025-08-14T21:43:26.2315571Z * [new branch] gh/bobrenjc93/547/head -> origin/gh/bobrenjc93/547/head 2025-08-14T21:43:26.2316137Z * [new branch] gh/bobrenjc93/547/orig -> origin/gh/bobrenjc93/547/orig 2025-08-14T21:43:26.2316686Z * [new branch] gh/bobrenjc93/548/base -> origin/gh/bobrenjc93/548/base 2025-08-14T21:43:26.2317224Z * [new branch] gh/bobrenjc93/548/head -> origin/gh/bobrenjc93/548/head 2025-08-14T21:43:26.2317779Z * [new branch] gh/bobrenjc93/548/orig -> origin/gh/bobrenjc93/548/orig 2025-08-14T21:43:26.2318350Z * [new branch] gh/bobrenjc93/549/base -> origin/gh/bobrenjc93/549/base 2025-08-14T21:43:26.2318883Z * [new branch] gh/bobrenjc93/549/head -> origin/gh/bobrenjc93/549/head 2025-08-14T21:43:26.2319437Z * [new branch] gh/bobrenjc93/549/orig -> origin/gh/bobrenjc93/549/orig 2025-08-14T21:43:26.2320013Z * [new branch] gh/briancoutinho/2/base -> origin/gh/briancoutinho/2/base 2025-08-14T21:43:26.2320592Z * [new branch] gh/briancoutinho/2/head -> origin/gh/briancoutinho/2/head 2025-08-14T21:43:26.2321130Z * [new branch] gh/c00w/23/base -> origin/gh/c00w/23/base 2025-08-14T21:43:26.2321617Z * [new branch] gh/c00w/23/head -> origin/gh/c00w/23/head 2025-08-14T21:43:26.2322096Z * [new branch] gh/c00w/38/base -> origin/gh/c00w/38/base 2025-08-14T21:43:26.2322569Z * [new branch] gh/c00w/38/head -> origin/gh/c00w/38/head 2025-08-14T21:43:26.2323229Z * [new branch] gh/c00w/38/orig -> origin/gh/c00w/38/orig 2025-08-14T21:43:26.2323709Z * [new branch] gh/c00w/48/base -> origin/gh/c00w/48/base 2025-08-14T21:43:26.2324181Z * [new branch] gh/c00w/48/head -> origin/gh/c00w/48/head 2025-08-14T21:43:26.2324661Z * [new branch] gh/c00w/48/orig -> origin/gh/c00w/48/orig 2025-08-14T21:43:26.2325137Z * [new branch] gh/c00w/50/base -> origin/gh/c00w/50/base 2025-08-14T21:43:26.2325620Z * [new branch] gh/c00w/50/head -> origin/gh/c00w/50/head 2025-08-14T21:43:26.2326103Z * [new branch] gh/c00w/50/orig -> origin/gh/c00w/50/orig 2025-08-14T21:43:26.2326576Z * [new branch] gh/c00w/51/base -> origin/gh/c00w/51/base 2025-08-14T21:43:26.2327051Z * [new branch] gh/c00w/51/head -> origin/gh/c00w/51/head 2025-08-14T21:43:26.2327517Z * [new branch] gh/c00w/51/orig -> origin/gh/c00w/51/orig 2025-08-14T21:43:26.2327994Z * [new branch] gh/c00w/52/base -> origin/gh/c00w/52/base 2025-08-14T21:43:26.2328459Z * [new branch] gh/c00w/52/head -> origin/gh/c00w/52/head 2025-08-14T21:43:26.2328932Z * [new branch] gh/c00w/52/orig -> origin/gh/c00w/52/orig 2025-08-14T21:43:26.2329538Z * [new branch] gh/c00w/53/base -> origin/gh/c00w/53/base 2025-08-14T21:43:26.2330005Z * [new branch] gh/c00w/53/head -> origin/gh/c00w/53/head 2025-08-14T21:43:26.2330475Z * [new branch] gh/c00w/53/orig -> origin/gh/c00w/53/orig 2025-08-14T21:43:26.2330938Z * [new branch] gh/c00w/54/base -> origin/gh/c00w/54/base 2025-08-14T21:43:26.2331414Z * [new branch] gh/c00w/54/head -> origin/gh/c00w/54/head 2025-08-14T21:43:26.2331889Z * [new branch] gh/c00w/54/orig -> origin/gh/c00w/54/orig 2025-08-14T21:43:26.2332395Z * [new branch] gh/chenmillie/1/base -> origin/gh/chenmillie/1/base 2025-08-14T21:43:26.2332941Z * [new branch] gh/chenmillie/1/head -> origin/gh/chenmillie/1/head 2025-08-14T21:43:26.2333476Z * [new branch] gh/chenmillie/1/orig -> origin/gh/chenmillie/1/orig 2025-08-14T21:43:26.2334020Z * [new branch] gh/clee2000/1/base -> origin/gh/clee2000/1/base 2025-08-14T21:43:26.2334526Z * [new branch] gh/clee2000/1/head -> origin/gh/clee2000/1/head 2025-08-14T21:43:26.2335147Z * [new branch] gh/clee2000/1/orig -> origin/gh/clee2000/1/orig 2025-08-14T21:43:26.2335779Z * [new branch] gh/coconutruben/1/base -> origin/gh/coconutruben/1/base 2025-08-14T21:43:26.2336354Z * [new branch] gh/coconutruben/1/head -> origin/gh/coconutruben/1/head 2025-08-14T21:43:26.2336921Z * [new branch] gh/coconutruben/11/base -> origin/gh/coconutruben/11/base 2025-08-14T21:43:26.2337497Z * [new branch] gh/coconutruben/11/head -> origin/gh/coconutruben/11/head 2025-08-14T21:43:26.2338056Z * [new branch] gh/coconutruben/11/orig -> origin/gh/coconutruben/11/orig 2025-08-14T21:43:26.2795197Z * [new branch] gh/coconutruben/12/base -> origin/gh/coconutruben/12/base 2025-08-14T21:43:26.2795807Z * [new branch] gh/coconutruben/12/head -> origin/gh/coconutruben/12/head 2025-08-14T21:43:26.2796402Z * [new branch] gh/coconutruben/12/orig -> origin/gh/coconutruben/12/orig 2025-08-14T21:43:26.2796969Z * [new branch] gh/coconutruben/13/base -> origin/gh/coconutruben/13/base 2025-08-14T21:43:26.2797535Z * [new branch] gh/coconutruben/13/head -> origin/gh/coconutruben/13/head 2025-08-14T21:43:26.2798280Z * [new branch] gh/coconutruben/13/orig -> origin/gh/coconutruben/13/orig 2025-08-14T21:43:26.2798840Z * [new branch] gh/coconutruben/14/base -> origin/gh/coconutruben/14/base 2025-08-14T21:43:26.2799409Z * [new branch] gh/coconutruben/14/head -> origin/gh/coconutruben/14/head 2025-08-14T21:43:26.2799980Z * [new branch] gh/coconutruben/14/orig -> origin/gh/coconutruben/14/orig 2025-08-14T21:43:26.2800555Z * [new branch] gh/coconutruben/15/base -> origin/gh/coconutruben/15/base 2025-08-14T21:43:26.2801230Z * [new branch] gh/coconutruben/15/head -> origin/gh/coconutruben/15/head 2025-08-14T21:43:26.2801871Z * [new branch] gh/coconutruben/15/orig -> origin/gh/coconutruben/15/orig 2025-08-14T21:43:26.2802537Z * [new branch] gh/coconutruben/16/base -> origin/gh/coconutruben/16/base 2025-08-14T21:43:26.2803110Z * [new branch] gh/coconutruben/16/head -> origin/gh/coconutruben/16/head 2025-08-14T21:43:26.2803670Z * [new branch] gh/coconutruben/16/orig -> origin/gh/coconutruben/16/orig 2025-08-14T21:43:26.2804243Z * [new branch] gh/coconutruben/17/base -> origin/gh/coconutruben/17/base 2025-08-14T21:43:26.2804801Z * [new branch] gh/coconutruben/17/head -> origin/gh/coconutruben/17/head 2025-08-14T21:43:26.2805374Z * [new branch] gh/coconutruben/17/orig -> origin/gh/coconutruben/17/orig 2025-08-14T21:43:26.2806072Z * [new branch] gh/coconutruben/18/base -> origin/gh/coconutruben/18/base 2025-08-14T21:43:26.2806635Z * [new branch] gh/coconutruben/18/head -> origin/gh/coconutruben/18/head 2025-08-14T21:43:26.2807208Z * [new branch] gh/coconutruben/18/orig -> origin/gh/coconutruben/18/orig 2025-08-14T21:43:26.2807768Z * [new branch] gh/coconutruben/19/base -> origin/gh/coconutruben/19/base 2025-08-14T21:43:26.2808350Z * [new branch] gh/coconutruben/19/head -> origin/gh/coconutruben/19/head 2025-08-14T21:43:26.2808938Z * [new branch] gh/coconutruben/19/orig -> origin/gh/coconutruben/19/orig 2025-08-14T21:43:26.2809495Z * [new branch] gh/coconutruben/20/base -> origin/gh/coconutruben/20/base 2025-08-14T21:43:26.2810060Z * [new branch] gh/coconutruben/20/head -> origin/gh/coconutruben/20/head 2025-08-14T21:43:26.2810621Z * [new branch] gh/coconutruben/20/orig -> origin/gh/coconutruben/20/orig 2025-08-14T21:43:26.2811193Z * [new branch] gh/coconutruben/21/base -> origin/gh/coconutruben/21/base 2025-08-14T21:43:26.2811758Z * [new branch] gh/coconutruben/21/head -> origin/gh/coconutruben/21/head 2025-08-14T21:43:26.2812315Z * [new branch] gh/coconutruben/21/orig -> origin/gh/coconutruben/21/orig 2025-08-14T21:43:26.2812894Z * [new branch] gh/coconutruben/22/base -> origin/gh/coconutruben/22/base 2025-08-14T21:43:26.2813453Z * [new branch] gh/coconutruben/22/head -> origin/gh/coconutruben/22/head 2025-08-14T21:43:26.2814023Z * [new branch] gh/coconutruben/22/orig -> origin/gh/coconutruben/22/orig 2025-08-14T21:43:26.2814583Z * [new branch] gh/coconutruben/23/base -> origin/gh/coconutruben/23/base 2025-08-14T21:43:26.2815153Z * [new branch] gh/coconutruben/23/head -> origin/gh/coconutruben/23/head 2025-08-14T21:43:26.2815733Z * [new branch] gh/coconutruben/23/orig -> origin/gh/coconutruben/23/orig 2025-08-14T21:43:26.2816289Z * [new branch] gh/coconutruben/24/base -> origin/gh/coconutruben/24/base 2025-08-14T21:43:26.2816852Z * [new branch] gh/coconutruben/24/head -> origin/gh/coconutruben/24/head 2025-08-14T21:43:26.2817411Z * [new branch] gh/coconutruben/24/orig -> origin/gh/coconutruben/24/orig 2025-08-14T21:43:26.2818156Z * [new branch] gh/coconutruben/25/base -> origin/gh/coconutruben/25/base 2025-08-14T21:43:26.2818817Z * [new branch] gh/coconutruben/25/head -> origin/gh/coconutruben/25/head 2025-08-14T21:43:26.2819468Z * [new branch] gh/coconutruben/25/orig -> origin/gh/coconutruben/25/orig 2025-08-14T21:43:26.2820102Z * [new branch] gh/coconutruben/26/base -> origin/gh/coconutruben/26/base 2025-08-14T21:43:26.2820668Z * [new branch] gh/coconutruben/26/head -> origin/gh/coconutruben/26/head 2025-08-14T21:43:26.2821237Z * [new branch] gh/coconutruben/26/orig -> origin/gh/coconutruben/26/orig 2025-08-14T21:43:26.3257672Z * [new branch] gh/coconutruben/27/base -> origin/gh/coconutruben/27/base 2025-08-14T21:43:26.3258291Z * [new branch] gh/coconutruben/27/head -> origin/gh/coconutruben/27/head 2025-08-14T21:43:26.3258987Z * [new branch] gh/coconutruben/27/orig -> origin/gh/coconutruben/27/orig 2025-08-14T21:43:26.3259674Z * [new branch] gh/codingwithsurya/10/base -> origin/gh/codingwithsurya/10/base 2025-08-14T21:43:26.3260393Z * [new branch] gh/codingwithsurya/10/head -> origin/gh/codingwithsurya/10/head 2025-08-14T21:43:26.3261009Z * [new branch] gh/codingwithsurya/10/orig -> origin/gh/codingwithsurya/10/orig 2025-08-14T21:43:26.3261792Z * [new branch] gh/codingwithsurya/11/base -> origin/gh/codingwithsurya/11/base 2025-08-14T21:43:26.3262405Z * [new branch] gh/codingwithsurya/11/head -> origin/gh/codingwithsurya/11/head 2025-08-14T21:43:26.3263015Z * [new branch] gh/codingwithsurya/11/orig -> origin/gh/codingwithsurya/11/orig 2025-08-14T21:43:26.3263629Z * [new branch] gh/codingwithsurya/12/base -> origin/gh/codingwithsurya/12/base 2025-08-14T21:43:26.3264229Z * [new branch] gh/codingwithsurya/12/head -> origin/gh/codingwithsurya/12/head 2025-08-14T21:43:26.3264836Z * [new branch] gh/codingwithsurya/12/orig -> origin/gh/codingwithsurya/12/orig 2025-08-14T21:43:26.3265449Z * [new branch] gh/codingwithsurya/13/base -> origin/gh/codingwithsurya/13/base 2025-08-14T21:43:26.3266045Z * [new branch] gh/codingwithsurya/13/head -> origin/gh/codingwithsurya/13/head 2025-08-14T21:43:26.3266646Z * [new branch] gh/codingwithsurya/13/orig -> origin/gh/codingwithsurya/13/orig 2025-08-14T21:43:26.3267255Z * [new branch] gh/codingwithsurya/14/base -> origin/gh/codingwithsurya/14/base 2025-08-14T21:43:26.3267862Z * [new branch] gh/codingwithsurya/14/head -> origin/gh/codingwithsurya/14/head 2025-08-14T21:43:26.3268459Z * [new branch] gh/codingwithsurya/14/orig -> origin/gh/codingwithsurya/14/orig 2025-08-14T21:43:26.3269066Z * [new branch] gh/codingwithsurya/15/base -> origin/gh/codingwithsurya/15/base 2025-08-14T21:43:26.3269676Z * [new branch] gh/codingwithsurya/15/head -> origin/gh/codingwithsurya/15/head 2025-08-14T21:43:26.3270266Z * [new branch] gh/codingwithsurya/15/orig -> origin/gh/codingwithsurya/15/orig 2025-08-14T21:43:26.3270865Z * [new branch] gh/codingwithsurya/16/base -> origin/gh/codingwithsurya/16/base 2025-08-14T21:43:26.3271456Z * [new branch] gh/codingwithsurya/16/head -> origin/gh/codingwithsurya/16/head 2025-08-14T21:43:26.3272062Z * [new branch] gh/codingwithsurya/16/orig -> origin/gh/codingwithsurya/16/orig 2025-08-14T21:43:26.3272666Z * [new branch] gh/codingwithsurya/17/base -> origin/gh/codingwithsurya/17/base 2025-08-14T21:43:26.3273263Z * [new branch] gh/codingwithsurya/17/head -> origin/gh/codingwithsurya/17/head 2025-08-14T21:43:26.3273879Z * [new branch] gh/codingwithsurya/17/orig -> origin/gh/codingwithsurya/17/orig 2025-08-14T21:43:26.3274599Z * [new branch] gh/codingwithsurya/18/base -> origin/gh/codingwithsurya/18/base 2025-08-14T21:43:26.3275213Z * [new branch] gh/codingwithsurya/18/head -> origin/gh/codingwithsurya/18/head 2025-08-14T21:43:26.3275823Z * [new branch] gh/codingwithsurya/18/orig -> origin/gh/codingwithsurya/18/orig 2025-08-14T21:43:26.3276421Z * [new branch] gh/codingwithsurya/19/base -> origin/gh/codingwithsurya/19/base 2025-08-14T21:43:26.3277038Z * [new branch] gh/codingwithsurya/19/head -> origin/gh/codingwithsurya/19/head 2025-08-14T21:43:26.3277641Z * [new branch] gh/codingwithsurya/19/orig -> origin/gh/codingwithsurya/19/orig 2025-08-14T21:43:26.3278260Z * [new branch] gh/codingwithsurya/20/base -> origin/gh/codingwithsurya/20/base 2025-08-14T21:43:26.3278866Z * [new branch] gh/codingwithsurya/20/head -> origin/gh/codingwithsurya/20/head 2025-08-14T21:43:26.3279475Z * [new branch] gh/codingwithsurya/20/orig -> origin/gh/codingwithsurya/20/orig 2025-08-14T21:43:26.3280096Z * [new branch] gh/codingwithsurya/21/base -> origin/gh/codingwithsurya/21/base 2025-08-14T21:43:26.3280699Z * [new branch] gh/codingwithsurya/21/head -> origin/gh/codingwithsurya/21/head 2025-08-14T21:43:26.3281307Z * [new branch] gh/codingwithsurya/21/orig -> origin/gh/codingwithsurya/21/orig 2025-08-14T21:43:26.3282009Z * [new branch] gh/codingwithsurya/8/base -> origin/gh/codingwithsurya/8/base 2025-08-14T21:43:26.3282616Z * [new branch] gh/codingwithsurya/8/head -> origin/gh/codingwithsurya/8/head 2025-08-14T21:43:26.3283226Z * [new branch] gh/codingwithsurya/8/orig -> origin/gh/codingwithsurya/8/orig 2025-08-14T21:43:26.3283826Z * [new branch] gh/codingwithsurya/9/base -> origin/gh/codingwithsurya/9/base 2025-08-14T21:43:26.3284435Z * [new branch] gh/codingwithsurya/9/head -> origin/gh/codingwithsurya/9/head 2025-08-14T21:43:26.3721466Z * [new branch] gh/codingwithsurya/9/orig -> origin/gh/codingwithsurya/9/orig 2025-08-14T21:43:26.3722080Z * [new branch] gh/colinchan15/1/base -> origin/gh/colinchan15/1/base 2025-08-14T21:43:26.3722643Z * [new branch] gh/colinchan15/1/head -> origin/gh/colinchan15/1/head 2025-08-14T21:43:26.3723194Z * [new branch] gh/colinchan15/2/base -> origin/gh/colinchan15/2/base 2025-08-14T21:43:26.3723748Z * [new branch] gh/colinchan15/2/head -> origin/gh/colinchan15/2/head 2025-08-14T21:43:26.3724390Z * [new branch] gh/colinchan15/3/base -> origin/gh/colinchan15/3/base 2025-08-14T21:43:26.3724925Z * [new branch] gh/colinchan15/3/head -> origin/gh/colinchan15/3/head 2025-08-14T21:43:26.3725560Z * [new branch] gh/colinchan15/4/base -> origin/gh/colinchan15/4/base 2025-08-14T21:43:26.3726187Z * [new branch] gh/colinchan15/4/head -> origin/gh/colinchan15/4/head 2025-08-14T21:43:26.3726791Z * [new branch] gh/colinchan15/5/base -> origin/gh/colinchan15/5/base 2025-08-14T21:43:26.3727340Z * [new branch] gh/colinchan15/5/head -> origin/gh/colinchan15/5/head 2025-08-14T21:43:26.3727967Z * [new branch] gh/colinchan15/6/base -> origin/gh/colinchan15/6/base 2025-08-14T21:43:26.3728598Z * [new branch] gh/colinchan15/6/head -> origin/gh/colinchan15/6/head 2025-08-14T21:43:26.3729215Z * [new branch] gh/davidberard98/351/base -> origin/gh/davidberard98/351/base 2025-08-14T21:43:26.3729897Z * [new branch] gh/davidberard98/351/head -> origin/gh/davidberard98/351/head 2025-08-14T21:43:26.3730571Z * [new branch] gh/davidberard98/351/orig -> origin/gh/davidberard98/351/orig 2025-08-14T21:43:26.3731247Z * [new branch] gh/davidberard98/353/base -> origin/gh/davidberard98/353/base 2025-08-14T21:43:26.3732086Z * [new branch] gh/davidberard98/353/head -> origin/gh/davidberard98/353/head 2025-08-14T21:43:26.3732755Z * [new branch] gh/davidberard98/353/orig -> origin/gh/davidberard98/353/orig 2025-08-14T21:43:26.3733435Z * [new branch] gh/davidberard98/356/base -> origin/gh/davidberard98/356/base 2025-08-14T21:43:26.3734027Z * [new branch] gh/davidberard98/356/head -> origin/gh/davidberard98/356/head 2025-08-14T21:43:26.3734729Z * [new branch] gh/davidberard98/356/orig -> origin/gh/davidberard98/356/orig 2025-08-14T21:43:26.3735404Z * [new branch] gh/davidberard98/382/base -> origin/gh/davidberard98/382/base 2025-08-14T21:43:26.3736038Z * [new branch] gh/davidberard98/382/head -> origin/gh/davidberard98/382/head 2025-08-14T21:43:26.3736685Z * [new branch] gh/davidberard98/382/orig -> origin/gh/davidberard98/382/orig 2025-08-14T21:43:26.3737371Z * [new branch] gh/davidberard98/386/base -> origin/gh/davidberard98/386/base 2025-08-14T21:43:26.3738035Z * [new branch] gh/davidberard98/386/head -> origin/gh/davidberard98/386/head 2025-08-14T21:43:26.3738707Z * [new branch] gh/davidberard98/386/orig -> origin/gh/davidberard98/386/orig 2025-08-14T21:43:26.3739292Z * [new branch] gh/davidberard98/389/base -> origin/gh/davidberard98/389/base 2025-08-14T21:43:26.3740158Z * [new branch] gh/davidberard98/389/head -> origin/gh/davidberard98/389/head 2025-08-14T21:43:26.3740826Z * [new branch] gh/davidberard98/389/orig -> origin/gh/davidberard98/389/orig 2025-08-14T21:43:26.3741494Z * [new branch] gh/davidberard98/390/base -> origin/gh/davidberard98/390/base 2025-08-14T21:43:26.3742173Z * [new branch] gh/davidberard98/390/head -> origin/gh/davidberard98/390/head 2025-08-14T21:43:26.3742838Z * [new branch] gh/davidberard98/390/orig -> origin/gh/davidberard98/390/orig 2025-08-14T21:43:26.3743472Z * [new branch] gh/davidberard98/391/base -> origin/gh/davidberard98/391/base 2025-08-14T21:43:26.3744127Z * [new branch] gh/davidberard98/391/head -> origin/gh/davidberard98/391/head 2025-08-14T21:43:26.3744769Z * [new branch] gh/davidberard98/391/orig -> origin/gh/davidberard98/391/orig 2025-08-14T21:43:26.3745358Z * [new branch] gh/davidberard98/392/base -> origin/gh/davidberard98/392/base 2025-08-14T21:43:26.3746026Z * [new branch] gh/davidberard98/392/head -> origin/gh/davidberard98/392/head 2025-08-14T21:43:26.3746692Z * [new branch] gh/davidberard98/392/orig -> origin/gh/davidberard98/392/orig 2025-08-14T21:43:26.3747359Z * [new branch] gh/davidberard98/393/base -> origin/gh/davidberard98/393/base 2025-08-14T21:43:26.3748032Z * [new branch] gh/davidberard98/393/head -> origin/gh/davidberard98/393/head 2025-08-14T21:43:26.3748629Z * [new branch] gh/davidberard98/393/orig -> origin/gh/davidberard98/393/orig 2025-08-14T21:43:26.3749292Z * [new branch] gh/davidberard98/394/base -> origin/gh/davidberard98/394/base 2025-08-14T21:43:26.3749967Z * [new branch] gh/davidberard98/394/head -> origin/gh/davidberard98/394/head 2025-08-14T21:43:26.4189476Z * [new branch] gh/davidberard98/394/orig -> origin/gh/davidberard98/394/orig 2025-08-14T21:43:26.4190123Z * [new branch] gh/davidberard98/395/base -> origin/gh/davidberard98/395/base 2025-08-14T21:43:26.4190736Z * [new branch] gh/davidberard98/395/head -> origin/gh/davidberard98/395/head 2025-08-14T21:43:26.4191325Z * [new branch] gh/davidberard98/395/orig -> origin/gh/davidberard98/395/orig 2025-08-14T21:43:26.4191901Z * [new branch] gh/davidberard98/396/base -> origin/gh/davidberard98/396/base 2025-08-14T21:43:26.4192662Z * [new branch] gh/davidberard98/396/head -> origin/gh/davidberard98/396/head 2025-08-14T21:43:26.4193349Z * [new branch] gh/davidberard98/396/orig -> origin/gh/davidberard98/396/orig 2025-08-14T21:43:26.4194010Z * [new branch] gh/davidberard98/397/base -> origin/gh/davidberard98/397/base 2025-08-14T21:43:26.4194598Z * [new branch] gh/davidberard98/397/head -> origin/gh/davidberard98/397/head 2025-08-14T21:43:26.4195181Z * [new branch] gh/davidberard98/397/orig -> origin/gh/davidberard98/397/orig 2025-08-14T21:43:26.4195766Z * [new branch] gh/davidberard98/398/base -> origin/gh/davidberard98/398/base 2025-08-14T21:43:26.4196351Z * [new branch] gh/davidberard98/398/head -> origin/gh/davidberard98/398/head 2025-08-14T21:43:26.4196931Z * [new branch] gh/davidberard98/398/orig -> origin/gh/davidberard98/398/orig 2025-08-14T21:43:26.4197505Z * [new branch] gh/desertfire/570/base -> origin/gh/desertfire/570/base 2025-08-14T21:43:26.4198052Z * [new branch] gh/desertfire/570/head -> origin/gh/desertfire/570/head 2025-08-14T21:43:26.4198618Z * [new branch] gh/desertfire/570/orig -> origin/gh/desertfire/570/orig 2025-08-14T21:43:26.4199163Z * [new branch] gh/desertfire/572/base -> origin/gh/desertfire/572/base 2025-08-14T21:43:26.4199797Z * [new branch] gh/desertfire/572/head -> origin/gh/desertfire/572/head 2025-08-14T21:43:26.4201502Z * [new branch] gh/desertfire/572/orig -> origin/gh/desertfire/572/orig 2025-08-14T21:43:26.4202045Z * [new branch] gh/desertfire/589/base -> origin/gh/desertfire/589/base 2025-08-14T21:43:26.4202610Z * [new branch] gh/desertfire/589/head -> origin/gh/desertfire/589/head 2025-08-14T21:43:26.4203150Z * [new branch] gh/desertfire/589/orig -> origin/gh/desertfire/589/orig 2025-08-14T21:43:26.4203716Z * [new branch] gh/desertfire/590/base -> origin/gh/desertfire/590/base 2025-08-14T21:43:26.4204268Z * [new branch] gh/desertfire/590/head -> origin/gh/desertfire/590/head 2025-08-14T21:43:26.4204816Z * [new branch] gh/desertfire/590/orig -> origin/gh/desertfire/590/orig 2025-08-14T21:43:26.4205373Z * [new branch] gh/desertfire/591/base -> origin/gh/desertfire/591/base 2025-08-14T21:43:26.4206021Z * [new branch] gh/desertfire/591/head -> origin/gh/desertfire/591/head 2025-08-14T21:43:26.4206583Z * [new branch] gh/desertfire/591/orig -> origin/gh/desertfire/591/orig 2025-08-14T21:43:26.4207224Z * [new branch] gh/desertfire/592/base -> origin/gh/desertfire/592/base 2025-08-14T21:43:26.4207769Z * [new branch] gh/desertfire/592/head -> origin/gh/desertfire/592/head 2025-08-14T21:43:26.4208328Z * [new branch] gh/desertfire/592/orig -> origin/gh/desertfire/592/orig 2025-08-14T21:43:26.4208870Z * [new branch] gh/desertfire/593/base -> origin/gh/desertfire/593/base 2025-08-14T21:43:26.4209419Z * [new branch] gh/desertfire/593/head -> origin/gh/desertfire/593/head 2025-08-14T21:43:26.4209965Z * [new branch] gh/desertfire/593/orig -> origin/gh/desertfire/593/orig 2025-08-14T21:43:26.4210511Z * [new branch] gh/desertfire/594/base -> origin/gh/desertfire/594/base 2025-08-14T21:43:26.4211066Z * [new branch] gh/desertfire/594/head -> origin/gh/desertfire/594/head 2025-08-14T21:43:26.4211609Z * [new branch] gh/desertfire/594/orig -> origin/gh/desertfire/594/orig 2025-08-14T21:43:26.4212161Z * [new branch] gh/desertfire/595/base -> origin/gh/desertfire/595/base 2025-08-14T21:43:26.4212806Z * [new branch] gh/desertfire/595/head -> origin/gh/desertfire/595/head 2025-08-14T21:43:26.4213562Z * [new branch] gh/desertfire/595/orig -> origin/gh/desertfire/595/orig 2025-08-14T21:43:26.4214130Z * [new branch] gh/desertfire/596/base -> origin/gh/desertfire/596/base 2025-08-14T21:43:26.4214678Z * [new branch] gh/desertfire/596/head -> origin/gh/desertfire/596/head 2025-08-14T21:43:26.4215235Z * [new branch] gh/desertfire/596/orig -> origin/gh/desertfire/596/orig 2025-08-14T21:43:26.4215812Z * [new branch] gh/desertfire/597/base -> origin/gh/desertfire/597/base 2025-08-14T21:43:26.4216357Z * [new branch] gh/desertfire/597/head -> origin/gh/desertfire/597/head 2025-08-14T21:43:26.4669689Z * [new branch] gh/desertfire/597/orig -> origin/gh/desertfire/597/orig 2025-08-14T21:43:26.4670254Z * [new branch] gh/dharakk/1/base -> origin/gh/dharakk/1/base 2025-08-14T21:43:26.4670815Z * [new branch] gh/dharakk/1/head -> origin/gh/dharakk/1/head 2025-08-14T21:43:26.4671322Z * [new branch] gh/dharakk/4/base -> origin/gh/dharakk/4/base 2025-08-14T21:43:26.4671828Z * [new branch] gh/dharakk/4/head -> origin/gh/dharakk/4/head 2025-08-14T21:43:26.4672332Z * [new branch] gh/dharakk/4/orig -> origin/gh/dharakk/4/orig 2025-08-14T21:43:26.4672841Z * [new branch] gh/drisspg/140/base -> origin/gh/drisspg/140/base 2025-08-14T21:43:26.4673542Z * [new branch] gh/drisspg/140/head -> origin/gh/drisspg/140/head 2025-08-14T21:43:26.4674071Z * [new branch] gh/drisspg/140/orig -> origin/gh/drisspg/140/orig 2025-08-14T21:43:26.4674685Z * [new branch] gh/drisspg/149/base -> origin/gh/drisspg/149/base 2025-08-14T21:43:26.4675300Z * [new branch] gh/drisspg/149/head -> origin/gh/drisspg/149/head 2025-08-14T21:43:26.4675821Z * [new branch] gh/drisspg/149/orig -> origin/gh/drisspg/149/orig 2025-08-14T21:43:26.4676346Z * [new branch] gh/drisspg/150/base -> origin/gh/drisspg/150/base 2025-08-14T21:43:26.4676869Z * [new branch] gh/drisspg/150/head -> origin/gh/drisspg/150/head 2025-08-14T21:43:26.4677376Z * [new branch] gh/drisspg/150/orig -> origin/gh/drisspg/150/orig 2025-08-14T21:43:26.4677908Z * [new branch] gh/drisspg/151/base -> origin/gh/drisspg/151/base 2025-08-14T21:43:26.4678427Z * [new branch] gh/drisspg/151/head -> origin/gh/drisspg/151/head 2025-08-14T21:43:26.4678949Z * [new branch] gh/drisspg/151/orig -> origin/gh/drisspg/151/orig 2025-08-14T21:43:26.4679472Z * [new branch] gh/drisspg/158/base -> origin/gh/drisspg/158/base 2025-08-14T21:43:26.4679993Z * [new branch] gh/drisspg/158/head -> origin/gh/drisspg/158/head 2025-08-14T21:43:26.4680609Z * [new branch] gh/drisspg/158/orig -> origin/gh/drisspg/158/orig 2025-08-14T21:43:26.4681121Z * [new branch] gh/drisspg/159/base -> origin/gh/drisspg/159/base 2025-08-14T21:43:26.4681691Z * [new branch] gh/drisspg/159/head -> origin/gh/drisspg/159/head 2025-08-14T21:43:26.4682201Z * [new branch] gh/drisspg/159/orig -> origin/gh/drisspg/159/orig 2025-08-14T21:43:26.4682726Z * [new branch] gh/drisspg/166/base -> origin/gh/drisspg/166/base 2025-08-14T21:43:26.4683244Z * [new branch] gh/drisspg/166/head -> origin/gh/drisspg/166/head 2025-08-14T21:43:26.4683755Z * [new branch] gh/drisspg/166/orig -> origin/gh/drisspg/166/orig 2025-08-14T21:43:26.4684280Z * [new branch] gh/drisspg/168/base -> origin/gh/drisspg/168/base 2025-08-14T21:43:26.4684785Z * [new branch] gh/drisspg/168/head -> origin/gh/drisspg/168/head 2025-08-14T21:43:26.4686081Z * [new branch] gh/drisspg/168/orig -> origin/gh/drisspg/168/orig 2025-08-14T21:43:26.4686621Z * [new branch] gh/drisspg/169/base -> origin/gh/drisspg/169/base 2025-08-14T21:43:26.4687185Z * [new branch] gh/drisspg/169/head -> origin/gh/drisspg/169/head 2025-08-14T21:43:26.4687806Z * [new branch] gh/drisspg/169/orig -> origin/gh/drisspg/169/orig 2025-08-14T21:43:26.4688319Z * [new branch] gh/drisspg/170/base -> origin/gh/drisspg/170/base 2025-08-14T21:43:26.4688844Z * [new branch] gh/drisspg/170/head -> origin/gh/drisspg/170/head 2025-08-14T21:43:26.4689361Z * [new branch] gh/drisspg/170/orig -> origin/gh/drisspg/170/orig 2025-08-14T21:43:26.4689868Z * [new branch] gh/drisspg/171/base -> origin/gh/drisspg/171/base 2025-08-14T21:43:26.4690384Z * [new branch] gh/drisspg/171/head -> origin/gh/drisspg/171/head 2025-08-14T21:43:26.4690895Z * [new branch] gh/drisspg/171/orig -> origin/gh/drisspg/171/orig 2025-08-14T21:43:26.4691408Z * [new branch] gh/drisspg/172/base -> origin/gh/drisspg/172/base 2025-08-14T21:43:26.4691913Z * [new branch] gh/drisspg/172/head -> origin/gh/drisspg/172/head 2025-08-14T21:43:26.4692425Z * [new branch] gh/drisspg/172/orig -> origin/gh/drisspg/172/orig 2025-08-14T21:43:26.4693145Z * [new branch] gh/drisspg/173/base -> origin/gh/drisspg/173/base 2025-08-14T21:43:26.4693657Z * [new branch] gh/drisspg/173/head -> origin/gh/drisspg/173/head 2025-08-14T21:43:26.4694260Z * [new branch] gh/drisspg/173/orig -> origin/gh/drisspg/173/orig 2025-08-14T21:43:26.4694779Z * [new branch] gh/drisspg/174/base -> origin/gh/drisspg/174/base 2025-08-14T21:43:26.4695301Z * [new branch] gh/drisspg/174/head -> origin/gh/drisspg/174/head 2025-08-14T21:43:26.5165173Z * [new branch] gh/drisspg/174/orig -> origin/gh/drisspg/174/orig 2025-08-14T21:43:26.5165719Z * [new branch] gh/drisspg/175/base -> origin/gh/drisspg/175/base 2025-08-14T21:43:26.5166345Z * [new branch] gh/drisspg/175/head -> origin/gh/drisspg/175/head 2025-08-14T21:43:26.5166878Z * [new branch] gh/drisspg/175/orig -> origin/gh/drisspg/175/orig 2025-08-14T21:43:26.5167459Z * [new branch] gh/drisspg/176/base -> origin/gh/drisspg/176/base 2025-08-14T21:43:26.5167976Z * [new branch] gh/drisspg/176/head -> origin/gh/drisspg/176/head 2025-08-14T21:43:26.5168489Z * [new branch] gh/drisspg/176/orig -> origin/gh/drisspg/176/orig 2025-08-14T21:43:26.5169002Z * [new branch] gh/drisspg/177/base -> origin/gh/drisspg/177/base 2025-08-14T21:43:26.5169535Z * [new branch] gh/drisspg/177/head -> origin/gh/drisspg/177/head 2025-08-14T21:43:26.5170045Z * [new branch] gh/drisspg/177/orig -> origin/gh/drisspg/177/orig 2025-08-14T21:43:26.5170559Z * [new branch] gh/drisspg/178/base -> origin/gh/drisspg/178/base 2025-08-14T21:43:26.5171067Z * [new branch] gh/drisspg/178/head -> origin/gh/drisspg/178/head 2025-08-14T21:43:26.5171592Z * [new branch] gh/drisspg/178/orig -> origin/gh/drisspg/178/orig 2025-08-14T21:43:26.5172103Z * [new branch] gh/drisspg/179/base -> origin/gh/drisspg/179/base 2025-08-14T21:43:26.5172713Z * [new branch] gh/drisspg/179/head -> origin/gh/drisspg/179/head 2025-08-14T21:43:26.5173231Z * [new branch] gh/drisspg/179/orig -> origin/gh/drisspg/179/orig 2025-08-14T21:43:26.5173826Z * [new branch] gh/drisspg/180/base -> origin/gh/drisspg/180/base 2025-08-14T21:43:26.5174489Z * [new branch] gh/drisspg/180/head -> origin/gh/drisspg/180/head 2025-08-14T21:43:26.5175001Z * [new branch] gh/drisspg/180/orig -> origin/gh/drisspg/180/orig 2025-08-14T21:43:26.5175529Z * [new branch] gh/drisspg/181/base -> origin/gh/drisspg/181/base 2025-08-14T21:43:26.5176054Z * [new branch] gh/drisspg/181/head -> origin/gh/drisspg/181/head 2025-08-14T21:43:26.5176568Z * [new branch] gh/drisspg/181/orig -> origin/gh/drisspg/181/orig 2025-08-14T21:43:26.5177095Z * [new branch] gh/drisspg/182/base -> origin/gh/drisspg/182/base 2025-08-14T21:43:26.5177602Z * [new branch] gh/drisspg/182/head -> origin/gh/drisspg/182/head 2025-08-14T21:43:26.5178114Z * [new branch] gh/drisspg/183/base -> origin/gh/drisspg/183/base 2025-08-14T21:43:26.5178624Z * [new branch] gh/drisspg/183/head -> origin/gh/drisspg/183/head 2025-08-14T21:43:26.5179228Z * [new branch] gh/drisspg/184/base -> origin/gh/drisspg/184/base 2025-08-14T21:43:26.5179802Z * [new branch] gh/drisspg/184/head -> origin/gh/drisspg/184/head 2025-08-14T21:43:26.5180390Z * [new branch] gh/drisspg/185/base -> origin/gh/drisspg/185/base 2025-08-14T21:43:26.5180908Z * [new branch] gh/drisspg/185/head -> origin/gh/drisspg/185/head 2025-08-14T21:43:26.5181546Z * [new branch] gh/dsjohns2/1/base -> origin/gh/dsjohns2/1/base 2025-08-14T21:43:26.5182051Z * [new branch] gh/dsjohns2/1/head -> origin/gh/dsjohns2/1/head 2025-08-14T21:43:26.5182582Z * [new branch] gh/eellison/784/base -> origin/gh/eellison/784/base 2025-08-14T21:43:26.5183115Z * [new branch] gh/eellison/784/head -> origin/gh/eellison/784/head 2025-08-14T21:43:26.5183659Z * [new branch] gh/eellison/784/orig -> origin/gh/eellison/784/orig 2025-08-14T21:43:26.5184203Z * [new branch] gh/eellison/785/base -> origin/gh/eellison/785/base 2025-08-14T21:43:26.5184724Z * [new branch] gh/eellison/785/head -> origin/gh/eellison/785/head 2025-08-14T21:43:26.5185359Z * [new branch] gh/eellison/785/orig -> origin/gh/eellison/785/orig 2025-08-14T21:43:26.5185888Z * [new branch] gh/eellison/789/base -> origin/gh/eellison/789/base 2025-08-14T21:43:26.5186511Z * [new branch] gh/eellison/789/head -> origin/gh/eellison/789/head 2025-08-14T21:43:26.5187031Z * [new branch] gh/eellison/789/orig -> origin/gh/eellison/789/orig 2025-08-14T21:43:26.5187557Z * [new branch] gh/eellison/800/base -> origin/gh/eellison/800/base 2025-08-14T21:43:26.5188082Z * [new branch] gh/eellison/800/head -> origin/gh/eellison/800/head 2025-08-14T21:43:26.5188616Z * [new branch] gh/eellison/800/orig -> origin/gh/eellison/800/orig 2025-08-14T21:43:26.5189150Z * [new branch] gh/eellison/801/base -> origin/gh/eellison/801/base 2025-08-14T21:43:26.5189668Z * [new branch] gh/eellison/801/head -> origin/gh/eellison/801/head 2025-08-14T21:43:26.5190195Z * [new branch] gh/eellison/801/orig -> origin/gh/eellison/801/orig 2025-08-14T21:43:26.5672148Z * [new branch] gh/eellison/802/base -> origin/gh/eellison/802/base 2025-08-14T21:43:26.5672755Z * [new branch] gh/eellison/802/head -> origin/gh/eellison/802/head 2025-08-14T21:43:26.5673296Z * [new branch] gh/eellison/802/orig -> origin/gh/eellison/802/orig 2025-08-14T21:43:26.5673832Z * [new branch] gh/eellison/805/base -> origin/gh/eellison/805/base 2025-08-14T21:43:26.5674353Z * [new branch] gh/eellison/805/head -> origin/gh/eellison/805/head 2025-08-14T21:43:26.5675087Z * [new branch] gh/eellison/805/orig -> origin/gh/eellison/805/orig 2025-08-14T21:43:26.5675621Z * [new branch] gh/eellison/808/base -> origin/gh/eellison/808/base 2025-08-14T21:43:26.5676165Z * [new branch] gh/eellison/808/head -> origin/gh/eellison/808/head 2025-08-14T21:43:26.5676696Z * [new branch] gh/eellison/808/orig -> origin/gh/eellison/808/orig 2025-08-14T21:43:26.5677225Z * [new branch] gh/eellison/809/base -> origin/gh/eellison/809/base 2025-08-14T21:43:26.5677757Z * [new branch] gh/eellison/809/head -> origin/gh/eellison/809/head 2025-08-14T21:43:26.5678279Z * [new branch] gh/eellison/809/orig -> origin/gh/eellison/809/orig 2025-08-14T21:43:26.5678809Z * [new branch] gh/eellison/810/base -> origin/gh/eellison/810/base 2025-08-14T21:43:26.5679341Z * [new branch] gh/eellison/810/head -> origin/gh/eellison/810/head 2025-08-14T21:43:26.5679858Z * [new branch] gh/eellison/810/orig -> origin/gh/eellison/810/orig 2025-08-14T21:43:26.5680382Z * [new branch] gh/eellison/811/base -> origin/gh/eellison/811/base 2025-08-14T21:43:26.5680899Z * [new branch] gh/eellison/811/head -> origin/gh/eellison/811/head 2025-08-14T21:43:26.5681428Z * [new branch] gh/eellison/811/orig -> origin/gh/eellison/811/orig 2025-08-14T21:43:26.5682072Z * [new branch] gh/eellison/812/base -> origin/gh/eellison/812/base 2025-08-14T21:43:26.5682598Z * [new branch] gh/eellison/812/head -> origin/gh/eellison/812/head 2025-08-14T21:43:26.5683133Z * [new branch] gh/eellison/812/orig -> origin/gh/eellison/812/orig 2025-08-14T21:43:26.5683653Z * [new branch] gh/eellison/813/base -> origin/gh/eellison/813/base 2025-08-14T21:43:26.5684190Z * [new branch] gh/eellison/813/head -> origin/gh/eellison/813/head 2025-08-14T21:43:26.5684719Z * [new branch] gh/eellison/813/orig -> origin/gh/eellison/813/orig 2025-08-14T21:43:26.5685226Z * [new branch] gh/etaf/132/base -> origin/gh/etaf/132/base 2025-08-14T21:43:26.5685722Z * [new branch] gh/etaf/132/head -> origin/gh/etaf/132/head 2025-08-14T21:43:26.5686204Z * [new branch] gh/etaf/132/orig -> origin/gh/etaf/132/orig 2025-08-14T21:43:26.5686694Z * [new branch] gh/etaf/138/base -> origin/gh/etaf/138/base 2025-08-14T21:43:26.5687168Z * [new branch] gh/etaf/138/head -> origin/gh/etaf/138/head 2025-08-14T21:43:26.5687652Z * [new branch] gh/etaf/138/orig -> origin/gh/etaf/138/orig 2025-08-14T21:43:26.5688140Z * [new branch] gh/etaf/140/base -> origin/gh/etaf/140/base 2025-08-14T21:43:26.5688615Z * [new branch] gh/etaf/140/head -> origin/gh/etaf/140/head 2025-08-14T21:43:26.5689103Z * [new branch] gh/etaf/140/orig -> origin/gh/etaf/140/orig 2025-08-14T21:43:26.5689581Z * [new branch] gh/etaf/143/base -> origin/gh/etaf/143/base 2025-08-14T21:43:26.5690061Z * [new branch] gh/etaf/143/head -> origin/gh/etaf/143/head 2025-08-14T21:43:26.5690553Z * [new branch] gh/etaf/143/orig -> origin/gh/etaf/143/orig 2025-08-14T21:43:26.5691035Z * [new branch] gh/etaf/147/base -> origin/gh/etaf/147/base 2025-08-14T21:43:26.5691521Z * [new branch] gh/etaf/147/head -> origin/gh/etaf/147/head 2025-08-14T21:43:26.5691992Z * [new branch] gh/etaf/148/base -> origin/gh/etaf/148/base 2025-08-14T21:43:26.5692484Z * [new branch] gh/etaf/148/head -> origin/gh/etaf/148/head 2025-08-14T21:43:26.5693068Z * [new branch] gh/etaf/148/orig -> origin/gh/etaf/148/orig 2025-08-14T21:43:26.5693543Z * [new branch] gh/etaf/149/base -> origin/gh/etaf/149/base 2025-08-14T21:43:26.5694031Z * [new branch] gh/etaf/149/head -> origin/gh/etaf/149/head 2025-08-14T21:43:26.5694511Z * [new branch] gh/etaf/149/orig -> origin/gh/etaf/149/orig 2025-08-14T21:43:26.5695005Z * [new branch] gh/etaf/150/base -> origin/gh/etaf/150/base 2025-08-14T21:43:26.5695488Z * [new branch] gh/etaf/150/head -> origin/gh/etaf/150/head 2025-08-14T21:43:26.5695966Z * [new branch] gh/etaf/150/orig -> origin/gh/etaf/150/orig 2025-08-14T21:43:26.5696446Z * [new branch] gh/etaf/151/base -> origin/gh/etaf/151/base 2025-08-14T21:43:26.6583682Z * [new branch] gh/etaf/151/head -> origin/gh/etaf/151/head 2025-08-14T21:43:26.6584290Z * [new branch] gh/etaf/151/orig -> origin/gh/etaf/151/orig 2025-08-14T21:43:26.6584781Z * [new branch] gh/etaf/152/base -> origin/gh/etaf/152/base 2025-08-14T21:43:26.6585277Z * [new branch] gh/etaf/152/head -> origin/gh/etaf/152/head 2025-08-14T21:43:26.6585772Z * [new branch] gh/etaf/152/orig -> origin/gh/etaf/152/orig 2025-08-14T21:43:26.6586482Z * [new branch] gh/etaf/153/base -> origin/gh/etaf/153/base 2025-08-14T21:43:26.6586975Z * [new branch] gh/etaf/153/head -> origin/gh/etaf/153/head 2025-08-14T21:43:26.6587460Z * [new branch] gh/etaf/153/orig -> origin/gh/etaf/153/orig 2025-08-14T21:43:26.6587964Z * [new branch] gh/etaf/154/base -> origin/gh/etaf/154/base 2025-08-14T21:43:26.6588444Z * [new branch] gh/etaf/154/head -> origin/gh/etaf/154/head 2025-08-14T21:43:26.6588929Z * [new branch] gh/etaf/154/orig -> origin/gh/etaf/154/orig 2025-08-14T21:43:26.6589424Z * [new branch] gh/etaf/155/base -> origin/gh/etaf/155/base 2025-08-14T21:43:26.6589906Z * [new branch] gh/etaf/155/head -> origin/gh/etaf/155/head 2025-08-14T21:43:26.6590385Z * [new branch] gh/etaf/155/orig -> origin/gh/etaf/155/orig 2025-08-14T21:43:26.6590907Z * [new branch] gh/ezyang/2374/base -> origin/gh/ezyang/2374/base 2025-08-14T21:43:26.6591424Z * [new branch] gh/ezyang/2374/head -> origin/gh/ezyang/2374/head 2025-08-14T21:43:26.6591937Z * [new branch] gh/ezyang/2374/orig -> origin/gh/ezyang/2374/orig 2025-08-14T21:43:26.6592444Z * [new branch] gh/ezyang/2973/base -> origin/gh/ezyang/2973/base 2025-08-14T21:43:26.6592963Z * [new branch] gh/ezyang/2973/head -> origin/gh/ezyang/2973/head 2025-08-14T21:43:26.6593486Z * [new branch] gh/ezyang/2973/orig -> origin/gh/ezyang/2973/orig 2025-08-14T21:43:26.6593983Z * [new branch] gh/ezyang/2974/base -> origin/gh/ezyang/2974/base 2025-08-14T21:43:26.6594488Z * [new branch] gh/ezyang/2974/head -> origin/gh/ezyang/2974/head 2025-08-14T21:43:26.6594987Z * [new branch] gh/ezyang/2974/orig -> origin/gh/ezyang/2974/orig 2025-08-14T21:43:26.6595508Z * [new branch] gh/ezyang/3068/base -> origin/gh/ezyang/3068/base 2025-08-14T21:43:26.6596013Z * [new branch] gh/ezyang/3068/head -> origin/gh/ezyang/3068/head 2025-08-14T21:43:26.6596516Z * [new branch] gh/ezyang/3068/orig -> origin/gh/ezyang/3068/orig 2025-08-14T21:43:26.6597030Z * [new branch] gh/ezyang/3071/base -> origin/gh/ezyang/3071/base 2025-08-14T21:43:26.6597668Z * [new branch] gh/ezyang/3071/head -> origin/gh/ezyang/3071/head 2025-08-14T21:43:26.6598188Z * [new branch] gh/ezyang/3071/orig -> origin/gh/ezyang/3071/orig 2025-08-14T21:43:26.6598708Z * [new branch] gh/ezyang/3074/base -> origin/gh/ezyang/3074/base 2025-08-14T21:43:26.6599222Z * [new branch] gh/ezyang/3074/head -> origin/gh/ezyang/3074/head 2025-08-14T21:43:26.6599747Z * [new branch] gh/ezyang/3074/orig -> origin/gh/ezyang/3074/orig 2025-08-14T21:43:26.6600260Z * [new branch] gh/ezyang/3088/base -> origin/gh/ezyang/3088/base 2025-08-14T21:43:26.6600774Z * [new branch] gh/ezyang/3088/head -> origin/gh/ezyang/3088/head 2025-08-14T21:43:26.6601293Z * [new branch] gh/ezyang/3088/orig -> origin/gh/ezyang/3088/orig 2025-08-14T21:43:26.6601798Z * [new branch] gh/ezyang/3092/base -> origin/gh/ezyang/3092/base 2025-08-14T21:43:26.6602321Z * [new branch] gh/ezyang/3092/head -> origin/gh/ezyang/3092/head 2025-08-14T21:43:26.6602825Z * [new branch] gh/ezyang/3092/orig -> origin/gh/ezyang/3092/orig 2025-08-14T21:43:26.6603340Z * [new branch] gh/ezyang/3097/base -> origin/gh/ezyang/3097/base 2025-08-14T21:43:26.6603849Z * [new branch] gh/ezyang/3097/head -> origin/gh/ezyang/3097/head 2025-08-14T21:43:26.6604371Z * [new branch] gh/ezyang/3097/orig -> origin/gh/ezyang/3097/orig 2025-08-14T21:43:26.6604998Z * [new branch] gh/ezyang/3098/base -> origin/gh/ezyang/3098/base 2025-08-14T21:43:26.6605511Z * [new branch] gh/ezyang/3098/head -> origin/gh/ezyang/3098/head 2025-08-14T21:43:26.6606045Z * [new branch] gh/ezyang/3098/orig -> origin/gh/ezyang/3098/orig 2025-08-14T21:43:26.6606561Z * [new branch] gh/ezyang/3099/base -> origin/gh/ezyang/3099/base 2025-08-14T21:43:26.6607093Z * [new branch] gh/ezyang/3099/head -> origin/gh/ezyang/3099/head 2025-08-14T21:43:26.6607613Z * [new branch] gh/ezyang/3099/orig -> origin/gh/ezyang/3099/orig 2025-08-14T21:43:26.7084057Z * [new branch] gh/ezyang/3100/base -> origin/gh/ezyang/3100/base 2025-08-14T21:43:26.7084656Z * [new branch] gh/ezyang/3100/head -> origin/gh/ezyang/3100/head 2025-08-14T21:43:26.7085209Z * [new branch] gh/ezyang/3100/orig -> origin/gh/ezyang/3100/orig 2025-08-14T21:43:26.7085714Z * [new branch] gh/ezyang/3101/base -> origin/gh/ezyang/3101/base 2025-08-14T21:43:26.7086337Z * [new branch] gh/ezyang/3101/head -> origin/gh/ezyang/3101/head 2025-08-14T21:43:26.7086845Z * [new branch] gh/ezyang/3101/orig -> origin/gh/ezyang/3101/orig 2025-08-14T21:43:26.7087457Z * [new branch] gh/ezyang/3102/base -> origin/gh/ezyang/3102/base 2025-08-14T21:43:26.7087970Z * [new branch] gh/ezyang/3102/head -> origin/gh/ezyang/3102/head 2025-08-14T21:43:26.7088479Z * [new branch] gh/ezyang/3102/orig -> origin/gh/ezyang/3102/orig 2025-08-14T21:43:26.7088996Z * [new branch] gh/ezyang/3103/base -> origin/gh/ezyang/3103/base 2025-08-14T21:43:26.7089496Z * [new branch] gh/ezyang/3103/head -> origin/gh/ezyang/3103/head 2025-08-14T21:43:26.7090016Z * [new branch] gh/ezyang/3103/orig -> origin/gh/ezyang/3103/orig 2025-08-14T21:43:26.7090521Z * [new branch] gh/ezyang/3104/base -> origin/gh/ezyang/3104/base 2025-08-14T21:43:26.7091030Z * [new branch] gh/ezyang/3104/head -> origin/gh/ezyang/3104/head 2025-08-14T21:43:26.7091540Z * [new branch] gh/ezyang/3104/orig -> origin/gh/ezyang/3104/orig 2025-08-14T21:43:26.7092043Z * [new branch] gh/ezyang/3105/base -> origin/gh/ezyang/3105/base 2025-08-14T21:43:26.7092914Z * [new branch] gh/ezyang/3105/head -> origin/gh/ezyang/3105/head 2025-08-14T21:43:26.7093432Z * [new branch] gh/ezyang/3105/orig -> origin/gh/ezyang/3105/orig 2025-08-14T21:43:26.7094068Z * [new branch] gh/ezyang/3106/base -> origin/gh/ezyang/3106/base 2025-08-14T21:43:26.7094589Z * [new branch] gh/ezyang/3106/head -> origin/gh/ezyang/3106/head 2025-08-14T21:43:26.7095100Z * [new branch] gh/ezyang/3106/orig -> origin/gh/ezyang/3106/orig 2025-08-14T21:43:26.7095618Z * [new branch] gh/ezyang/3107/base -> origin/gh/ezyang/3107/base 2025-08-14T21:43:26.7096121Z * [new branch] gh/ezyang/3107/head -> origin/gh/ezyang/3107/head 2025-08-14T21:43:26.7096636Z * [new branch] gh/ezyang/3107/orig -> origin/gh/ezyang/3107/orig 2025-08-14T21:43:26.7097171Z * [new branch] gh/ezyang/3108/base -> origin/gh/ezyang/3108/base 2025-08-14T21:43:26.7097675Z * [new branch] gh/ezyang/3108/head -> origin/gh/ezyang/3108/head 2025-08-14T21:43:26.7098185Z * [new branch] gh/ezyang/3108/orig -> origin/gh/ezyang/3108/orig 2025-08-14T21:43:26.7098687Z * [new branch] gh/ezyang/3109/base -> origin/gh/ezyang/3109/base 2025-08-14T21:43:26.7099297Z * [new branch] gh/ezyang/3109/head -> origin/gh/ezyang/3109/head 2025-08-14T21:43:26.7100148Z * [new branch] gh/ezyang/3109/orig -> origin/gh/ezyang/3109/orig 2025-08-14T21:43:26.7100667Z * [new branch] gh/ezyang/3110/base -> origin/gh/ezyang/3110/base 2025-08-14T21:43:26.7101186Z * [new branch] gh/ezyang/3110/head -> origin/gh/ezyang/3110/head 2025-08-14T21:43:26.7101692Z * [new branch] gh/ezyang/3110/orig -> origin/gh/ezyang/3110/orig 2025-08-14T21:43:26.7102218Z * [new branch] gh/ezyang/3111/base -> origin/gh/ezyang/3111/base 2025-08-14T21:43:26.7102718Z * [new branch] gh/ezyang/3111/head -> origin/gh/ezyang/3111/head 2025-08-14T21:43:26.7103232Z * [new branch] gh/ezyang/3111/orig -> origin/gh/ezyang/3111/orig 2025-08-14T21:43:26.7103772Z * [new branch] gh/ezyang/3112/base -> origin/gh/ezyang/3112/base 2025-08-14T21:43:26.7104276Z * [new branch] gh/ezyang/3112/head -> origin/gh/ezyang/3112/head 2025-08-14T21:43:26.7104801Z * [new branch] gh/ezyang/3112/orig -> origin/gh/ezyang/3112/orig 2025-08-14T21:43:26.7105312Z * [new branch] gh/ezyang/3113/base -> origin/gh/ezyang/3113/base 2025-08-14T21:43:26.7105939Z * [new branch] gh/ezyang/3113/head -> origin/gh/ezyang/3113/head 2025-08-14T21:43:26.7106548Z * [new branch] gh/ezyang/3113/orig -> origin/gh/ezyang/3113/orig 2025-08-14T21:43:26.7107061Z * [new branch] gh/ezyang/3114/base -> origin/gh/ezyang/3114/base 2025-08-14T21:43:26.7107572Z * [new branch] gh/ezyang/3114/head -> origin/gh/ezyang/3114/head 2025-08-14T21:43:26.7108073Z * [new branch] gh/ezyang/3114/orig -> origin/gh/ezyang/3114/orig 2025-08-14T21:43:26.7108594Z * [new branch] gh/ezyang/3115/base -> origin/gh/ezyang/3115/base 2025-08-14T21:43:26.7109112Z * [new branch] gh/ezyang/3115/head -> origin/gh/ezyang/3115/head 2025-08-14T21:43:26.7593937Z * [new branch] gh/ezyang/3115/orig -> origin/gh/ezyang/3115/orig 2025-08-14T21:43:26.7594537Z * [new branch] gh/ezyang/3116/base -> origin/gh/ezyang/3116/base 2025-08-14T21:43:26.7595076Z * [new branch] gh/ezyang/3116/head -> origin/gh/ezyang/3116/head 2025-08-14T21:43:26.7597503Z * [new branch] gh/ezyang/3116/orig -> origin/gh/ezyang/3116/orig 2025-08-14T21:43:26.7598261Z * [new branch] gh/ezyang/3117/base -> origin/gh/ezyang/3117/base 2025-08-14T21:43:26.7598773Z * [new branch] gh/ezyang/3117/head -> origin/gh/ezyang/3117/head 2025-08-14T21:43:26.7599290Z * [new branch] gh/ezyang/3117/orig -> origin/gh/ezyang/3117/orig 2025-08-14T21:43:26.7599794Z * [new branch] gh/ezyang/3118/base -> origin/gh/ezyang/3118/base 2025-08-14T21:43:26.7600321Z * [new branch] gh/ezyang/3118/head -> origin/gh/ezyang/3118/head 2025-08-14T21:43:26.7600840Z * [new branch] gh/ezyang/3118/orig -> origin/gh/ezyang/3118/orig 2025-08-14T21:43:26.7601344Z * [new branch] gh/ezyang/3119/base -> origin/gh/ezyang/3119/base 2025-08-14T21:43:26.7603711Z * [new branch] gh/ezyang/3119/head -> origin/gh/ezyang/3119/head 2025-08-14T21:43:26.7604240Z * [new branch] gh/ezyang/3119/orig -> origin/gh/ezyang/3119/orig 2025-08-14T21:43:26.7604758Z * [new branch] gh/ezyang/3120/base -> origin/gh/ezyang/3120/base 2025-08-14T21:43:26.7605281Z * [new branch] gh/ezyang/3120/head -> origin/gh/ezyang/3120/head 2025-08-14T21:43:26.7605787Z * [new branch] gh/ezyang/3120/orig -> origin/gh/ezyang/3120/orig 2025-08-14T21:43:26.7606302Z * [new branch] gh/ezyang/3121/base -> origin/gh/ezyang/3121/base 2025-08-14T21:43:26.7606980Z * [new branch] gh/ezyang/3121/head -> origin/gh/ezyang/3121/head 2025-08-14T21:43:26.7607506Z * [new branch] gh/ezyang/3121/orig -> origin/gh/ezyang/3121/orig 2025-08-14T21:43:26.7608027Z * [new branch] gh/ezyang/3122/base -> origin/gh/ezyang/3122/base 2025-08-14T21:43:26.7610373Z * [new branch] gh/ezyang/3122/head -> origin/gh/ezyang/3122/head 2025-08-14T21:43:26.7610902Z * [new branch] gh/ezyang/3122/orig -> origin/gh/ezyang/3122/orig 2025-08-14T21:43:26.7611407Z * [new branch] gh/ezyang/3123/base -> origin/gh/ezyang/3123/base 2025-08-14T21:43:26.7611911Z * [new branch] gh/ezyang/3123/head -> origin/gh/ezyang/3123/head 2025-08-14T21:43:26.7612425Z * [new branch] gh/ezyang/3123/orig -> origin/gh/ezyang/3123/orig 2025-08-14T21:43:26.7612932Z * [new branch] gh/ezyang/3124/base -> origin/gh/ezyang/3124/base 2025-08-14T21:43:26.7613444Z * [new branch] gh/ezyang/3124/head -> origin/gh/ezyang/3124/head 2025-08-14T21:43:26.7613949Z * [new branch] gh/ezyang/3124/orig -> origin/gh/ezyang/3124/orig 2025-08-14T21:43:26.7616273Z * [new branch] gh/ezyang/3125/base -> origin/gh/ezyang/3125/base 2025-08-14T21:43:26.7616798Z * [new branch] gh/ezyang/3125/head -> origin/gh/ezyang/3125/head 2025-08-14T21:43:26.7617326Z * [new branch] gh/ezyang/3125/orig -> origin/gh/ezyang/3125/orig 2025-08-14T21:43:26.7617840Z * [new branch] gh/ezyang/3126/base -> origin/gh/ezyang/3126/base 2025-08-14T21:43:26.7649677Z * [new branch] gh/ezyang/3126/head -> origin/gh/ezyang/3126/head 2025-08-14T21:43:26.7650238Z * [new branch] gh/ezyang/3126/orig -> origin/gh/ezyang/3126/orig 2025-08-14T21:43:26.7650831Z * [new branch] gh/ezyang/3127/base -> origin/gh/ezyang/3127/base 2025-08-14T21:43:26.7651339Z * [new branch] gh/ezyang/3127/head -> origin/gh/ezyang/3127/head 2025-08-14T21:43:26.7651860Z * [new branch] gh/ezyang/3127/orig -> origin/gh/ezyang/3127/orig 2025-08-14T21:43:26.7652377Z * [new branch] gh/ezyang/3128/base -> origin/gh/ezyang/3128/base 2025-08-14T21:43:26.7652886Z * [new branch] gh/ezyang/3128/head -> origin/gh/ezyang/3128/head 2025-08-14T21:43:26.7655501Z * [new branch] gh/ezyang/3128/orig -> origin/gh/ezyang/3128/orig 2025-08-14T21:43:26.7656040Z * [new branch] gh/ezyang/3129/base -> origin/gh/ezyang/3129/base 2025-08-14T21:43:26.7656563Z * [new branch] gh/ezyang/3129/head -> origin/gh/ezyang/3129/head 2025-08-14T21:43:26.7657071Z * [new branch] gh/ezyang/3129/orig -> origin/gh/ezyang/3129/orig 2025-08-14T21:43:26.7657609Z * [new branch] gh/ezyang/3130/base -> origin/gh/ezyang/3130/base 2025-08-14T21:43:26.7658128Z * [new branch] gh/ezyang/3130/head -> origin/gh/ezyang/3130/head 2025-08-14T21:43:26.7658642Z * [new branch] gh/ezyang/3130/orig -> origin/gh/ezyang/3130/orig 2025-08-14T21:43:26.7659165Z * [new branch] gh/ezyang/3131/base -> origin/gh/ezyang/3131/base 2025-08-14T21:43:26.8117806Z * [new branch] gh/ezyang/3131/head -> origin/gh/ezyang/3131/head 2025-08-14T21:43:26.8118500Z * [new branch] gh/ezyang/3131/orig -> origin/gh/ezyang/3131/orig 2025-08-14T21:43:26.8119131Z * [new branch] gh/ezyang/3132/base -> origin/gh/ezyang/3132/base 2025-08-14T21:43:26.8119652Z * [new branch] gh/ezyang/3132/head -> origin/gh/ezyang/3132/head 2025-08-14T21:43:26.8120171Z * [new branch] gh/ezyang/3132/orig -> origin/gh/ezyang/3132/orig 2025-08-14T21:43:26.8120899Z * [new branch] gh/ezyang/3133/base -> origin/gh/ezyang/3133/base 2025-08-14T21:43:26.8121405Z * [new branch] gh/ezyang/3133/head -> origin/gh/ezyang/3133/head 2025-08-14T21:43:26.8121919Z * [new branch] gh/ezyang/3133/orig -> origin/gh/ezyang/3133/orig 2025-08-14T21:43:26.8122428Z * [new branch] gh/ezyang/3134/base -> origin/gh/ezyang/3134/base 2025-08-14T21:43:26.8122956Z * [new branch] gh/ezyang/3134/head -> origin/gh/ezyang/3134/head 2025-08-14T21:43:26.8123471Z * [new branch] gh/ezyang/3134/orig -> origin/gh/ezyang/3134/orig 2025-08-14T21:43:26.8123972Z * [new branch] gh/ezyang/3135/base -> origin/gh/ezyang/3135/base 2025-08-14T21:43:26.8124590Z * [new branch] gh/ezyang/3135/head -> origin/gh/ezyang/3135/head 2025-08-14T21:43:26.8125102Z * [new branch] gh/ezyang/3135/orig -> origin/gh/ezyang/3135/orig 2025-08-14T21:43:26.8125709Z * [new branch] gh/ezyang/3136/base -> origin/gh/ezyang/3136/base 2025-08-14T21:43:26.8126210Z * [new branch] gh/ezyang/3136/head -> origin/gh/ezyang/3136/head 2025-08-14T21:43:26.8126724Z * [new branch] gh/ezyang/3136/orig -> origin/gh/ezyang/3136/orig 2025-08-14T21:43:26.8127240Z * [new branch] gh/fadara01/1/base -> origin/gh/fadara01/1/base 2025-08-14T21:43:26.8127755Z * [new branch] gh/fadara01/1/head -> origin/gh/fadara01/1/head 2025-08-14T21:43:26.8128263Z * [new branch] gh/fadara01/1/orig -> origin/gh/fadara01/1/orig 2025-08-14T21:43:26.8128763Z * [new branch] gh/fduwjj/168/base -> origin/gh/fduwjj/168/base 2025-08-14T21:43:26.8129271Z * [new branch] gh/fduwjj/168/head -> origin/gh/fduwjj/168/head 2025-08-14T21:43:26.8129782Z * [new branch] gh/fduwjj/168/orig -> origin/gh/fduwjj/168/orig 2025-08-14T21:43:26.8130281Z * [new branch] gh/fduwjj/169/base -> origin/gh/fduwjj/169/base 2025-08-14T21:43:26.8130848Z * [new branch] gh/fduwjj/169/head -> origin/gh/fduwjj/169/head 2025-08-14T21:43:26.8131396Z * [new branch] gh/fduwjj/169/orig -> origin/gh/fduwjj/169/orig 2025-08-14T21:43:26.8132002Z * [new branch] gh/fduwjj/170/base -> origin/gh/fduwjj/170/base 2025-08-14T21:43:26.8132645Z * [new branch] gh/fduwjj/170/head -> origin/gh/fduwjj/170/head 2025-08-14T21:43:26.8133160Z * [new branch] gh/fduwjj/170/orig -> origin/gh/fduwjj/170/orig 2025-08-14T21:43:26.8133676Z * [new branch] gh/fduwjj/171/base -> origin/gh/fduwjj/171/base 2025-08-14T21:43:26.8134184Z * [new branch] gh/fduwjj/171/head -> origin/gh/fduwjj/171/head 2025-08-14T21:43:26.8134703Z * [new branch] gh/fduwjj/171/orig -> origin/gh/fduwjj/171/orig 2025-08-14T21:43:26.8135205Z * [new branch] gh/fduwjj/172/base -> origin/gh/fduwjj/172/base 2025-08-14T21:43:26.8135725Z * [new branch] gh/fduwjj/172/head -> origin/gh/fduwjj/172/head 2025-08-14T21:43:26.8136235Z * [new branch] gh/fduwjj/172/orig -> origin/gh/fduwjj/172/orig 2025-08-14T21:43:26.8136745Z * [new branch] gh/fduwjj/173/base -> origin/gh/fduwjj/173/base 2025-08-14T21:43:26.8137351Z * [new branch] gh/fduwjj/173/head -> origin/gh/fduwjj/173/head 2025-08-14T21:43:26.8137852Z * [new branch] gh/fduwjj/173/orig -> origin/gh/fduwjj/173/orig 2025-08-14T21:43:26.8138466Z * [new branch] gh/fduwjj/174/base -> origin/gh/fduwjj/174/base 2025-08-14T21:43:26.8138988Z * [new branch] gh/fduwjj/174/head -> origin/gh/fduwjj/174/head 2025-08-14T21:43:26.8139616Z * [new branch] gh/fduwjj/174/orig -> origin/gh/fduwjj/174/orig 2025-08-14T21:43:26.8140241Z * [new branch] gh/fduwjj/175/base -> origin/gh/fduwjj/175/base 2025-08-14T21:43:26.8140757Z * [new branch] gh/fduwjj/175/head -> origin/gh/fduwjj/175/head 2025-08-14T21:43:26.8141285Z * [new branch] gh/fduwjj/175/orig -> origin/gh/fduwjj/175/orig 2025-08-14T21:43:26.8141815Z * [new branch] gh/fduwjj/176/base -> origin/gh/fduwjj/176/base 2025-08-14T21:43:26.8142320Z * [new branch] gh/fduwjj/176/head -> origin/gh/fduwjj/176/head 2025-08-14T21:43:26.8142837Z * [new branch] gh/fduwjj/176/orig -> origin/gh/fduwjj/176/orig 2025-08-14T21:43:26.8143338Z * [new branch] gh/fduwjj/177/base -> origin/gh/fduwjj/177/base 2025-08-14T21:43:26.8601337Z * [new branch] gh/fduwjj/177/head -> origin/gh/fduwjj/177/head 2025-08-14T21:43:26.8602053Z * [new branch] gh/fduwjj/177/orig -> origin/gh/fduwjj/177/orig 2025-08-14T21:43:26.8602594Z * [new branch] gh/fduwjj/178/base -> origin/gh/fduwjj/178/base 2025-08-14T21:43:26.8603119Z * [new branch] gh/fduwjj/178/head -> origin/gh/fduwjj/178/head 2025-08-14T21:43:26.8603625Z * [new branch] gh/fduwjj/178/orig -> origin/gh/fduwjj/178/orig 2025-08-14T21:43:26.8604157Z * [new branch] gh/fduwjj/179/base -> origin/gh/fduwjj/179/base 2025-08-14T21:43:26.8604668Z * [new branch] gh/fduwjj/179/head -> origin/gh/fduwjj/179/head 2025-08-14T21:43:26.8605165Z * [new branch] gh/fduwjj/179/orig -> origin/gh/fduwjj/179/orig 2025-08-14T21:43:26.8605673Z * [new branch] gh/fduwjj/180/base -> origin/gh/fduwjj/180/base 2025-08-14T21:43:26.8606180Z * [new branch] gh/fduwjj/180/head -> origin/gh/fduwjj/180/head 2025-08-14T21:43:26.8606696Z * [new branch] gh/fduwjj/180/orig -> origin/gh/fduwjj/180/orig 2025-08-14T21:43:26.8607209Z * [new branch] gh/fduwjj/181/base -> origin/gh/fduwjj/181/base 2025-08-14T21:43:26.8607805Z * [new branch] gh/fduwjj/181/head -> origin/gh/fduwjj/181/head 2025-08-14T21:43:26.8608404Z * [new branch] gh/fduwjj/181/orig -> origin/gh/fduwjj/181/orig 2025-08-14T21:43:26.8609110Z * [new branch] gh/fegin/306/base -> origin/gh/fegin/306/base 2025-08-14T21:43:26.8609623Z * [new branch] gh/fegin/306/head -> origin/gh/fegin/306/head 2025-08-14T21:43:26.8610129Z * [new branch] gh/fegin/306/orig -> origin/gh/fegin/306/orig 2025-08-14T21:43:26.8610624Z * [new branch] gh/fegin/307/base -> origin/gh/fegin/307/base 2025-08-14T21:43:26.8611134Z * [new branch] gh/fegin/307/head -> origin/gh/fegin/307/head 2025-08-14T21:43:26.8611624Z * [new branch] gh/fegin/307/orig -> origin/gh/fegin/307/orig 2025-08-14T21:43:26.8612133Z * [new branch] gh/fffrog/114/base -> origin/gh/fffrog/114/base 2025-08-14T21:43:26.8612632Z * [new branch] gh/fffrog/114/head -> origin/gh/fffrog/114/head 2025-08-14T21:43:26.8613140Z * [new branch] gh/fffrog/114/orig -> origin/gh/fffrog/114/orig 2025-08-14T21:43:26.8613758Z * [new branch] gh/fffrog/117/base -> origin/gh/fffrog/117/base 2025-08-14T21:43:26.8614268Z * [new branch] gh/fffrog/117/head -> origin/gh/fffrog/117/head 2025-08-14T21:43:26.8614873Z * [new branch] gh/fffrog/117/orig -> origin/gh/fffrog/117/orig 2025-08-14T21:43:26.8615368Z * [new branch] gh/fffrog/119/base -> origin/gh/fffrog/119/base 2025-08-14T21:43:26.8616020Z * [new branch] gh/fffrog/119/head -> origin/gh/fffrog/119/head 2025-08-14T21:43:26.8616542Z * [new branch] gh/fffrog/119/orig -> origin/gh/fffrog/119/orig 2025-08-14T21:43:26.8617044Z * [new branch] gh/fffrog/120/base -> origin/gh/fffrog/120/base 2025-08-14T21:43:26.8617557Z * [new branch] gh/fffrog/120/head -> origin/gh/fffrog/120/head 2025-08-14T21:43:26.8618053Z * [new branch] gh/fffrog/120/orig -> origin/gh/fffrog/120/orig 2025-08-14T21:43:26.8618576Z * [new branch] gh/fffrog/121/base -> origin/gh/fffrog/121/base 2025-08-14T21:43:26.8619085Z * [new branch] gh/fffrog/121/head -> origin/gh/fffrog/121/head 2025-08-14T21:43:26.8619586Z * [new branch] gh/fffrog/121/orig -> origin/gh/fffrog/121/orig 2025-08-14T21:43:26.8620311Z * [new branch] gh/fffrog/122/base -> origin/gh/fffrog/122/base 2025-08-14T21:43:26.8620823Z * [new branch] gh/fffrog/122/head -> origin/gh/fffrog/122/head 2025-08-14T21:43:26.8621425Z * [new branch] gh/fffrog/122/orig -> origin/gh/fffrog/122/orig 2025-08-14T21:43:26.8621933Z * [new branch] gh/fffrog/123/base -> origin/gh/fffrog/123/base 2025-08-14T21:43:26.8622432Z * [new branch] gh/fffrog/123/head -> origin/gh/fffrog/123/head 2025-08-14T21:43:26.8622957Z * [new branch] gh/fffrog/123/orig -> origin/gh/fffrog/123/orig 2025-08-14T21:43:26.8623467Z * [new branch] gh/fffrog/124/base -> origin/gh/fffrog/124/base 2025-08-14T21:43:26.8623988Z * [new branch] gh/fffrog/124/head -> origin/gh/fffrog/124/head 2025-08-14T21:43:26.8624500Z * [new branch] gh/fffrog/124/orig -> origin/gh/fffrog/124/orig 2025-08-14T21:43:26.8625020Z * [new branch] gh/fffrog/125/base -> origin/gh/fffrog/125/base 2025-08-14T21:43:26.8625546Z * [new branch] gh/fffrog/125/head -> origin/gh/fffrog/125/head 2025-08-14T21:43:26.8626049Z * [new branch] gh/fffrog/125/orig -> origin/gh/fffrog/125/orig 2025-08-14T21:43:26.9076260Z * [new branch] gh/fffrog/126/base -> origin/gh/fffrog/126/base 2025-08-14T21:43:26.9076830Z * [new branch] gh/fffrog/126/head -> origin/gh/fffrog/126/head 2025-08-14T21:43:26.9077567Z * [new branch] gh/fffrog/126/orig -> origin/gh/fffrog/126/orig 2025-08-14T21:43:26.9078087Z * [new branch] gh/fffrog/127/base -> origin/gh/fffrog/127/base 2025-08-14T21:43:26.9078887Z * [new branch] gh/fffrog/127/head -> origin/gh/fffrog/127/head 2025-08-14T21:43:26.9079402Z * [new branch] gh/fffrog/127/orig -> origin/gh/fffrog/127/orig 2025-08-14T21:43:26.9079907Z * [new branch] gh/fffrog/128/base -> origin/gh/fffrog/128/base 2025-08-14T21:43:26.9080429Z * [new branch] gh/fffrog/128/head -> origin/gh/fffrog/128/head 2025-08-14T21:43:26.9080937Z * [new branch] gh/fffrog/128/orig -> origin/gh/fffrog/128/orig 2025-08-14T21:43:26.9081434Z * [new branch] gh/fffrog/129/base -> origin/gh/fffrog/129/base 2025-08-14T21:43:26.9081940Z * [new branch] gh/fffrog/129/head -> origin/gh/fffrog/129/head 2025-08-14T21:43:26.9082443Z * [new branch] gh/fffrog/129/orig -> origin/gh/fffrog/129/orig 2025-08-14T21:43:26.9082952Z * [new branch] gh/fffrog/130/base -> origin/gh/fffrog/130/base 2025-08-14T21:43:26.9083452Z * [new branch] gh/fffrog/130/head -> origin/gh/fffrog/130/head 2025-08-14T21:43:26.9083957Z * [new branch] gh/fffrog/130/orig -> origin/gh/fffrog/130/orig 2025-08-14T21:43:26.9084713Z * [new branch] gh/fffrog/131/base -> origin/gh/fffrog/131/base 2025-08-14T21:43:26.9085312Z * [new branch] gh/fffrog/131/head -> origin/gh/fffrog/131/head 2025-08-14T21:43:26.9085820Z * [new branch] gh/fffrog/131/orig -> origin/gh/fffrog/131/orig 2025-08-14T21:43:26.9086331Z * [new branch] gh/fffrog/132/base -> origin/gh/fffrog/132/base 2025-08-14T21:43:26.9086843Z * [new branch] gh/fffrog/132/head -> origin/gh/fffrog/132/head 2025-08-14T21:43:26.9087356Z * [new branch] gh/fffrog/132/orig -> origin/gh/fffrog/132/orig 2025-08-14T21:43:26.9087849Z * [new branch] gh/fffrog/133/base -> origin/gh/fffrog/133/base 2025-08-14T21:43:26.9088354Z * [new branch] gh/fffrog/133/head -> origin/gh/fffrog/133/head 2025-08-14T21:43:26.9088857Z * [new branch] gh/fffrog/133/orig -> origin/gh/fffrog/133/orig 2025-08-14T21:43:26.9089370Z * [new branch] gh/fffrog/134/base -> origin/gh/fffrog/134/base 2025-08-14T21:43:26.9089876Z * [new branch] gh/fffrog/134/head -> origin/gh/fffrog/134/head 2025-08-14T21:43:26.9090374Z * [new branch] gh/fffrog/134/orig -> origin/gh/fffrog/134/orig 2025-08-14T21:43:26.9090981Z * [new branch] gh/fffrog/135/base -> origin/gh/fffrog/135/base 2025-08-14T21:43:26.9091579Z * [new branch] gh/fffrog/135/head -> origin/gh/fffrog/135/head 2025-08-14T21:43:26.9092104Z * [new branch] gh/fffrog/135/orig -> origin/gh/fffrog/135/orig 2025-08-14T21:43:26.9092604Z * [new branch] gh/fffrog/136/base -> origin/gh/fffrog/136/base 2025-08-14T21:43:26.9093112Z * [new branch] gh/fffrog/136/head -> origin/gh/fffrog/136/head 2025-08-14T21:43:26.9093620Z * [new branch] gh/fffrog/136/orig -> origin/gh/fffrog/136/orig 2025-08-14T21:43:26.9094126Z * [new branch] gh/fffrog/137/base -> origin/gh/fffrog/137/base 2025-08-14T21:43:26.9094642Z * [new branch] gh/fffrog/137/head -> origin/gh/fffrog/137/head 2025-08-14T21:43:26.9095145Z * [new branch] gh/fffrog/137/orig -> origin/gh/fffrog/137/orig 2025-08-14T21:43:26.9095659Z * [new branch] gh/fffrog/138/base -> origin/gh/fffrog/138/base 2025-08-14T21:43:26.9096180Z * [new branch] gh/fffrog/138/head -> origin/gh/fffrog/138/head 2025-08-14T21:43:26.9096901Z * [new branch] gh/fffrog/138/orig -> origin/gh/fffrog/138/orig 2025-08-14T21:43:26.9097448Z * [new branch] gh/gmagogsfm/1/base -> origin/gh/gmagogsfm/1/base 2025-08-14T21:43:26.9098087Z * [new branch] gh/gmagogsfm/1/head -> origin/gh/gmagogsfm/1/head 2025-08-14T21:43:26.9098633Z * [new branch] gh/gmagogsfm/1/orig -> origin/gh/gmagogsfm/1/orig 2025-08-14T21:43:26.9099188Z * [new branch] gh/gmagogsfm/2/base -> origin/gh/gmagogsfm/2/base 2025-08-14T21:43:26.9099722Z * [new branch] gh/gmagogsfm/2/head -> origin/gh/gmagogsfm/2/head 2025-08-14T21:43:26.9100351Z * [new branch] gh/gmagogsfm/2/orig -> origin/gh/gmagogsfm/2/orig 2025-08-14T21:43:26.9100885Z * [new branch] gh/gmagogsfm/3/base -> origin/gh/gmagogsfm/3/base 2025-08-14T21:43:26.9101441Z * [new branch] gh/gmagogsfm/3/head -> origin/gh/gmagogsfm/3/head 2025-08-14T21:43:26.9101966Z * [new branch] gh/gmagogsfm/3/orig -> origin/gh/gmagogsfm/3/orig 2025-08-14T21:43:26.9555214Z * [new branch] gh/gmagogsfm/4/base -> origin/gh/gmagogsfm/4/base 2025-08-14T21:43:26.9555837Z * [new branch] gh/gmagogsfm/4/head -> origin/gh/gmagogsfm/4/head 2025-08-14T21:43:26.9556367Z * [new branch] gh/gmagogsfm/4/orig -> origin/gh/gmagogsfm/4/orig 2025-08-14T21:43:26.9557163Z * [new branch] gh/guangyey/130/base -> origin/gh/guangyey/130/base 2025-08-14T21:43:26.9557729Z * [new branch] gh/guangyey/130/head -> origin/gh/guangyey/130/head 2025-08-14T21:43:26.9558260Z * [new branch] gh/guangyey/130/orig -> origin/gh/guangyey/130/orig 2025-08-14T21:43:26.9558795Z * [new branch] gh/guangyey/133/base -> origin/gh/guangyey/133/base 2025-08-14T21:43:26.9559328Z * [new branch] gh/guangyey/133/head -> origin/gh/guangyey/133/head 2025-08-14T21:43:26.9559854Z * [new branch] gh/guangyey/133/orig -> origin/gh/guangyey/133/orig 2025-08-14T21:43:26.9560384Z * [new branch] gh/guangyey/134/base -> origin/gh/guangyey/134/base 2025-08-14T21:43:26.9560908Z * [new branch] gh/guangyey/134/head -> origin/gh/guangyey/134/head 2025-08-14T21:43:26.9561443Z * [new branch] gh/guangyey/134/orig -> origin/gh/guangyey/134/orig 2025-08-14T21:43:26.9561962Z * [new branch] gh/guangyey/135/base -> origin/gh/guangyey/135/base 2025-08-14T21:43:26.9562496Z * [new branch] gh/guangyey/135/head -> origin/gh/guangyey/135/head 2025-08-14T21:43:26.9563030Z * [new branch] gh/guangyey/135/orig -> origin/gh/guangyey/135/orig 2025-08-14T21:43:26.9563553Z * [new branch] gh/guangyey/139/base -> origin/gh/guangyey/139/base 2025-08-14T21:43:26.9564101Z * [new branch] gh/guangyey/139/head -> origin/gh/guangyey/139/head 2025-08-14T21:43:26.9564637Z * [new branch] gh/guangyey/139/orig -> origin/gh/guangyey/139/orig 2025-08-14T21:43:26.9565180Z * [new branch] gh/guangyey/140/base -> origin/gh/guangyey/140/base 2025-08-14T21:43:26.9565708Z * [new branch] gh/guangyey/140/head -> origin/gh/guangyey/140/head 2025-08-14T21:43:26.9566243Z * [new branch] gh/guangyey/140/orig -> origin/gh/guangyey/140/orig 2025-08-14T21:43:26.9566770Z * [new branch] gh/guangyey/142/base -> origin/gh/guangyey/142/base 2025-08-14T21:43:26.9567290Z * [new branch] gh/guangyey/142/head -> origin/gh/guangyey/142/head 2025-08-14T21:43:26.9567805Z * [new branch] gh/guangyey/142/orig -> origin/gh/guangyey/142/orig 2025-08-14T21:43:26.9568465Z * [new branch] gh/guangyey/145/base -> origin/gh/guangyey/145/base 2025-08-14T21:43:26.9568993Z * [new branch] gh/guangyey/145/head -> origin/gh/guangyey/145/head 2025-08-14T21:43:26.9569533Z * [new branch] gh/guangyey/145/orig -> origin/gh/guangyey/145/orig 2025-08-14T21:43:26.9570063Z * [new branch] gh/guangyey/153/base -> origin/gh/guangyey/153/base 2025-08-14T21:43:26.9570583Z * [new branch] gh/guangyey/153/head -> origin/gh/guangyey/153/head 2025-08-14T21:43:26.9571126Z * [new branch] gh/guangyey/153/orig -> origin/gh/guangyey/153/orig 2025-08-14T21:43:26.9571651Z * [new branch] gh/guangyey/158/base -> origin/gh/guangyey/158/base 2025-08-14T21:43:26.9572184Z * [new branch] gh/guangyey/158/head -> origin/gh/guangyey/158/head 2025-08-14T21:43:26.9572708Z * [new branch] gh/guangyey/158/orig -> origin/gh/guangyey/158/orig 2025-08-14T21:43:26.9573232Z * [new branch] gh/guangyey/159/base -> origin/gh/guangyey/159/base 2025-08-14T21:43:26.9573764Z * [new branch] gh/guangyey/159/head -> origin/gh/guangyey/159/head 2025-08-14T21:43:26.9574283Z * [new branch] gh/guangyey/159/orig -> origin/gh/guangyey/159/orig 2025-08-14T21:43:26.9574813Z * [new branch] gh/guangyey/163/base -> origin/gh/guangyey/163/base 2025-08-14T21:43:26.9575454Z * [new branch] gh/guangyey/163/head -> origin/gh/guangyey/163/head 2025-08-14T21:43:26.9575978Z * [new branch] gh/guangyey/163/orig -> origin/gh/guangyey/163/orig 2025-08-14T21:43:26.9576509Z * [new branch] gh/guangyey/165/base -> origin/gh/guangyey/165/base 2025-08-14T21:43:26.9577033Z * [new branch] gh/guangyey/165/head -> origin/gh/guangyey/165/head 2025-08-14T21:43:26.9577559Z * [new branch] gh/guangyey/165/orig -> origin/gh/guangyey/165/orig 2025-08-14T21:43:26.9578098Z * [new branch] gh/guangyey/168/base -> origin/gh/guangyey/168/base 2025-08-14T21:43:26.9578627Z * [new branch] gh/guangyey/168/head -> origin/gh/guangyey/168/head 2025-08-14T21:43:26.9579167Z * [new branch] gh/guangyey/168/orig -> origin/gh/guangyey/168/orig 2025-08-14T21:43:26.9579692Z * [new branch] gh/guangyey/169/base -> origin/gh/guangyey/169/base 2025-08-14T21:43:26.9580358Z * [new branch] gh/guangyey/169/head -> origin/gh/guangyey/169/head 2025-08-14T21:43:27.0015838Z * [new branch] gh/guangyey/169/orig -> origin/gh/guangyey/169/orig 2025-08-14T21:43:27.0016452Z * [new branch] gh/guangyey/170/base -> origin/gh/guangyey/170/base 2025-08-14T21:43:27.0017015Z * [new branch] gh/guangyey/170/head -> origin/gh/guangyey/170/head 2025-08-14T21:43:27.0017547Z * [new branch] gh/guangyey/170/orig -> origin/gh/guangyey/170/orig 2025-08-14T21:43:27.0018083Z * [new branch] gh/guangyey/171/base -> origin/gh/guangyey/171/base 2025-08-14T21:43:27.0018614Z * [new branch] gh/guangyey/171/head -> origin/gh/guangyey/171/head 2025-08-14T21:43:27.0019135Z * [new branch] gh/guangyey/171/orig -> origin/gh/guangyey/171/orig 2025-08-14T21:43:27.0019660Z * [new branch] gh/guangyey/172/base -> origin/gh/guangyey/172/base 2025-08-14T21:43:27.0020270Z * [new branch] gh/guangyey/172/head -> origin/gh/guangyey/172/head 2025-08-14T21:43:27.0020803Z * [new branch] gh/guangyey/172/orig -> origin/gh/guangyey/172/orig 2025-08-14T21:43:27.0021328Z * [new branch] gh/guangyey/173/base -> origin/gh/guangyey/173/base 2025-08-14T21:43:27.0021853Z * [new branch] gh/guangyey/173/head -> origin/gh/guangyey/173/head 2025-08-14T21:43:27.0022571Z * [new branch] gh/guangyey/173/orig -> origin/gh/guangyey/173/orig 2025-08-14T21:43:27.0023096Z * [new branch] gh/guangyey/174/base -> origin/gh/guangyey/174/base 2025-08-14T21:43:27.0023622Z * [new branch] gh/guangyey/174/head -> origin/gh/guangyey/174/head 2025-08-14T21:43:27.0024158Z * [new branch] gh/guangyey/174/orig -> origin/gh/guangyey/174/orig 2025-08-14T21:43:27.0024686Z * [new branch] gh/guangyey/175/base -> origin/gh/guangyey/175/base 2025-08-14T21:43:27.0025212Z * [new branch] gh/guangyey/175/head -> origin/gh/guangyey/175/head 2025-08-14T21:43:27.0025735Z * [new branch] gh/guangyey/175/orig -> origin/gh/guangyey/175/orig 2025-08-14T21:43:27.0026261Z * [new branch] gh/guangyey/176/base -> origin/gh/guangyey/176/base 2025-08-14T21:43:27.0026780Z * [new branch] gh/guangyey/176/head -> origin/gh/guangyey/176/head 2025-08-14T21:43:27.0027312Z * [new branch] gh/guangyey/176/orig -> origin/gh/guangyey/176/orig 2025-08-14T21:43:27.0027841Z * [new branch] gh/guangyey/177/base -> origin/gh/guangyey/177/base 2025-08-14T21:43:27.0028362Z * [new branch] gh/guangyey/177/head -> origin/gh/guangyey/177/head 2025-08-14T21:43:27.0028888Z * [new branch] gh/guangyey/177/orig -> origin/gh/guangyey/177/orig 2025-08-14T21:43:27.0029530Z * [new branch] gh/guangyey/178/base -> origin/gh/guangyey/178/base 2025-08-14T21:43:27.0030065Z * [new branch] gh/guangyey/178/head -> origin/gh/guangyey/178/head 2025-08-14T21:43:27.0030601Z * [new branch] gh/guangyey/178/orig -> origin/gh/guangyey/178/orig 2025-08-14T21:43:27.0031126Z * [new branch] gh/guangyey/179/base -> origin/gh/guangyey/179/base 2025-08-14T21:43:27.0031675Z * [new branch] gh/guangyey/179/head -> origin/gh/guangyey/179/head 2025-08-14T21:43:27.0032202Z * [new branch] gh/guangyey/179/orig -> origin/gh/guangyey/179/orig 2025-08-14T21:43:27.0032732Z * [new branch] gh/guangyey/180/base -> origin/gh/guangyey/180/base 2025-08-14T21:43:27.0033260Z * [new branch] gh/guangyey/180/head -> origin/gh/guangyey/180/head 2025-08-14T21:43:27.0033783Z * [new branch] gh/guangyey/180/orig -> origin/gh/guangyey/180/orig 2025-08-14T21:43:27.0034318Z * [new branch] gh/guangyey/181/base -> origin/gh/guangyey/181/base 2025-08-14T21:43:27.0034842Z * [new branch] gh/guangyey/181/head -> origin/gh/guangyey/181/head 2025-08-14T21:43:27.0035376Z * [new branch] gh/guangyey/181/orig -> origin/gh/guangyey/181/orig 2025-08-14T21:43:27.0035905Z * [new branch] gh/guangyey/182/base -> origin/gh/guangyey/182/base 2025-08-14T21:43:27.0036430Z * [new branch] gh/guangyey/182/head -> origin/gh/guangyey/182/head 2025-08-14T21:43:27.0036964Z * [new branch] gh/guangyey/182/orig -> origin/gh/guangyey/182/orig 2025-08-14T21:43:27.0037483Z * [new branch] gh/guangyey/183/base -> origin/gh/guangyey/183/base 2025-08-14T21:43:27.0038018Z * [new branch] gh/guangyey/183/head -> origin/gh/guangyey/183/head 2025-08-14T21:43:27.0038539Z * [new branch] gh/guangyey/183/orig -> origin/gh/guangyey/183/orig 2025-08-14T21:43:27.0039070Z * [new branch] gh/guangyey/184/base -> origin/gh/guangyey/184/base 2025-08-14T21:43:27.0039604Z * [new branch] gh/guangyey/184/head -> origin/gh/guangyey/184/head 2025-08-14T21:43:27.0040127Z * [new branch] gh/guangyey/184/orig -> origin/gh/guangyey/184/orig 2025-08-14T21:43:27.0468377Z * [new branch] gh/guangyey/185/base -> origin/gh/guangyey/185/base 2025-08-14T21:43:27.0469201Z * [new branch] gh/guangyey/185/head -> origin/gh/guangyey/185/head 2025-08-14T21:43:27.0469776Z * [new branch] gh/guangyey/185/orig -> origin/gh/guangyey/185/orig 2025-08-14T21:43:27.0470314Z * [new branch] gh/guangyey/79/base -> origin/gh/guangyey/79/base 2025-08-14T21:43:27.0470838Z * [new branch] gh/guangyey/79/head -> origin/gh/guangyey/79/head 2025-08-14T21:43:27.0471387Z * [new branch] gh/guangyey/79/orig -> origin/gh/guangyey/79/orig 2025-08-14T21:43:27.0471922Z * [new branch] gh/guangyey/89/base -> origin/gh/guangyey/89/base 2025-08-14T21:43:27.0472434Z * [new branch] gh/guangyey/89/head -> origin/gh/guangyey/89/head 2025-08-14T21:43:27.0472959Z * [new branch] gh/guangyey/89/orig -> origin/gh/guangyey/89/orig 2025-08-14T21:43:27.0473524Z * [new branch] gh/guilhermeleobas/107/base -> origin/gh/guilhermeleobas/107/base 2025-08-14T21:43:27.0474151Z * [new branch] gh/guilhermeleobas/107/head -> origin/gh/guilhermeleobas/107/head 2025-08-14T21:43:27.0474772Z * [new branch] gh/guilhermeleobas/107/orig -> origin/gh/guilhermeleobas/107/orig 2025-08-14T21:43:27.0475378Z * [new branch] gh/guilhermeleobas/108/base -> origin/gh/guilhermeleobas/108/base 2025-08-14T21:43:27.0475992Z * [new branch] gh/guilhermeleobas/108/head -> origin/gh/guilhermeleobas/108/head 2025-08-14T21:43:27.0477309Z * [new branch] gh/guilhermeleobas/108/orig -> origin/gh/guilhermeleobas/108/orig 2025-08-14T21:43:27.0477933Z * [new branch] gh/guilhermeleobas/124/base -> origin/gh/guilhermeleobas/124/base 2025-08-14T21:43:27.0478565Z * [new branch] gh/guilhermeleobas/124/head -> origin/gh/guilhermeleobas/124/head 2025-08-14T21:43:27.0479179Z * [new branch] gh/guilhermeleobas/124/orig -> origin/gh/guilhermeleobas/124/orig 2025-08-14T21:43:27.0479801Z * [new branch] gh/guilhermeleobas/147/base -> origin/gh/guilhermeleobas/147/base 2025-08-14T21:43:27.0480409Z * [new branch] gh/guilhermeleobas/147/head -> origin/gh/guilhermeleobas/147/head 2025-08-14T21:43:27.0481032Z * [new branch] gh/guilhermeleobas/147/orig -> origin/gh/guilhermeleobas/147/orig 2025-08-14T21:43:27.0481645Z * [new branch] gh/guilhermeleobas/150/base -> origin/gh/guilhermeleobas/150/base 2025-08-14T21:43:27.0482263Z * [new branch] gh/guilhermeleobas/150/head -> origin/gh/guilhermeleobas/150/head 2025-08-14T21:43:27.0483022Z * [new branch] gh/guilhermeleobas/150/orig -> origin/gh/guilhermeleobas/150/orig 2025-08-14T21:43:27.0483635Z * [new branch] gh/guilhermeleobas/163/base -> origin/gh/guilhermeleobas/163/base 2025-08-14T21:43:27.0484250Z * [new branch] gh/guilhermeleobas/163/head -> origin/gh/guilhermeleobas/163/head 2025-08-14T21:43:27.0484867Z * [new branch] gh/guilhermeleobas/163/orig -> origin/gh/guilhermeleobas/163/orig 2025-08-14T21:43:27.0485493Z * [new branch] gh/guilhermeleobas/164/base -> origin/gh/guilhermeleobas/164/base 2025-08-14T21:43:27.0486110Z * [new branch] gh/guilhermeleobas/164/head -> origin/gh/guilhermeleobas/164/head 2025-08-14T21:43:27.0486719Z * [new branch] gh/guilhermeleobas/164/orig -> origin/gh/guilhermeleobas/164/orig 2025-08-14T21:43:27.0487351Z * [new branch] gh/guilhermeleobas/165/base -> origin/gh/guilhermeleobas/165/base 2025-08-14T21:43:27.0487954Z * [new branch] gh/guilhermeleobas/165/head -> origin/gh/guilhermeleobas/165/head 2025-08-14T21:43:27.0488558Z * [new branch] gh/guilhermeleobas/165/orig -> origin/gh/guilhermeleobas/165/orig 2025-08-14T21:43:27.0489169Z * [new branch] gh/guilhermeleobas/166/base -> origin/gh/guilhermeleobas/166/base 2025-08-14T21:43:27.0489887Z * [new branch] gh/guilhermeleobas/166/head -> origin/gh/guilhermeleobas/166/head 2025-08-14T21:43:27.0490516Z * [new branch] gh/guilhermeleobas/166/orig -> origin/gh/guilhermeleobas/166/orig 2025-08-14T21:43:27.0491129Z * [new branch] gh/guilhermeleobas/167/base -> origin/gh/guilhermeleobas/167/base 2025-08-14T21:43:27.0491752Z * [new branch] gh/guilhermeleobas/167/head -> origin/gh/guilhermeleobas/167/head 2025-08-14T21:43:27.0492374Z * [new branch] gh/guilhermeleobas/167/orig -> origin/gh/guilhermeleobas/167/orig 2025-08-14T21:43:27.0492993Z * [new branch] gh/guilhermeleobas/168/base -> origin/gh/guilhermeleobas/168/base 2025-08-14T21:43:27.0493601Z * [new branch] gh/guilhermeleobas/168/head -> origin/gh/guilhermeleobas/168/head 2025-08-14T21:43:27.0494211Z * [new branch] gh/guilhermeleobas/168/orig -> origin/gh/guilhermeleobas/168/orig 2025-08-14T21:43:27.0494826Z * [new branch] gh/guilhermeleobas/169/base -> origin/gh/guilhermeleobas/169/base 2025-08-14T21:43:27.0495451Z * [new branch] gh/guilhermeleobas/169/head -> origin/gh/guilhermeleobas/169/head 2025-08-14T21:43:27.0919524Z * [new branch] gh/guilhermeleobas/169/orig -> origin/gh/guilhermeleobas/169/orig 2025-08-14T21:43:27.0920205Z * [new branch] gh/guilhermeleobas/170/base -> origin/gh/guilhermeleobas/170/base 2025-08-14T21:43:27.0921480Z * [new branch] gh/guilhermeleobas/170/head -> origin/gh/guilhermeleobas/170/head 2025-08-14T21:43:27.0922094Z * [new branch] gh/guilhermeleobas/170/orig -> origin/gh/guilhermeleobas/170/orig 2025-08-14T21:43:27.0922715Z * [new branch] gh/guilhermeleobas/171/base -> origin/gh/guilhermeleobas/171/base 2025-08-14T21:43:27.0923323Z * [new branch] gh/guilhermeleobas/171/head -> origin/gh/guilhermeleobas/171/head 2025-08-14T21:43:27.0923948Z * [new branch] gh/guilhermeleobas/171/orig -> origin/gh/guilhermeleobas/171/orig 2025-08-14T21:43:27.0924563Z * [new branch] gh/guilhermeleobas/173/base -> origin/gh/guilhermeleobas/173/base 2025-08-14T21:43:27.0925171Z * [new branch] gh/guilhermeleobas/173/head -> origin/gh/guilhermeleobas/173/head 2025-08-14T21:43:27.0925786Z * [new branch] gh/guilhermeleobas/173/orig -> origin/gh/guilhermeleobas/173/orig 2025-08-14T21:43:27.0926386Z * [new branch] gh/guilhermeleobas/181/base -> origin/gh/guilhermeleobas/181/base 2025-08-14T21:43:27.0927012Z * [new branch] gh/guilhermeleobas/181/head -> origin/gh/guilhermeleobas/181/head 2025-08-14T21:43:27.0927625Z * [new branch] gh/guilhermeleobas/181/orig -> origin/gh/guilhermeleobas/181/orig 2025-08-14T21:43:27.0928227Z * [new branch] gh/guilhermeleobas/182/base -> origin/gh/guilhermeleobas/182/base 2025-08-14T21:43:27.0928838Z * [new branch] gh/guilhermeleobas/182/head -> origin/gh/guilhermeleobas/182/head 2025-08-14T21:43:27.0929453Z * [new branch] gh/guilhermeleobas/182/orig -> origin/gh/guilhermeleobas/182/orig 2025-08-14T21:43:27.0930078Z * [new branch] gh/guilhermeleobas/183/base -> origin/gh/guilhermeleobas/183/base 2025-08-14T21:43:27.0930692Z * [new branch] gh/guilhermeleobas/183/head -> origin/gh/guilhermeleobas/183/head 2025-08-14T21:43:27.0931302Z * [new branch] gh/guilhermeleobas/183/orig -> origin/gh/guilhermeleobas/183/orig 2025-08-14T21:43:27.0931925Z * [new branch] gh/guilhermeleobas/184/base -> origin/gh/guilhermeleobas/184/base 2025-08-14T21:43:27.0932528Z * [new branch] gh/guilhermeleobas/184/head -> origin/gh/guilhermeleobas/184/head 2025-08-14T21:43:27.0933147Z * [new branch] gh/guilhermeleobas/184/orig -> origin/gh/guilhermeleobas/184/orig 2025-08-14T21:43:27.0933760Z * [new branch] gh/guilhermeleobas/185/base -> origin/gh/guilhermeleobas/185/base 2025-08-14T21:43:27.0935130Z * [new branch] gh/guilhermeleobas/185/head -> origin/gh/guilhermeleobas/185/head 2025-08-14T21:43:27.0935764Z * [new branch] gh/guilhermeleobas/185/orig -> origin/gh/guilhermeleobas/185/orig 2025-08-14T21:43:27.0936367Z * [new branch] gh/guilhermeleobas/188/base -> origin/gh/guilhermeleobas/188/base 2025-08-14T21:43:27.0936993Z * [new branch] gh/guilhermeleobas/188/head -> origin/gh/guilhermeleobas/188/head 2025-08-14T21:43:27.0937616Z * [new branch] gh/guilhermeleobas/188/orig -> origin/gh/guilhermeleobas/188/orig 2025-08-14T21:43:27.0938221Z * [new branch] gh/guilhermeleobas/189/base -> origin/gh/guilhermeleobas/189/base 2025-08-14T21:43:27.0938836Z * [new branch] gh/guilhermeleobas/189/head -> origin/gh/guilhermeleobas/189/head 2025-08-14T21:43:27.0939440Z * [new branch] gh/guilhermeleobas/189/orig -> origin/gh/guilhermeleobas/189/orig 2025-08-14T21:43:27.0940138Z * [new branch] gh/guilhermeleobas/190/base -> origin/gh/guilhermeleobas/190/base 2025-08-14T21:43:27.0940745Z * [new branch] gh/guilhermeleobas/190/head -> origin/gh/guilhermeleobas/190/head 2025-08-14T21:43:27.0941372Z * [new branch] gh/guilhermeleobas/190/orig -> origin/gh/guilhermeleobas/190/orig 2025-08-14T21:43:27.0941993Z * [new branch] gh/guilhermeleobas/192/base -> origin/gh/guilhermeleobas/192/base 2025-08-14T21:43:27.0942942Z * [new branch] gh/guilhermeleobas/192/head -> origin/gh/guilhermeleobas/192/head 2025-08-14T21:43:27.0943571Z * [new branch] gh/guilhermeleobas/192/orig -> origin/gh/guilhermeleobas/192/orig 2025-08-14T21:43:27.0944173Z * [new branch] gh/guilhermeleobas/193/base -> origin/gh/guilhermeleobas/193/base 2025-08-14T21:43:27.0944784Z * [new branch] gh/guilhermeleobas/193/head -> origin/gh/guilhermeleobas/193/head 2025-08-14T21:43:27.0945400Z * [new branch] gh/guilhermeleobas/193/orig -> origin/gh/guilhermeleobas/193/orig 2025-08-14T21:43:27.0946015Z * [new branch] gh/guilhermeleobas/194/base -> origin/gh/guilhermeleobas/194/base 2025-08-14T21:43:27.0946629Z * [new branch] gh/guilhermeleobas/194/head -> origin/gh/guilhermeleobas/194/head 2025-08-14T21:43:27.0947238Z * [new branch] gh/guilhermeleobas/194/orig -> origin/gh/guilhermeleobas/194/orig 2025-08-14T21:43:27.1343563Z * [new branch] gh/guilhermeleobas/203/base -> origin/gh/guilhermeleobas/203/base 2025-08-14T21:43:27.1344240Z * [new branch] gh/guilhermeleobas/203/head -> origin/gh/guilhermeleobas/203/head 2025-08-14T21:43:27.1344859Z * [new branch] gh/guilhermeleobas/203/orig -> origin/gh/guilhermeleobas/203/orig 2025-08-14T21:43:27.1345481Z * [new branch] gh/guilhermeleobas/204/base -> origin/gh/guilhermeleobas/204/base 2025-08-14T21:43:27.1346136Z * [new branch] gh/guilhermeleobas/204/head -> origin/gh/guilhermeleobas/204/head 2025-08-14T21:43:27.1346746Z * [new branch] gh/guilhermeleobas/204/orig -> origin/gh/guilhermeleobas/204/orig 2025-08-14T21:43:27.1347361Z * [new branch] gh/guilhermeleobas/205/base -> origin/gh/guilhermeleobas/205/base 2025-08-14T21:43:27.1347964Z * [new branch] gh/guilhermeleobas/205/head -> origin/gh/guilhermeleobas/205/head 2025-08-14T21:43:27.1348580Z * [new branch] gh/guilhermeleobas/205/orig -> origin/gh/guilhermeleobas/205/orig 2025-08-14T21:43:27.1349207Z * [new branch] gh/guilhermeleobas/206/base -> origin/gh/guilhermeleobas/206/base 2025-08-14T21:43:27.1349811Z * [new branch] gh/guilhermeleobas/206/head -> origin/gh/guilhermeleobas/206/head 2025-08-14T21:43:27.1350425Z * [new branch] gh/guilhermeleobas/206/orig -> origin/gh/guilhermeleobas/206/orig 2025-08-14T21:43:27.1351135Z * [new branch] gh/guilhermeleobas/207/base -> origin/gh/guilhermeleobas/207/base 2025-08-14T21:43:27.1352012Z * [new branch] gh/guilhermeleobas/207/head -> origin/gh/guilhermeleobas/207/head 2025-08-14T21:43:27.1352738Z * [new branch] gh/guilhermeleobas/207/orig -> origin/gh/guilhermeleobas/207/orig 2025-08-14T21:43:27.1353346Z * [new branch] gh/guilhermeleobas/208/base -> origin/gh/guilhermeleobas/208/base 2025-08-14T21:43:27.1353970Z * [new branch] gh/guilhermeleobas/208/head -> origin/gh/guilhermeleobas/208/head 2025-08-14T21:43:27.1354587Z * [new branch] gh/guilhermeleobas/208/orig -> origin/gh/guilhermeleobas/208/orig 2025-08-14T21:43:27.1355205Z * [new branch] gh/guilhermeleobas/209/base -> origin/gh/guilhermeleobas/209/base 2025-08-14T21:43:27.1355819Z * [new branch] gh/guilhermeleobas/209/head -> origin/gh/guilhermeleobas/209/head 2025-08-14T21:43:27.1356426Z * [new branch] gh/guilhermeleobas/209/orig -> origin/gh/guilhermeleobas/209/orig 2025-08-14T21:43:27.1357046Z * [new branch] gh/guilhermeleobas/210/base -> origin/gh/guilhermeleobas/210/base 2025-08-14T21:43:27.1357647Z * [new branch] gh/guilhermeleobas/210/head -> origin/gh/guilhermeleobas/210/head 2025-08-14T21:43:27.1358261Z * [new branch] gh/guilhermeleobas/210/orig -> origin/gh/guilhermeleobas/210/orig 2025-08-14T21:43:27.1359030Z * [new branch] gh/guilhermeleobas/211/base -> origin/gh/guilhermeleobas/211/base 2025-08-14T21:43:27.1360127Z * [new branch] gh/guilhermeleobas/211/head -> origin/gh/guilhermeleobas/211/head 2025-08-14T21:43:27.1360747Z * [new branch] gh/guilhermeleobas/211/orig -> origin/gh/guilhermeleobas/211/orig 2025-08-14T21:43:27.1361364Z * [new branch] gh/guilhermeleobas/212/base -> origin/gh/guilhermeleobas/212/base 2025-08-14T21:43:27.1361991Z * [new branch] gh/guilhermeleobas/212/head -> origin/gh/guilhermeleobas/212/head 2025-08-14T21:43:27.1362618Z * [new branch] gh/guilhermeleobas/212/orig -> origin/gh/guilhermeleobas/212/orig 2025-08-14T21:43:27.1363231Z * [new branch] gh/guilhermeleobas/213/base -> origin/gh/guilhermeleobas/213/base 2025-08-14T21:43:27.1363841Z * [new branch] gh/guilhermeleobas/213/head -> origin/gh/guilhermeleobas/213/head 2025-08-14T21:43:27.1364446Z * [new branch] gh/guilhermeleobas/213/orig -> origin/gh/guilhermeleobas/213/orig 2025-08-14T21:43:27.1365085Z * [new branch] gh/guilhermeleobas/214/base -> origin/gh/guilhermeleobas/214/base 2025-08-14T21:43:27.1365696Z * [new branch] gh/guilhermeleobas/214/head -> origin/gh/guilhermeleobas/214/head 2025-08-14T21:43:27.1366298Z * [new branch] gh/guilhermeleobas/214/orig -> origin/gh/guilhermeleobas/214/orig 2025-08-14T21:43:27.1366914Z * [new branch] gh/guilhermeleobas/215/base -> origin/gh/guilhermeleobas/215/base 2025-08-14T21:43:27.1367526Z * [new branch] gh/guilhermeleobas/215/head -> origin/gh/guilhermeleobas/215/head 2025-08-14T21:43:27.1368254Z * [new branch] gh/guilhermeleobas/215/orig -> origin/gh/guilhermeleobas/215/orig 2025-08-14T21:43:27.1368969Z * [new branch] gh/guilhermeleobas/216/base -> origin/gh/guilhermeleobas/216/base 2025-08-14T21:43:27.1369673Z * [new branch] gh/guilhermeleobas/216/head -> origin/gh/guilhermeleobas/216/head 2025-08-14T21:43:27.1370291Z * [new branch] gh/guilhermeleobas/216/orig -> origin/gh/guilhermeleobas/216/orig 2025-08-14T21:43:27.1370898Z * [new branch] gh/guilhermeleobas/217/base -> origin/gh/guilhermeleobas/217/base 2025-08-14T21:43:27.1909177Z * [new branch] gh/guilhermeleobas/217/head -> origin/gh/guilhermeleobas/217/head 2025-08-14T21:43:27.1909889Z * [new branch] gh/guilhermeleobas/217/orig -> origin/gh/guilhermeleobas/217/orig 2025-08-14T21:43:27.1910720Z * [new branch] gh/guilhermeleobas/218/base -> origin/gh/guilhermeleobas/218/base 2025-08-14T21:43:27.1911368Z * [new branch] gh/guilhermeleobas/218/head -> origin/gh/guilhermeleobas/218/head 2025-08-14T21:43:27.1911978Z * [new branch] gh/guilhermeleobas/218/orig -> origin/gh/guilhermeleobas/218/orig 2025-08-14T21:43:27.1912592Z * [new branch] gh/guilhermeleobas/219/base -> origin/gh/guilhermeleobas/219/base 2025-08-14T21:43:27.1913209Z * [new branch] gh/guilhermeleobas/219/head -> origin/gh/guilhermeleobas/219/head 2025-08-14T21:43:27.1913829Z * [new branch] gh/guilhermeleobas/219/orig -> origin/gh/guilhermeleobas/219/orig 2025-08-14T21:43:27.1914438Z * [new branch] gh/guilhermeleobas/220/base -> origin/gh/guilhermeleobas/220/base 2025-08-14T21:43:27.1915040Z * [new branch] gh/guilhermeleobas/220/head -> origin/gh/guilhermeleobas/220/head 2025-08-14T21:43:27.1915651Z * [new branch] gh/guilhermeleobas/220/orig -> origin/gh/guilhermeleobas/220/orig 2025-08-14T21:43:27.1916266Z * [new branch] gh/guilhermeleobas/221/base -> origin/gh/guilhermeleobas/221/base 2025-08-14T21:43:27.1916873Z * [new branch] gh/guilhermeleobas/221/head -> origin/gh/guilhermeleobas/221/head 2025-08-14T21:43:27.1917487Z * [new branch] gh/guilhermeleobas/221/orig -> origin/gh/guilhermeleobas/221/orig 2025-08-14T21:43:27.1918090Z * [new branch] gh/guilhermeleobas/222/base -> origin/gh/guilhermeleobas/222/base 2025-08-14T21:43:27.1919211Z * [new branch] gh/guilhermeleobas/222/head -> origin/gh/guilhermeleobas/222/head 2025-08-14T21:43:27.1919823Z * [new branch] gh/guilhermeleobas/222/orig -> origin/gh/guilhermeleobas/222/orig 2025-08-14T21:43:27.1920431Z * [new branch] gh/guilhermeleobas/223/base -> origin/gh/guilhermeleobas/223/base 2025-08-14T21:43:27.1921056Z * [new branch] gh/guilhermeleobas/223/head -> origin/gh/guilhermeleobas/223/head 2025-08-14T21:43:27.1921673Z * [new branch] gh/guilhermeleobas/223/orig -> origin/gh/guilhermeleobas/223/orig 2025-08-14T21:43:27.1922291Z * [new branch] gh/guilhermeleobas/224/base -> origin/gh/guilhermeleobas/224/base 2025-08-14T21:43:27.1922914Z * [new branch] gh/guilhermeleobas/224/head -> origin/gh/guilhermeleobas/224/head 2025-08-14T21:43:27.1923530Z * [new branch] gh/guilhermeleobas/224/orig -> origin/gh/guilhermeleobas/224/orig 2025-08-14T21:43:27.1924150Z * [new branch] gh/guilhermeleobas/225/base -> origin/gh/guilhermeleobas/225/base 2025-08-14T21:43:27.1924758Z * [new branch] gh/guilhermeleobas/225/head -> origin/gh/guilhermeleobas/225/head 2025-08-14T21:43:27.1925372Z * [new branch] gh/guilhermeleobas/225/orig -> origin/gh/guilhermeleobas/225/orig 2025-08-14T21:43:27.1925982Z * [new branch] gh/guilhermeleobas/226/base -> origin/gh/guilhermeleobas/226/base 2025-08-14T21:43:27.1926729Z * [new branch] gh/guilhermeleobas/226/head -> origin/gh/guilhermeleobas/226/head 2025-08-14T21:43:27.1927351Z * [new branch] gh/guilhermeleobas/226/orig -> origin/gh/guilhermeleobas/226/orig 2025-08-14T21:43:27.1927960Z * [new branch] gh/guilhermeleobas/227/base -> origin/gh/guilhermeleobas/227/base 2025-08-14T21:43:27.1928575Z * [new branch] gh/guilhermeleobas/227/head -> origin/gh/guilhermeleobas/227/head 2025-08-14T21:43:27.1929196Z * [new branch] gh/guilhermeleobas/227/orig -> origin/gh/guilhermeleobas/227/orig 2025-08-14T21:43:27.1929815Z * [new branch] gh/guilhermeleobas/228/base -> origin/gh/guilhermeleobas/228/base 2025-08-14T21:43:27.1930433Z * [new branch] gh/guilhermeleobas/228/head -> origin/gh/guilhermeleobas/228/head 2025-08-14T21:43:27.1931043Z * [new branch] gh/guilhermeleobas/228/orig -> origin/gh/guilhermeleobas/228/orig 2025-08-14T21:43:27.1931765Z * [new branch] gh/guilhermeleobas/229/base -> origin/gh/guilhermeleobas/229/base 2025-08-14T21:43:27.1932387Z * [new branch] gh/guilhermeleobas/229/head -> origin/gh/guilhermeleobas/229/head 2025-08-14T21:43:27.1933001Z * [new branch] gh/guilhermeleobas/229/orig -> origin/gh/guilhermeleobas/229/orig 2025-08-14T21:43:27.1933623Z * [new branch] gh/guilhermeleobas/230/base -> origin/gh/guilhermeleobas/230/base 2025-08-14T21:43:27.1934234Z * [new branch] gh/guilhermeleobas/230/head -> origin/gh/guilhermeleobas/230/head 2025-08-14T21:43:27.1934852Z * [new branch] gh/guilhermeleobas/230/orig -> origin/gh/guilhermeleobas/230/orig 2025-08-14T21:43:27.1935471Z * [new branch] gh/guilhermeleobas/231/base -> origin/gh/guilhermeleobas/231/base 2025-08-14T21:43:27.1936076Z * [new branch] gh/guilhermeleobas/231/head -> origin/gh/guilhermeleobas/231/head 2025-08-14T21:43:27.2563727Z * [new branch] gh/guilhermeleobas/231/orig -> origin/gh/guilhermeleobas/231/orig 2025-08-14T21:43:27.2564401Z * [new branch] gh/guilhermeleobas/232/base -> origin/gh/guilhermeleobas/232/base 2025-08-14T21:43:27.2565038Z * [new branch] gh/guilhermeleobas/232/head -> origin/gh/guilhermeleobas/232/head 2025-08-14T21:43:27.2565671Z * [new branch] gh/guilhermeleobas/232/orig -> origin/gh/guilhermeleobas/232/orig 2025-08-14T21:43:27.2566876Z * [new branch] gh/guilhermeleobas/233/base -> origin/gh/guilhermeleobas/233/base 2025-08-14T21:43:27.2567498Z * [new branch] gh/guilhermeleobas/233/head -> origin/gh/guilhermeleobas/233/head 2025-08-14T21:43:27.2568122Z * [new branch] gh/guilhermeleobas/233/orig -> origin/gh/guilhermeleobas/233/orig 2025-08-14T21:43:27.2568736Z * [new branch] gh/guilhermeleobas/73/base -> origin/gh/guilhermeleobas/73/base 2025-08-14T21:43:27.2569352Z * [new branch] gh/guilhermeleobas/73/head -> origin/gh/guilhermeleobas/73/head 2025-08-14T21:43:27.2569951Z * [new branch] gh/guilhermeleobas/73/orig -> origin/gh/guilhermeleobas/73/orig 2025-08-14T21:43:27.2570544Z * [new branch] gh/henrylhtsang/103/base -> origin/gh/henrylhtsang/103/base 2025-08-14T21:43:27.2571125Z * [new branch] gh/henrylhtsang/103/head -> origin/gh/henrylhtsang/103/head 2025-08-14T21:43:27.2571692Z * [new branch] gh/henrylhtsang/103/orig -> origin/gh/henrylhtsang/103/orig 2025-08-14T21:43:27.2572278Z * [new branch] gh/henrylhtsang/108/base -> origin/gh/henrylhtsang/108/base 2025-08-14T21:43:27.2572845Z * [new branch] gh/henrylhtsang/108/head -> origin/gh/henrylhtsang/108/head 2025-08-14T21:43:27.2573428Z * [new branch] gh/henrylhtsang/108/orig -> origin/gh/henrylhtsang/108/orig 2025-08-14T21:43:27.2573989Z * [new branch] gh/henrylhtsang/118/base -> origin/gh/henrylhtsang/118/base 2025-08-14T21:43:27.2574571Z * [new branch] gh/henrylhtsang/118/head -> origin/gh/henrylhtsang/118/head 2025-08-14T21:43:27.2575140Z * [new branch] gh/henrylhtsang/118/orig -> origin/gh/henrylhtsang/118/orig 2025-08-14T21:43:27.2575706Z * [new branch] gh/henrylhtsang/123/base -> origin/gh/henrylhtsang/123/base 2025-08-14T21:43:27.2576273Z * [new branch] gh/henrylhtsang/123/head -> origin/gh/henrylhtsang/123/head 2025-08-14T21:43:27.2576841Z * [new branch] gh/henrylhtsang/123/orig -> origin/gh/henrylhtsang/123/orig 2025-08-14T21:43:27.2577419Z * [new branch] gh/henrylhtsang/124/base -> origin/gh/henrylhtsang/124/base 2025-08-14T21:43:27.2577996Z * [new branch] gh/henrylhtsang/124/head -> origin/gh/henrylhtsang/124/head 2025-08-14T21:43:27.2578562Z * [new branch] gh/henrylhtsang/124/orig -> origin/gh/henrylhtsang/124/orig 2025-08-14T21:43:27.2579253Z * [new branch] gh/henrylhtsang/125/base -> origin/gh/henrylhtsang/125/base 2025-08-14T21:43:27.2579915Z * [new branch] gh/henrylhtsang/125/head -> origin/gh/henrylhtsang/125/head 2025-08-14T21:43:27.2580495Z * [new branch] gh/henrylhtsang/125/orig -> origin/gh/henrylhtsang/125/orig 2025-08-14T21:43:27.2581072Z * [new branch] gh/henrylhtsang/126/base -> origin/gh/henrylhtsang/126/base 2025-08-14T21:43:27.2581641Z * [new branch] gh/henrylhtsang/126/head -> origin/gh/henrylhtsang/126/head 2025-08-14T21:43:27.2582221Z * [new branch] gh/henrylhtsang/126/orig -> origin/gh/henrylhtsang/126/orig 2025-08-14T21:43:27.2582791Z * [new branch] gh/henrylhtsang/127/base -> origin/gh/henrylhtsang/127/base 2025-08-14T21:43:27.2583374Z * [new branch] gh/henrylhtsang/127/head -> origin/gh/henrylhtsang/127/head 2025-08-14T21:43:27.2583950Z * [new branch] gh/henrylhtsang/127/orig -> origin/gh/henrylhtsang/127/orig 2025-08-14T21:43:27.2584521Z * [new branch] gh/henrylhtsang/128/base -> origin/gh/henrylhtsang/128/base 2025-08-14T21:43:27.2585101Z * [new branch] gh/henrylhtsang/128/head -> origin/gh/henrylhtsang/128/head 2025-08-14T21:43:27.2585668Z * [new branch] gh/henrylhtsang/128/orig -> origin/gh/henrylhtsang/128/orig 2025-08-14T21:43:27.2586240Z * [new branch] gh/henrylhtsang/129/base -> origin/gh/henrylhtsang/129/base 2025-08-14T21:43:27.2587221Z * [new branch] gh/henrylhtsang/129/head -> origin/gh/henrylhtsang/129/head 2025-08-14T21:43:27.2587797Z * [new branch] gh/henrylhtsang/129/orig -> origin/gh/henrylhtsang/129/orig 2025-08-14T21:43:27.2588376Z * [new branch] gh/henrylhtsang/130/base -> origin/gh/henrylhtsang/130/base 2025-08-14T21:43:27.2588948Z * [new branch] gh/henrylhtsang/130/head -> origin/gh/henrylhtsang/130/head 2025-08-14T21:43:27.2589538Z * [new branch] gh/henrylhtsang/131/base -> origin/gh/henrylhtsang/131/base 2025-08-14T21:43:27.2590110Z * [new branch] gh/henrylhtsang/131/head -> origin/gh/henrylhtsang/131/head 2025-08-14T21:43:27.3018382Z * [new branch] gh/henrylhtsang/131/orig -> origin/gh/henrylhtsang/131/orig 2025-08-14T21:43:27.3019027Z * [new branch] gh/henrylhtsang/132/base -> origin/gh/henrylhtsang/132/base 2025-08-14T21:43:27.3019626Z * [new branch] gh/henrylhtsang/132/head -> origin/gh/henrylhtsang/132/head 2025-08-14T21:43:27.3020249Z * [new branch] gh/henrylhtsang/132/orig -> origin/gh/henrylhtsang/132/orig 2025-08-14T21:43:27.3020821Z * [new branch] gh/henrylhtsang/133/base -> origin/gh/henrylhtsang/133/base 2025-08-14T21:43:27.3021385Z * [new branch] gh/henrylhtsang/133/head -> origin/gh/henrylhtsang/133/head 2025-08-14T21:43:27.3021956Z * [new branch] gh/henrylhtsang/133/orig -> origin/gh/henrylhtsang/133/orig 2025-08-14T21:43:27.3022758Z * [new branch] gh/henrylhtsang/134/base -> origin/gh/henrylhtsang/134/base 2025-08-14T21:43:27.3023350Z * [new branch] gh/henrylhtsang/134/head -> origin/gh/henrylhtsang/134/head 2025-08-14T21:43:27.3023932Z * [new branch] gh/henrylhtsang/134/orig -> origin/gh/henrylhtsang/134/orig 2025-08-14T21:43:27.3024507Z * [new branch] gh/henrylhtsang/135/base -> origin/gh/henrylhtsang/135/base 2025-08-14T21:43:27.3025094Z * [new branch] gh/henrylhtsang/135/head -> origin/gh/henrylhtsang/135/head 2025-08-14T21:43:27.3025653Z * [new branch] gh/henrylhtsang/135/orig -> origin/gh/henrylhtsang/135/orig 2025-08-14T21:43:27.3026225Z * [new branch] gh/henrylhtsang/136/base -> origin/gh/henrylhtsang/136/base 2025-08-14T21:43:27.3026791Z * [new branch] gh/henrylhtsang/136/head -> origin/gh/henrylhtsang/136/head 2025-08-14T21:43:27.3027537Z * [new branch] gh/henrylhtsang/136/orig -> origin/gh/henrylhtsang/136/orig 2025-08-14T21:43:27.3028115Z * [new branch] gh/henrylhtsang/137/base -> origin/gh/henrylhtsang/137/base 2025-08-14T21:43:27.3028683Z * [new branch] gh/henrylhtsang/137/head -> origin/gh/henrylhtsang/137/head 2025-08-14T21:43:27.3029258Z * [new branch] gh/henrylhtsang/137/orig -> origin/gh/henrylhtsang/137/orig 2025-08-14T21:43:27.3029833Z * [new branch] gh/henrylhtsang/138/base -> origin/gh/henrylhtsang/138/base 2025-08-14T21:43:27.3030398Z * [new branch] gh/henrylhtsang/138/head -> origin/gh/henrylhtsang/138/head 2025-08-14T21:43:27.3030977Z * [new branch] gh/henrylhtsang/138/orig -> origin/gh/henrylhtsang/138/orig 2025-08-14T21:43:27.3031543Z * [new branch] gh/henrylhtsang/139/base -> origin/gh/henrylhtsang/139/base 2025-08-14T21:43:27.3032125Z * [new branch] gh/henrylhtsang/139/head -> origin/gh/henrylhtsang/139/head 2025-08-14T21:43:27.3032702Z * [new branch] gh/henrylhtsang/139/orig -> origin/gh/henrylhtsang/139/orig 2025-08-14T21:43:27.3033267Z * [new branch] gh/henrylhtsang/140/base -> origin/gh/henrylhtsang/140/base 2025-08-14T21:43:27.3033852Z * [new branch] gh/henrylhtsang/140/head -> origin/gh/henrylhtsang/140/head 2025-08-14T21:43:27.3034905Z * [new branch] gh/henrylhtsang/140/orig -> origin/gh/henrylhtsang/140/orig 2025-08-14T21:43:27.3035484Z * [new branch] gh/henrylhtsang/141/base -> origin/gh/henrylhtsang/141/base 2025-08-14T21:43:27.3036051Z * [new branch] gh/henrylhtsang/141/head -> origin/gh/henrylhtsang/141/head 2025-08-14T21:43:27.3036625Z * [new branch] gh/henrylhtsang/141/orig -> origin/gh/henrylhtsang/141/orig 2025-08-14T21:43:27.3037206Z * [new branch] gh/henrylhtsang/142/base -> origin/gh/henrylhtsang/142/base 2025-08-14T21:43:27.3037774Z * [new branch] gh/henrylhtsang/142/head -> origin/gh/henrylhtsang/142/head 2025-08-14T21:43:27.3038348Z * [new branch] gh/henrylhtsang/142/orig -> origin/gh/henrylhtsang/142/orig 2025-08-14T21:43:27.3038916Z * [new branch] gh/henrylhtsang/143/base -> origin/gh/henrylhtsang/143/base 2025-08-14T21:43:27.3039491Z * [new branch] gh/henrylhtsang/143/head -> origin/gh/henrylhtsang/143/head 2025-08-14T21:43:27.3040072Z * [new branch] gh/henrylhtsang/143/orig -> origin/gh/henrylhtsang/143/orig 2025-08-14T21:43:27.3040634Z * [new branch] gh/henrylhtsang/144/base -> origin/gh/henrylhtsang/144/base 2025-08-14T21:43:27.3041213Z * [new branch] gh/henrylhtsang/144/head -> origin/gh/henrylhtsang/144/head 2025-08-14T21:43:27.3041777Z * [new branch] gh/henrylhtsang/144/orig -> origin/gh/henrylhtsang/144/orig 2025-08-14T21:43:27.3042356Z * [new branch] gh/henrylhtsang/145/base -> origin/gh/henrylhtsang/145/base 2025-08-14T21:43:27.3042933Z * [new branch] gh/henrylhtsang/145/head -> origin/gh/henrylhtsang/145/head 2025-08-14T21:43:27.3043501Z * [new branch] gh/henrylhtsang/145/orig -> origin/gh/henrylhtsang/145/orig 2025-08-14T21:43:27.3044070Z * [new branch] gh/henrylhtsang/146/base -> origin/gh/henrylhtsang/146/base 2025-08-14T21:43:27.3044639Z * [new branch] gh/henrylhtsang/146/head -> origin/gh/henrylhtsang/146/head 2025-08-14T21:43:27.3489105Z * [new branch] gh/henrylhtsang/146/orig -> origin/gh/henrylhtsang/146/orig 2025-08-14T21:43:27.3489709Z * [new branch] gh/huydhn/1/head -> origin/gh/huydhn/1/head 2025-08-14T21:43:27.3490221Z * [new branch] gh/huydhn/1/next -> origin/gh/huydhn/1/next 2025-08-14T21:43:27.3490732Z * [new branch] gh/huydhn/2/head -> origin/gh/huydhn/2/head 2025-08-14T21:43:27.3491414Z * [new branch] gh/huydhn/2/next -> origin/gh/huydhn/2/next 2025-08-14T21:43:27.3491908Z * [new branch] gh/huydhn/2/orig -> origin/gh/huydhn/2/orig 2025-08-14T21:43:27.3492398Z * [new branch] gh/huydhn/3/head -> origin/gh/huydhn/3/head 2025-08-14T21:43:27.3492886Z * [new branch] gh/huydhn/3/next -> origin/gh/huydhn/3/next 2025-08-14T21:43:27.3493396Z * [new branch] gh/huydhn/3/orig -> origin/gh/huydhn/3/orig 2025-08-14T21:43:27.3493881Z * [new branch] gh/huydhn/4/head -> origin/gh/huydhn/4/head 2025-08-14T21:43:27.3494377Z * [new branch] gh/huydhn/4/next -> origin/gh/huydhn/4/next 2025-08-14T21:43:27.3494865Z * [new branch] gh/huydhn/4/orig -> origin/gh/huydhn/4/orig 2025-08-14T21:43:27.3495345Z * [new branch] gh/huydhn/5/head -> origin/gh/huydhn/5/head 2025-08-14T21:43:27.3495837Z * [new branch] gh/huydhn/5/next -> origin/gh/huydhn/5/next 2025-08-14T21:43:27.3496320Z * [new branch] gh/huydhn/5/orig -> origin/gh/huydhn/5/orig 2025-08-14T21:43:27.3496810Z * [new branch] gh/huydhn/6/head -> origin/gh/huydhn/6/head 2025-08-14T21:43:27.3497306Z * [new branch] gh/huydhn/6/next -> origin/gh/huydhn/6/next 2025-08-14T21:43:27.3498263Z * [new branch] gh/huydhn/6/orig -> origin/gh/huydhn/6/orig 2025-08-14T21:43:27.3498756Z * [new branch] gh/int3/97/base -> origin/gh/int3/97/base 2025-08-14T21:43:27.3499232Z * [new branch] gh/int3/97/head -> origin/gh/int3/97/head 2025-08-14T21:43:27.3499740Z * [new branch] gh/isuruf/101/base -> origin/gh/isuruf/101/base 2025-08-14T21:43:27.3500339Z * [new branch] gh/isuruf/101/head -> origin/gh/isuruf/101/head 2025-08-14T21:43:27.3500852Z * [new branch] gh/isuruf/116/base -> origin/gh/isuruf/116/base 2025-08-14T21:43:27.3501362Z * [new branch] gh/isuruf/116/head -> origin/gh/isuruf/116/head 2025-08-14T21:43:27.3501865Z * [new branch] gh/isuruf/116/orig -> origin/gh/isuruf/116/orig 2025-08-14T21:43:27.3502375Z * [new branch] gh/isuruf/141/base -> origin/gh/isuruf/141/base 2025-08-14T21:43:27.3502872Z * [new branch] gh/isuruf/141/head -> origin/gh/isuruf/141/head 2025-08-14T21:43:27.3503383Z * [new branch] gh/isuruf/141/orig -> origin/gh/isuruf/141/orig 2025-08-14T21:43:27.3503886Z * [new branch] gh/isuruf/142/base -> origin/gh/isuruf/142/base 2025-08-14T21:43:27.3504382Z * [new branch] gh/isuruf/142/head -> origin/gh/isuruf/142/head 2025-08-14T21:43:27.3504895Z * [new branch] gh/isuruf/142/orig -> origin/gh/isuruf/142/orig 2025-08-14T21:43:27.3505392Z * [new branch] gh/isuruf/81/base -> origin/gh/isuruf/81/base 2025-08-14T21:43:27.3505894Z * [new branch] gh/isuruf/81/head -> origin/gh/isuruf/81/head 2025-08-14T21:43:27.3506393Z * [new branch] gh/isuruf/81/orig -> origin/gh/isuruf/81/orig 2025-08-14T21:43:27.3506904Z * [new branch] gh/jamesjwu/140/base -> origin/gh/jamesjwu/140/base 2025-08-14T21:43:27.3507445Z * [new branch] gh/jamesjwu/140/head -> origin/gh/jamesjwu/140/head 2025-08-14T21:43:27.3507970Z * [new branch] gh/jamesjwu/140/orig -> origin/gh/jamesjwu/140/orig 2025-08-14T21:43:27.3508493Z * [new branch] gh/jamesjwu/150/base -> origin/gh/jamesjwu/150/base 2025-08-14T21:43:27.3509026Z * [new branch] gh/jamesjwu/150/head -> origin/gh/jamesjwu/150/head 2025-08-14T21:43:27.3509663Z * [new branch] gh/jamesjwu/150/orig -> origin/gh/jamesjwu/150/orig 2025-08-14T21:43:27.3510199Z * [new branch] gh/jamesjwu/154/base -> origin/gh/jamesjwu/154/base 2025-08-14T21:43:27.3510714Z * [new branch] gh/jamesjwu/154/head -> origin/gh/jamesjwu/154/head 2025-08-14T21:43:27.3511251Z * [new branch] gh/jamesjwu/154/orig -> origin/gh/jamesjwu/154/orig 2025-08-14T21:43:27.3511773Z * [new branch] gh/jamesjwu/155/base -> origin/gh/jamesjwu/155/base 2025-08-14T21:43:27.3512316Z * [new branch] gh/jamesjwu/155/head -> origin/gh/jamesjwu/155/head 2025-08-14T21:43:27.3512848Z * [new branch] gh/jamesjwu/155/orig -> origin/gh/jamesjwu/155/orig 2025-08-14T21:43:27.3513366Z * [new branch] gh/jamesjwu/159/base -> origin/gh/jamesjwu/159/base 2025-08-14T21:43:27.3513896Z * [new branch] gh/jamesjwu/159/head -> origin/gh/jamesjwu/159/head 2025-08-14T21:43:27.3962059Z * [new branch] gh/jamesjwu/159/orig -> origin/gh/jamesjwu/159/orig 2025-08-14T21:43:27.3962622Z * [new branch] gh/jamesjwu/163/base -> origin/gh/jamesjwu/163/base 2025-08-14T21:43:27.3963157Z * [new branch] gh/jamesjwu/163/head -> origin/gh/jamesjwu/163/head 2025-08-14T21:43:27.3963686Z * [new branch] gh/jamesjwu/163/orig -> origin/gh/jamesjwu/163/orig 2025-08-14T21:43:27.3964741Z * [new branch] gh/jamesjwu/171/base -> origin/gh/jamesjwu/171/base 2025-08-14T21:43:27.3987407Z * [new branch] gh/jamesjwu/171/head -> origin/gh/jamesjwu/171/head 2025-08-14T21:43:27.3987988Z * [new branch] gh/jamesjwu/171/orig -> origin/gh/jamesjwu/171/orig 2025-08-14T21:43:27.3988516Z * [new branch] gh/jamesjwu/174/base -> origin/gh/jamesjwu/174/base 2025-08-14T21:43:27.3989175Z * [new branch] gh/jamesjwu/174/head -> origin/gh/jamesjwu/174/head 2025-08-14T21:43:27.3989824Z * [new branch] gh/jamesjwu/174/orig -> origin/gh/jamesjwu/174/orig 2025-08-14T21:43:27.3990348Z * [new branch] gh/jamesjwu/175/base -> origin/gh/jamesjwu/175/base 2025-08-14T21:43:27.3990879Z * [new branch] gh/jamesjwu/175/head -> origin/gh/jamesjwu/175/head 2025-08-14T21:43:27.3991402Z * [new branch] gh/jamesjwu/175/orig -> origin/gh/jamesjwu/175/orig 2025-08-14T21:43:27.3991942Z * [new branch] gh/jamesjwu/176/base -> origin/gh/jamesjwu/176/base 2025-08-14T21:43:27.3992472Z * [new branch] gh/jamesjwu/176/head -> origin/gh/jamesjwu/176/head 2025-08-14T21:43:27.3992997Z * [new branch] gh/jamesjwu/176/orig -> origin/gh/jamesjwu/176/orig 2025-08-14T21:43:27.3993533Z * [new branch] gh/jamesjwu/177/base -> origin/gh/jamesjwu/177/base 2025-08-14T21:43:27.3994057Z * [new branch] gh/jamesjwu/177/head -> origin/gh/jamesjwu/177/head 2025-08-14T21:43:27.3994589Z * [new branch] gh/jamesjwu/177/orig -> origin/gh/jamesjwu/177/orig 2025-08-14T21:43:27.3995127Z * [new branch] gh/jamesjwu/178/base -> origin/gh/jamesjwu/178/base 2025-08-14T21:43:27.3995646Z * [new branch] gh/jamesjwu/178/head -> origin/gh/jamesjwu/178/head 2025-08-14T21:43:27.3996191Z * [new branch] gh/jamesjwu/178/orig -> origin/gh/jamesjwu/178/orig 2025-08-14T21:43:27.3996726Z * [new branch] gh/jamesjwu/179/base -> origin/gh/jamesjwu/179/base 2025-08-14T21:43:27.3997262Z * [new branch] gh/jamesjwu/179/head -> origin/gh/jamesjwu/179/head 2025-08-14T21:43:27.3997793Z * [new branch] gh/jamesjwu/179/orig -> origin/gh/jamesjwu/179/orig 2025-08-14T21:43:27.3998312Z * [new branch] gh/jamesjwu/180/base -> origin/gh/jamesjwu/180/base 2025-08-14T21:43:27.3999013Z * [new branch] gh/jamesjwu/180/head -> origin/gh/jamesjwu/180/head 2025-08-14T21:43:27.3999539Z * [new branch] gh/jamesjwu/180/orig -> origin/gh/jamesjwu/180/orig 2025-08-14T21:43:27.4000088Z * [new branch] gh/jamesjwu/181/base -> origin/gh/jamesjwu/181/base 2025-08-14T21:43:27.4000731Z * [new branch] gh/jamesjwu/181/head -> origin/gh/jamesjwu/181/head 2025-08-14T21:43:27.4001283Z * [new branch] gh/jamesjwu/181/orig -> origin/gh/jamesjwu/181/orig 2025-08-14T21:43:27.4001805Z * [new branch] gh/jamesjwu/182/base -> origin/gh/jamesjwu/182/base 2025-08-14T21:43:27.4002320Z * [new branch] gh/jamesjwu/182/head -> origin/gh/jamesjwu/182/head 2025-08-14T21:43:27.4002848Z * [new branch] gh/jamesjwu/182/orig -> origin/gh/jamesjwu/182/orig 2025-08-14T21:43:27.4003366Z * [new branch] gh/jamesjwu/183/base -> origin/gh/jamesjwu/183/base 2025-08-14T21:43:27.4003906Z * [new branch] gh/jamesjwu/183/head -> origin/gh/jamesjwu/183/head 2025-08-14T21:43:27.4004430Z * [new branch] gh/jamesjwu/183/orig -> origin/gh/jamesjwu/183/orig 2025-08-14T21:43:27.4004952Z * [new branch] gh/jamesjwu/184/base -> origin/gh/jamesjwu/184/base 2025-08-14T21:43:27.4005482Z * [new branch] gh/jamesjwu/184/head -> origin/gh/jamesjwu/184/head 2025-08-14T21:43:27.4006455Z * [new branch] gh/jamesjwu/184/orig -> origin/gh/jamesjwu/184/orig 2025-08-14T21:43:27.4007000Z * [new branch] gh/jamesjwu/52/base -> origin/gh/jamesjwu/52/base 2025-08-14T21:43:27.4007533Z * [new branch] gh/jamesjwu/52/head -> origin/gh/jamesjwu/52/head 2025-08-14T21:43:27.4008055Z * [new branch] gh/jamesjwu/53/base -> origin/gh/jamesjwu/53/base 2025-08-14T21:43:27.4008593Z * [new branch] gh/jamesjwu/53/head -> origin/gh/jamesjwu/53/head 2025-08-14T21:43:27.4009108Z * [new branch] gh/jamesjwu/54/base -> origin/gh/jamesjwu/54/base 2025-08-14T21:43:27.4009628Z * [new branch] gh/jamesjwu/54/head -> origin/gh/jamesjwu/54/head 2025-08-14T21:43:27.4450954Z * [new branch] gh/jamesjwu/55/base -> origin/gh/jamesjwu/55/base 2025-08-14T21:43:27.4451609Z * [new branch] gh/jamesjwu/55/head -> origin/gh/jamesjwu/55/head 2025-08-14T21:43:27.4452146Z * [new branch] gh/jamesjwu/56/base -> origin/gh/jamesjwu/56/base 2025-08-14T21:43:27.4452689Z * [new branch] gh/jamesjwu/56/head -> origin/gh/jamesjwu/56/head 2025-08-14T21:43:27.4453208Z * [new branch] gh/jamesjwu/57/base -> origin/gh/jamesjwu/57/base 2025-08-14T21:43:27.4453730Z * [new branch] gh/jamesjwu/57/head -> origin/gh/jamesjwu/57/head 2025-08-14T21:43:27.4454262Z * [new branch] gh/jamesjwu/58/base -> origin/gh/jamesjwu/58/base 2025-08-14T21:43:27.4454783Z * [new branch] gh/jamesjwu/58/head -> origin/gh/jamesjwu/58/head 2025-08-14T21:43:27.4455294Z * [new branch] gh/jamesjwu/59/base -> origin/gh/jamesjwu/59/base 2025-08-14T21:43:27.4455813Z * [new branch] gh/jamesjwu/59/head -> origin/gh/jamesjwu/59/head 2025-08-14T21:43:27.4456335Z * [new branch] gh/jamesjwu/60/base -> origin/gh/jamesjwu/60/base 2025-08-14T21:43:27.4456845Z * [new branch] gh/jamesjwu/60/head -> origin/gh/jamesjwu/60/head 2025-08-14T21:43:27.4457365Z * [new branch] gh/jamesjwu/61/base -> origin/gh/jamesjwu/61/base 2025-08-14T21:43:27.4457878Z * [new branch] gh/jamesjwu/61/head -> origin/gh/jamesjwu/61/head 2025-08-14T21:43:27.4458415Z * [new branch] gh/jamesjwu/62/base -> origin/gh/jamesjwu/62/base 2025-08-14T21:43:27.4459082Z * [new branch] gh/jamesjwu/62/head -> origin/gh/jamesjwu/62/head 2025-08-14T21:43:27.4459599Z * [new branch] gh/jamesjwu/63/base -> origin/gh/jamesjwu/63/base 2025-08-14T21:43:27.4460228Z * [new branch] gh/jamesjwu/63/head -> origin/gh/jamesjwu/63/head 2025-08-14T21:43:27.4460748Z * [new branch] gh/jamesjwu/64/base -> origin/gh/jamesjwu/64/base 2025-08-14T21:43:27.4461286Z * [new branch] gh/jamesjwu/64/head -> origin/gh/jamesjwu/64/head 2025-08-14T21:43:27.4461816Z * [new branch] gh/jamesjwu/65/base -> origin/gh/jamesjwu/65/base 2025-08-14T21:43:27.4462332Z * [new branch] gh/jamesjwu/65/head -> origin/gh/jamesjwu/65/head 2025-08-14T21:43:27.4462877Z * [new branch] gh/janeyx99/165/base -> origin/gh/janeyx99/165/base 2025-08-14T21:43:27.4463401Z * [new branch] gh/janeyx99/165/head -> origin/gh/janeyx99/165/head 2025-08-14T21:43:27.4463942Z * [new branch] gh/janeyx99/165/orig -> origin/gh/janeyx99/165/orig 2025-08-14T21:43:27.4464473Z * [new branch] gh/janeyx99/201/base -> origin/gh/janeyx99/201/base 2025-08-14T21:43:27.4464989Z * [new branch] gh/janeyx99/201/head -> origin/gh/janeyx99/201/head 2025-08-14T21:43:27.4465517Z * [new branch] gh/janeyx99/201/orig -> origin/gh/janeyx99/201/orig 2025-08-14T21:43:27.4466458Z * [new branch] gh/janeyx99/225/base -> origin/gh/janeyx99/225/base 2025-08-14T21:43:27.4466994Z * [new branch] gh/janeyx99/225/head -> origin/gh/janeyx99/225/head 2025-08-14T21:43:27.4467519Z * [new branch] gh/janeyx99/225/orig -> origin/gh/janeyx99/225/orig 2025-08-14T21:43:27.4468042Z * [new branch] gh/janeyx99/256/base -> origin/gh/janeyx99/256/base 2025-08-14T21:43:27.4468574Z * [new branch] gh/janeyx99/256/head -> origin/gh/janeyx99/256/head 2025-08-14T21:43:27.4469093Z * [new branch] gh/janeyx99/256/orig -> origin/gh/janeyx99/256/orig 2025-08-14T21:43:27.4469617Z * [new branch] gh/janeyx99/268/base -> origin/gh/janeyx99/268/base 2025-08-14T21:43:27.4470131Z * [new branch] gh/janeyx99/268/head -> origin/gh/janeyx99/268/head 2025-08-14T21:43:27.4470650Z * [new branch] gh/janeyx99/268/orig -> origin/gh/janeyx99/268/orig 2025-08-14T21:43:27.4471179Z * [new branch] gh/janeyx99/269/base -> origin/gh/janeyx99/269/base 2025-08-14T21:43:27.4471696Z * [new branch] gh/janeyx99/269/head -> origin/gh/janeyx99/269/head 2025-08-14T21:43:27.4472217Z * [new branch] gh/janeyx99/269/orig -> origin/gh/janeyx99/269/orig 2025-08-14T21:43:27.4472731Z * [new branch] gh/janeyx99/274/base -> origin/gh/janeyx99/274/base 2025-08-14T21:43:27.4473256Z * [new branch] gh/janeyx99/274/head -> origin/gh/janeyx99/274/head 2025-08-14T21:43:27.4473782Z * [new branch] gh/janeyx99/274/orig -> origin/gh/janeyx99/274/orig 2025-08-14T21:43:27.4474291Z * [new branch] gh/janeyx99/276/base -> origin/gh/janeyx99/276/base 2025-08-14T21:43:27.4474811Z * [new branch] gh/janeyx99/276/head -> origin/gh/janeyx99/276/head 2025-08-14T21:43:27.4475329Z * [new branch] gh/janeyx99/276/orig -> origin/gh/janeyx99/276/orig 2025-08-14T21:43:27.4475847Z * [new branch] gh/janeyx99/277/base -> origin/gh/janeyx99/277/base 2025-08-14T21:43:27.4920728Z * [new branch] gh/janeyx99/277/head -> origin/gh/janeyx99/277/head 2025-08-14T21:43:27.4921294Z * [new branch] gh/janeyx99/277/orig -> origin/gh/janeyx99/277/orig 2025-08-14T21:43:27.4921820Z * [new branch] gh/janeyx99/278/base -> origin/gh/janeyx99/278/base 2025-08-14T21:43:27.4922519Z * [new branch] gh/janeyx99/278/head -> origin/gh/janeyx99/278/head 2025-08-14T21:43:27.4923053Z * [new branch] gh/janeyx99/278/orig -> origin/gh/janeyx99/278/orig 2025-08-14T21:43:27.4923583Z * [new branch] gh/janeyx99/279/base -> origin/gh/janeyx99/279/base 2025-08-14T21:43:27.4924099Z * [new branch] gh/janeyx99/279/head -> origin/gh/janeyx99/279/head 2025-08-14T21:43:27.4924631Z * [new branch] gh/janeyx99/279/orig -> origin/gh/janeyx99/279/orig 2025-08-14T21:43:27.4925142Z * [new branch] gh/janeyx99/280/base -> origin/gh/janeyx99/280/base 2025-08-14T21:43:27.4925663Z * [new branch] gh/janeyx99/280/head -> origin/gh/janeyx99/280/head 2025-08-14T21:43:27.4926186Z * [new branch] gh/janeyx99/280/orig -> origin/gh/janeyx99/280/orig 2025-08-14T21:43:27.4926700Z * [new branch] gh/janeyx99/281/base -> origin/gh/janeyx99/281/base 2025-08-14T21:43:27.4927220Z * [new branch] gh/janeyx99/281/head -> origin/gh/janeyx99/281/head 2025-08-14T21:43:27.4927732Z * [new branch] gh/janeyx99/281/orig -> origin/gh/janeyx99/281/orig 2025-08-14T21:43:27.4928251Z * [new branch] gh/janeyx99/282/base -> origin/gh/janeyx99/282/base 2025-08-14T21:43:27.4928776Z * [new branch] gh/janeyx99/282/head -> origin/gh/janeyx99/282/head 2025-08-14T21:43:27.4929413Z * [new branch] gh/janeyx99/282/orig -> origin/gh/janeyx99/282/orig 2025-08-14T21:43:27.4929942Z * [new branch] gh/janeyx99/283/base -> origin/gh/janeyx99/283/base 2025-08-14T21:43:27.4930458Z * [new branch] gh/janeyx99/283/head -> origin/gh/janeyx99/283/head 2025-08-14T21:43:27.4930983Z * [new branch] gh/janeyx99/283/orig -> origin/gh/janeyx99/283/orig 2025-08-14T21:43:27.4931524Z * [new branch] gh/janeyx99/284/base -> origin/gh/janeyx99/284/base 2025-08-14T21:43:27.4932044Z * [new branch] gh/janeyx99/284/head -> origin/gh/janeyx99/284/head 2025-08-14T21:43:27.4932574Z * [new branch] gh/janeyx99/284/orig -> origin/gh/janeyx99/284/orig 2025-08-14T21:43:27.4933094Z * [new branch] gh/janeyx99/285/base -> origin/gh/janeyx99/285/base 2025-08-14T21:43:27.4933627Z * [new branch] gh/janeyx99/285/head -> origin/gh/janeyx99/285/head 2025-08-14T21:43:27.4934140Z * [new branch] gh/janeyx99/285/orig -> origin/gh/janeyx99/285/orig 2025-08-14T21:43:27.4934673Z * [new branch] gh/janeyx99/286/base -> origin/gh/janeyx99/286/base 2025-08-14T21:43:27.4935204Z * [new branch] gh/janeyx99/286/head -> origin/gh/janeyx99/286/head 2025-08-14T21:43:27.4935721Z * [new branch] gh/janeyx99/286/orig -> origin/gh/janeyx99/286/orig 2025-08-14T21:43:27.4936249Z * [new branch] gh/janeyx99/287/base -> origin/gh/janeyx99/287/base 2025-08-14T21:43:27.4936763Z * [new branch] gh/janeyx99/287/head -> origin/gh/janeyx99/287/head 2025-08-14T21:43:27.4937293Z * [new branch] gh/janeyx99/287/orig -> origin/gh/janeyx99/287/orig 2025-08-14T21:43:27.4937828Z * [new branch] gh/janeyx99/288/base -> origin/gh/janeyx99/288/base 2025-08-14T21:43:27.4938345Z * [new branch] gh/janeyx99/288/head -> origin/gh/janeyx99/288/head 2025-08-14T21:43:27.4938862Z * [new branch] gh/janeyx99/288/orig -> origin/gh/janeyx99/288/orig 2025-08-14T21:43:27.4939375Z * [new branch] gh/janeyx99/289/base -> origin/gh/janeyx99/289/base 2025-08-14T21:43:27.4939970Z * [new branch] gh/janeyx99/289/head -> origin/gh/janeyx99/289/head 2025-08-14T21:43:27.4940621Z * [new branch] gh/janeyx99/289/orig -> origin/gh/janeyx99/289/orig 2025-08-14T21:43:27.4941143Z * [new branch] gh/janeyx99/290/base -> origin/gh/janeyx99/290/base 2025-08-14T21:43:27.4941681Z * [new branch] gh/janeyx99/290/head -> origin/gh/janeyx99/290/head 2025-08-14T21:43:27.4942199Z * [new branch] gh/janeyx99/290/orig -> origin/gh/janeyx99/290/orig 2025-08-14T21:43:27.4942734Z * [new branch] gh/janeyx99/291/base -> origin/gh/janeyx99/291/base 2025-08-14T21:43:27.4943255Z * [new branch] gh/janeyx99/291/head -> origin/gh/janeyx99/291/head 2025-08-14T21:43:27.4943781Z * [new branch] gh/janeyx99/291/orig -> origin/gh/janeyx99/291/orig 2025-08-14T21:43:27.4944305Z * [new branch] gh/janeyx99/292/base -> origin/gh/janeyx99/292/base 2025-08-14T21:43:27.4944823Z * [new branch] gh/janeyx99/292/head -> origin/gh/janeyx99/292/head 2025-08-14T21:43:27.4945348Z * [new branch] gh/janeyx99/292/orig -> origin/gh/janeyx99/292/orig 2025-08-14T21:43:27.5667771Z * [new branch] gh/janeyx99/293/base -> origin/gh/janeyx99/293/base 2025-08-14T21:43:27.5668347Z * [new branch] gh/janeyx99/293/head -> origin/gh/janeyx99/293/head 2025-08-14T21:43:27.5668892Z * [new branch] gh/janeyx99/293/orig -> origin/gh/janeyx99/293/orig 2025-08-14T21:43:27.5669626Z * [new branch] gh/janeyx99/294/base -> origin/gh/janeyx99/294/base 2025-08-14T21:43:27.5670150Z * [new branch] gh/janeyx99/294/head -> origin/gh/janeyx99/294/head 2025-08-14T21:43:27.5670678Z * [new branch] gh/janeyx99/294/orig -> origin/gh/janeyx99/294/orig 2025-08-14T21:43:27.5671187Z * [new branch] gh/janeyx99/295/base -> origin/gh/janeyx99/295/base 2025-08-14T21:43:27.5671717Z * [new branch] gh/janeyx99/295/head -> origin/gh/janeyx99/295/head 2025-08-14T21:43:27.5672241Z * [new branch] gh/janeyx99/295/orig -> origin/gh/janeyx99/295/orig 2025-08-14T21:43:27.5672866Z * [new branch] gh/janeyx99/296/base -> origin/gh/janeyx99/296/base 2025-08-14T21:43:27.5673473Z * [new branch] gh/janeyx99/296/head -> origin/gh/janeyx99/296/head 2025-08-14T21:43:27.5674000Z * [new branch] gh/janeyx99/296/orig -> origin/gh/janeyx99/296/orig 2025-08-14T21:43:27.5674525Z * [new branch] gh/janeyx99/297/base -> origin/gh/janeyx99/297/base 2025-08-14T21:43:27.5675046Z * [new branch] gh/janeyx99/297/head -> origin/gh/janeyx99/297/head 2025-08-14T21:43:27.5675563Z * [new branch] gh/janeyx99/297/orig -> origin/gh/janeyx99/297/orig 2025-08-14T21:43:27.5676072Z * [new branch] gh/janeyx99/298/base -> origin/gh/janeyx99/298/base 2025-08-14T21:43:27.5676603Z * [new branch] gh/janeyx99/298/head -> origin/gh/janeyx99/298/head 2025-08-14T21:43:27.5677132Z * [new branch] gh/janeyx99/298/orig -> origin/gh/janeyx99/298/orig 2025-08-14T21:43:27.5677661Z * [new branch] gh/janeyx99/299/base -> origin/gh/janeyx99/299/base 2025-08-14T21:43:27.5678189Z * [new branch] gh/janeyx99/299/head -> origin/gh/janeyx99/299/head 2025-08-14T21:43:27.5678701Z * [new branch] gh/janeyx99/299/orig -> origin/gh/janeyx99/299/orig 2025-08-14T21:43:27.5679337Z * [new branch] gh/janeyx99/300/base -> origin/gh/janeyx99/300/base 2025-08-14T21:43:27.5679961Z * [new branch] gh/janeyx99/300/head -> origin/gh/janeyx99/300/head 2025-08-14T21:43:27.5680493Z * [new branch] gh/janeyx99/300/orig -> origin/gh/janeyx99/300/orig 2025-08-14T21:43:27.5681022Z * [new branch] gh/janeyx99/88/base -> origin/gh/janeyx99/88/base 2025-08-14T21:43:27.5681674Z * [new branch] gh/janeyx99/88/head -> origin/gh/janeyx99/88/head 2025-08-14T21:43:27.5682207Z * [new branch] gh/janeyx99/88/orig -> origin/gh/janeyx99/88/orig 2025-08-14T21:43:27.5682728Z * [new branch] gh/jansel/360/base -> origin/gh/jansel/360/base 2025-08-14T21:43:27.5683240Z * [new branch] gh/jansel/360/head -> origin/gh/jansel/360/head 2025-08-14T21:43:27.5683770Z * [new branch] gh/jansel/451/base -> origin/gh/jansel/451/base 2025-08-14T21:43:27.5684281Z * [new branch] gh/jansel/451/head -> origin/gh/jansel/451/head 2025-08-14T21:43:27.5684803Z * [new branch] gh/jansel/451/orig -> origin/gh/jansel/451/orig 2025-08-14T21:43:27.5685413Z * [new branch] gh/jansel/462/base -> origin/gh/jansel/462/base 2025-08-14T21:43:27.5685917Z * [new branch] gh/jansel/462/head -> origin/gh/jansel/462/head 2025-08-14T21:43:27.5686532Z * [new branch] gh/jansel/462/orig -> origin/gh/jansel/462/orig 2025-08-14T21:43:27.5687038Z * [new branch] gh/jansel/531/base -> origin/gh/jansel/531/base 2025-08-14T21:43:27.5687538Z * [new branch] gh/jansel/531/head -> origin/gh/jansel/531/head 2025-08-14T21:43:27.5688032Z * [new branch] gh/jansel/531/orig -> origin/gh/jansel/531/orig 2025-08-14T21:43:27.5688635Z * [new branch] gh/jansel/534/base -> origin/gh/jansel/534/base 2025-08-14T21:43:27.5689150Z * [new branch] gh/jansel/534/head -> origin/gh/jansel/534/head 2025-08-14T21:43:27.5689665Z * [new branch] gh/jansel/534/orig -> origin/gh/jansel/534/orig 2025-08-14T21:43:27.5690217Z * [new branch] gh/jbschlosser/226/base -> origin/gh/jbschlosser/226/base 2025-08-14T21:43:27.5690782Z * [new branch] gh/jbschlosser/226/head -> origin/gh/jbschlosser/226/head 2025-08-14T21:43:27.5691366Z * [new branch] gh/jbschlosser/226/orig -> origin/gh/jbschlosser/226/orig 2025-08-14T21:43:27.5692028Z * [new branch] gh/jbschlosser/239/base -> origin/gh/jbschlosser/239/base 2025-08-14T21:43:27.5692678Z * [new branch] gh/jbschlosser/239/head -> origin/gh/jbschlosser/239/head 2025-08-14T21:43:27.6175696Z * [new branch] gh/jbschlosser/239/orig -> origin/gh/jbschlosser/239/orig 2025-08-14T21:43:27.6176349Z * [new branch] gh/jbschlosser/247/base -> origin/gh/jbschlosser/247/base 2025-08-14T21:43:27.6176957Z * [new branch] gh/jbschlosser/247/head -> origin/gh/jbschlosser/247/head 2025-08-14T21:43:27.6177528Z * [new branch] gh/jbschlosser/247/orig -> origin/gh/jbschlosser/247/orig 2025-08-14T21:43:27.6178083Z * [new branch] gh/jbschlosser/248/base -> origin/gh/jbschlosser/248/base 2025-08-14T21:43:27.6178663Z * [new branch] gh/jbschlosser/248/head -> origin/gh/jbschlosser/248/head 2025-08-14T21:43:27.6179226Z * [new branch] gh/jbschlosser/248/orig -> origin/gh/jbschlosser/248/orig 2025-08-14T21:43:27.6179846Z * [new branch] gh/jbschlosser/249/base -> origin/gh/jbschlosser/249/base 2025-08-14T21:43:27.6180411Z * [new branch] gh/jbschlosser/249/head -> origin/gh/jbschlosser/249/head 2025-08-14T21:43:27.6180970Z * [new branch] gh/jbschlosser/249/orig -> origin/gh/jbschlosser/249/orig 2025-08-14T21:43:27.6181535Z * [new branch] gh/jbschlosser/250/base -> origin/gh/jbschlosser/250/base 2025-08-14T21:43:27.6182091Z * [new branch] gh/jbschlosser/250/head -> origin/gh/jbschlosser/250/head 2025-08-14T21:43:27.6182670Z * [new branch] gh/jbschlosser/250/orig -> origin/gh/jbschlosser/250/orig 2025-08-14T21:43:27.6183226Z * [new branch] gh/jiayisunx/57/base -> origin/gh/jiayisunx/57/base 2025-08-14T21:43:27.6183951Z * [new branch] gh/jiayisunx/57/head -> origin/gh/jiayisunx/57/head 2025-08-14T21:43:27.6184490Z * [new branch] gh/jiayisunx/57/orig -> origin/gh/jiayisunx/57/orig 2025-08-14T21:43:27.6185018Z * [new branch] gh/jiayisunx/59/base -> origin/gh/jiayisunx/59/base 2025-08-14T21:43:27.6185542Z * [new branch] gh/jiayisunx/59/head -> origin/gh/jiayisunx/59/head 2025-08-14T21:43:27.6186085Z * [new branch] gh/jiayisunx/59/orig -> origin/gh/jiayisunx/59/orig 2025-08-14T21:43:27.6186607Z * [new branch] gh/jiayisunx/61/base -> origin/gh/jiayisunx/61/base 2025-08-14T21:43:27.6187136Z * [new branch] gh/jiayisunx/61/head -> origin/gh/jiayisunx/61/head 2025-08-14T21:43:27.6187658Z * [new branch] gh/jiayisunx/61/orig -> origin/gh/jiayisunx/61/orig 2025-08-14T21:43:27.6188192Z * [new branch] gh/jiayisunx/63/base -> origin/gh/jiayisunx/63/base 2025-08-14T21:43:27.6188722Z * [new branch] gh/jiayisunx/63/head -> origin/gh/jiayisunx/63/head 2025-08-14T21:43:27.6189247Z * [new branch] gh/jiayisunx/63/orig -> origin/gh/jiayisunx/63/orig 2025-08-14T21:43:27.6189780Z * [new branch] gh/jiayisunx/64/base -> origin/gh/jiayisunx/64/base 2025-08-14T21:43:27.6190304Z * [new branch] gh/jiayisunx/64/head -> origin/gh/jiayisunx/64/head 2025-08-14T21:43:27.6190964Z * [new branch] gh/jiayisunx/64/orig -> origin/gh/jiayisunx/64/orig 2025-08-14T21:43:27.6191496Z * [new branch] gh/jiayisunx/65/base -> origin/gh/jiayisunx/65/base 2025-08-14T21:43:27.6192025Z * [new branch] gh/jiayisunx/65/head -> origin/gh/jiayisunx/65/head 2025-08-14T21:43:27.6192557Z * [new branch] gh/jiayisunx/65/orig -> origin/gh/jiayisunx/65/orig 2025-08-14T21:43:27.6193081Z * [new branch] gh/jiayisunx/66/base -> origin/gh/jiayisunx/66/base 2025-08-14T21:43:27.6193610Z * [new branch] gh/jiayisunx/66/head -> origin/gh/jiayisunx/66/head 2025-08-14T21:43:27.6194135Z * [new branch] gh/jiayisunx/66/orig -> origin/gh/jiayisunx/66/orig 2025-08-14T21:43:27.6194657Z * [new branch] gh/jiayisunx/67/base -> origin/gh/jiayisunx/67/base 2025-08-14T21:43:27.6195185Z * [new branch] gh/jiayisunx/67/head -> origin/gh/jiayisunx/67/head 2025-08-14T21:43:27.6195712Z * [new branch] gh/jiayisunx/67/orig -> origin/gh/jiayisunx/67/orig 2025-08-14T21:43:27.6196242Z * [new branch] gh/jiayisunx/68/base -> origin/gh/jiayisunx/68/base 2025-08-14T21:43:27.6196773Z * [new branch] gh/jiayisunx/68/head -> origin/gh/jiayisunx/68/head 2025-08-14T21:43:27.6197299Z * [new branch] gh/jiayisunx/68/orig -> origin/gh/jiayisunx/68/orig 2025-08-14T21:43:27.6197859Z * [new branch] gh/jjwu@meta.com/1/base -> origin/gh/jjwu@meta.com/1/base 2025-08-14T21:43:27.6198404Z * [new branch] gh/jjwu@meta.com/1/head -> origin/gh/jjwu@meta.com/1/head 2025-08-14T21:43:27.6198957Z * [new branch] gh/justinchuby/111/base -> origin/gh/justinchuby/111/base 2025-08-14T21:43:27.6199507Z * [new branch] gh/justinchuby/111/head -> origin/gh/justinchuby/111/head 2025-08-14T21:43:27.6200069Z * [new branch] gh/justinchuby/111/orig -> origin/gh/justinchuby/111/orig 2025-08-14T21:43:27.6200630Z * [new branch] gh/kurtamohler/32/base -> origin/gh/kurtamohler/32/base 2025-08-14T21:43:27.6691305Z * [new branch] gh/kurtamohler/32/head -> origin/gh/kurtamohler/32/head 2025-08-14T21:43:27.6691928Z * [new branch] gh/kurtamohler/32/orig -> origin/gh/kurtamohler/32/orig 2025-08-14T21:43:27.6692697Z * [new branch] gh/kurtamohler/33/base -> origin/gh/kurtamohler/33/base 2025-08-14T21:43:27.6693281Z * [new branch] gh/kurtamohler/33/head -> origin/gh/kurtamohler/33/head 2025-08-14T21:43:27.6695696Z * [new branch] gh/kurtamohler/33/orig -> origin/gh/kurtamohler/33/orig 2025-08-14T21:43:27.6696262Z * [new branch] gh/kurtamohler/34/base -> origin/gh/kurtamohler/34/base 2025-08-14T21:43:27.6696833Z * [new branch] gh/kurtamohler/34/head -> origin/gh/kurtamohler/34/head 2025-08-14T21:43:27.6697392Z * [new branch] gh/kurtamohler/34/orig -> origin/gh/kurtamohler/34/orig 2025-08-14T21:43:27.6697937Z * [new branch] gh/kurtamohler/40/base -> origin/gh/kurtamohler/40/base 2025-08-14T21:43:27.6698484Z * [new branch] gh/kurtamohler/40/head -> origin/gh/kurtamohler/40/head 2025-08-14T21:43:27.6699027Z * [new branch] gh/kurtamohler/40/orig -> origin/gh/kurtamohler/40/orig 2025-08-14T21:43:27.6699580Z * [new branch] gh/kurtamohler/41/base -> origin/gh/kurtamohler/41/base 2025-08-14T21:43:27.6702000Z * [new branch] gh/kurtamohler/41/head -> origin/gh/kurtamohler/41/head 2025-08-14T21:43:27.6702565Z * [new branch] gh/kurtamohler/41/orig -> origin/gh/kurtamohler/41/orig 2025-08-14T21:43:27.6703131Z * [new branch] gh/kurtamohler/42/base -> origin/gh/kurtamohler/42/base 2025-08-14T21:43:27.6704191Z * [new branch] gh/kurtamohler/42/head -> origin/gh/kurtamohler/42/head 2025-08-14T21:43:27.6704755Z * [new branch] gh/kurtamohler/42/orig -> origin/gh/kurtamohler/42/orig 2025-08-14T21:43:27.6705305Z * [new branch] gh/kurtamohler/43/base -> origin/gh/kurtamohler/43/base 2025-08-14T21:43:27.6705844Z * [new branch] gh/kurtamohler/43/head -> origin/gh/kurtamohler/43/head 2025-08-14T21:43:27.6707504Z * [new branch] gh/kurtamohler/43/orig -> origin/gh/kurtamohler/43/orig 2025-08-14T21:43:27.6708825Z * [new branch] gh/kurtamohler/44/base -> origin/gh/kurtamohler/44/base 2025-08-14T21:43:27.6709383Z * [new branch] gh/kurtamohler/44/head -> origin/gh/kurtamohler/44/head 2025-08-14T21:43:27.6709933Z * [new branch] gh/kurtamohler/44/orig -> origin/gh/kurtamohler/44/orig 2025-08-14T21:43:27.6710592Z * [new branch] gh/kurtamohler/45/base -> origin/gh/kurtamohler/45/base 2025-08-14T21:43:27.6711305Z * [new branch] gh/kurtamohler/45/head -> origin/gh/kurtamohler/45/head 2025-08-14T21:43:27.6711853Z * [new branch] gh/kurtamohler/45/orig -> origin/gh/kurtamohler/45/orig 2025-08-14T21:43:27.6712406Z * [new branch] gh/kurtamohler/46/base -> origin/gh/kurtamohler/46/base 2025-08-14T21:43:27.6714785Z * [new branch] gh/kurtamohler/46/head -> origin/gh/kurtamohler/46/head 2025-08-14T21:43:27.6715371Z * [new branch] gh/kurtamohler/46/orig -> origin/gh/kurtamohler/46/orig 2025-08-14T21:43:27.6715912Z * [new branch] gh/kwen2501/130/base -> origin/gh/kwen2501/130/base 2025-08-14T21:43:27.6716430Z * [new branch] gh/kwen2501/130/head -> origin/gh/kwen2501/130/head 2025-08-14T21:43:27.6716947Z * [new branch] gh/kwen2501/130/orig -> origin/gh/kwen2501/130/orig 2025-08-14T21:43:27.6717460Z * [new branch] gh/kwen2501/142/base -> origin/gh/kwen2501/142/base 2025-08-14T21:43:27.6717975Z * [new branch] gh/kwen2501/142/head -> origin/gh/kwen2501/142/head 2025-08-14T21:43:27.6718492Z * [new branch] gh/kwen2501/142/orig -> origin/gh/kwen2501/142/orig 2025-08-14T21:43:27.6719003Z * [new branch] gh/kwen2501/15/base -> origin/gh/kwen2501/15/base 2025-08-14T21:43:27.6721514Z * [new branch] gh/kwen2501/15/head -> origin/gh/kwen2501/15/head 2025-08-14T21:43:27.6722031Z * [new branch] gh/kwen2501/156/base -> origin/gh/kwen2501/156/base 2025-08-14T21:43:27.6722555Z * [new branch] gh/kwen2501/156/head -> origin/gh/kwen2501/156/head 2025-08-14T21:43:27.6723078Z * [new branch] gh/kwen2501/156/orig -> origin/gh/kwen2501/156/orig 2025-08-14T21:43:27.6723590Z * [new branch] gh/kwen2501/170/base -> origin/gh/kwen2501/170/base 2025-08-14T21:43:27.6724122Z * [new branch] gh/kwen2501/170/head -> origin/gh/kwen2501/170/head 2025-08-14T21:43:27.6724633Z * [new branch] gh/kwen2501/179/base -> origin/gh/kwen2501/179/base 2025-08-14T21:43:27.6725150Z * [new branch] gh/kwen2501/179/head -> origin/gh/kwen2501/179/head 2025-08-14T21:43:27.6727494Z * [new branch] gh/kwen2501/179/orig -> origin/gh/kwen2501/179/orig 2025-08-14T21:43:27.6728029Z * [new branch] gh/kwen2501/181/base -> origin/gh/kwen2501/181/base 2025-08-14T21:43:27.7220309Z * [new branch] gh/kwen2501/181/head -> origin/gh/kwen2501/181/head 2025-08-14T21:43:27.7220878Z * [new branch] gh/kwen2501/181/orig -> origin/gh/kwen2501/181/orig 2025-08-14T21:43:27.7221433Z * [new branch] gh/kwen2501/183/base -> origin/gh/kwen2501/183/base 2025-08-14T21:43:27.7224018Z * [new branch] gh/kwen2501/183/head -> origin/gh/kwen2501/183/head 2025-08-14T21:43:27.7224534Z * [new branch] gh/kwen2501/183/orig -> origin/gh/kwen2501/183/orig 2025-08-14T21:43:27.7225059Z * [new branch] gh/kwen2501/184/base -> origin/gh/kwen2501/184/base 2025-08-14T21:43:27.7225571Z * [new branch] gh/kwen2501/184/head -> origin/gh/kwen2501/184/head 2025-08-14T21:43:27.7226094Z * [new branch] gh/kwen2501/184/orig -> origin/gh/kwen2501/184/orig 2025-08-14T21:43:27.7226631Z * [new branch] gh/kwen2501/186/base -> origin/gh/kwen2501/186/base 2025-08-14T21:43:27.7227140Z * [new branch] gh/kwen2501/186/head -> origin/gh/kwen2501/186/head 2025-08-14T21:43:27.7227655Z * [new branch] gh/kwen2501/186/orig -> origin/gh/kwen2501/186/orig 2025-08-14T21:43:27.7229240Z * [new branch] gh/kwen2501/187/base -> origin/gh/kwen2501/187/base 2025-08-14T21:43:27.7230581Z * [new branch] gh/kwen2501/187/head -> origin/gh/kwen2501/187/head 2025-08-14T21:43:27.7231101Z * [new branch] gh/kwen2501/187/orig -> origin/gh/kwen2501/187/orig 2025-08-14T21:43:27.7231617Z * [new branch] gh/kwen2501/188/base -> origin/gh/kwen2501/188/base 2025-08-14T21:43:27.7232137Z * [new branch] gh/kwen2501/188/head -> origin/gh/kwen2501/188/head 2025-08-14T21:43:27.7232653Z * [new branch] gh/kwen2501/188/orig -> origin/gh/kwen2501/188/orig 2025-08-14T21:43:27.7233179Z * [new branch] gh/kwen2501/194/base -> origin/gh/kwen2501/194/base 2025-08-14T21:43:27.7233689Z * [new branch] gh/kwen2501/194/head -> origin/gh/kwen2501/194/head 2025-08-14T21:43:27.7234204Z * [new branch] gh/kwen2501/194/orig -> origin/gh/kwen2501/194/orig 2025-08-14T21:43:27.7236500Z * [new branch] gh/kwen2501/195/base -> origin/gh/kwen2501/195/base 2025-08-14T21:43:27.7237022Z * [new branch] gh/kwen2501/195/head -> origin/gh/kwen2501/195/head 2025-08-14T21:43:27.7237551Z * [new branch] gh/kwen2501/195/orig -> origin/gh/kwen2501/195/orig 2025-08-14T21:43:27.7238058Z * [new branch] gh/kwen2501/196/base -> origin/gh/kwen2501/196/base 2025-08-14T21:43:27.7238581Z * [new branch] gh/kwen2501/196/head -> origin/gh/kwen2501/196/head 2025-08-14T21:43:27.7239897Z * [new branch] gh/kwen2501/196/orig -> origin/gh/kwen2501/196/orig 2025-08-14T21:43:27.7240431Z * [new branch] gh/kwen2501/197/base -> origin/gh/kwen2501/197/base 2025-08-14T21:43:27.7242885Z * [new branch] gh/kwen2501/197/head -> origin/gh/kwen2501/197/head 2025-08-14T21:43:27.7243401Z * [new branch] gh/kwen2501/197/orig -> origin/gh/kwen2501/197/orig 2025-08-14T21:43:27.7243927Z * [new branch] gh/kwen2501/198/base -> origin/gh/kwen2501/198/base 2025-08-14T21:43:27.7244438Z * [new branch] gh/kwen2501/198/head -> origin/gh/kwen2501/198/head 2025-08-14T21:43:27.7244943Z * [new branch] gh/kwen2501/198/orig -> origin/gh/kwen2501/198/orig 2025-08-14T21:43:27.7245456Z * [new branch] gh/kwen2501/199/base -> origin/gh/kwen2501/199/base 2025-08-14T21:43:27.7245966Z * [new branch] gh/kwen2501/199/head -> origin/gh/kwen2501/199/head 2025-08-14T21:43:27.7246484Z * [new branch] gh/kwen2501/199/orig -> origin/gh/kwen2501/199/orig 2025-08-14T21:43:27.7246999Z * [new branch] gh/kwen2501/200/base -> origin/gh/kwen2501/200/base 2025-08-14T21:43:27.7249308Z * [new branch] gh/kwen2501/200/head -> origin/gh/kwen2501/200/head 2025-08-14T21:43:27.7249827Z * [new branch] gh/kwen2501/200/orig -> origin/gh/kwen2501/200/orig 2025-08-14T21:43:27.7250475Z * [new branch] gh/kwen2501/201/base -> origin/gh/kwen2501/201/base 2025-08-14T21:43:27.7251001Z * [new branch] gh/kwen2501/201/head -> origin/gh/kwen2501/201/head 2025-08-14T21:43:27.7251511Z * [new branch] gh/kwen2501/201/orig -> origin/gh/kwen2501/201/orig 2025-08-14T21:43:27.7252029Z * [new branch] gh/kwen2501/202/base -> origin/gh/kwen2501/202/base 2025-08-14T21:43:27.7252555Z * [new branch] gh/kwen2501/202/head -> origin/gh/kwen2501/202/head 2025-08-14T21:43:27.7253058Z * [new branch] gh/kwen2501/202/orig -> origin/gh/kwen2501/202/orig 2025-08-14T21:43:27.7255394Z * [new branch] gh/kwen2501/203/base -> origin/gh/kwen2501/203/base 2025-08-14T21:43:27.7255914Z * [new branch] gh/kwen2501/203/head -> origin/gh/kwen2501/203/head 2025-08-14T21:43:27.7256442Z * [new branch] gh/kwen2501/203/orig -> origin/gh/kwen2501/203/orig 2025-08-14T21:43:27.7700263Z * [new branch] gh/laithsakka/152/base -> origin/gh/laithsakka/152/base 2025-08-14T21:43:27.7700962Z * [new branch] gh/laithsakka/152/head -> origin/gh/laithsakka/152/head 2025-08-14T21:43:27.7701644Z * [new branch] gh/laithsakka/152/orig -> origin/gh/laithsakka/152/orig 2025-08-14T21:43:27.7702290Z * [new branch] gh/laithsakka/156/base -> origin/gh/laithsakka/156/base 2025-08-14T21:43:27.7702944Z * [new branch] gh/laithsakka/156/head -> origin/gh/laithsakka/156/head 2025-08-14T21:43:27.7703591Z * [new branch] gh/laithsakka/156/orig -> origin/gh/laithsakka/156/orig 2025-08-14T21:43:27.7704138Z * [new branch] gh/laithsakka/159/base -> origin/gh/laithsakka/159/base 2025-08-14T21:43:27.7704779Z * [new branch] gh/laithsakka/159/head -> origin/gh/laithsakka/159/head 2025-08-14T21:43:27.7705429Z * [new branch] gh/laithsakka/159/orig -> origin/gh/laithsakka/159/orig 2025-08-14T21:43:27.7706057Z * [new branch] gh/laithsakka/160/base -> origin/gh/laithsakka/160/base 2025-08-14T21:43:27.7706693Z * [new branch] gh/laithsakka/160/head -> origin/gh/laithsakka/160/head 2025-08-14T21:43:27.7707323Z * [new branch] gh/laithsakka/160/orig -> origin/gh/laithsakka/160/orig 2025-08-14T21:43:27.7707870Z * [new branch] gh/laithsakka/178/base -> origin/gh/laithsakka/178/base 2025-08-14T21:43:27.7708741Z * [new branch] gh/laithsakka/178/head -> origin/gh/laithsakka/178/head 2025-08-14T21:43:27.7709335Z * [new branch] gh/laithsakka/178/orig -> origin/gh/laithsakka/178/orig 2025-08-14T21:43:27.7709986Z * [new branch] gh/laithsakka/191/base -> origin/gh/laithsakka/191/base 2025-08-14T21:43:27.7710624Z * [new branch] gh/laithsakka/191/head -> origin/gh/laithsakka/191/head 2025-08-14T21:43:27.7711274Z * [new branch] gh/laithsakka/191/orig -> origin/gh/laithsakka/191/orig 2025-08-14T21:43:27.7711909Z * [new branch] gh/laithsakka/234/base -> origin/gh/laithsakka/234/base 2025-08-14T21:43:27.7712547Z * [new branch] gh/laithsakka/234/head -> origin/gh/laithsakka/234/head 2025-08-14T21:43:27.7713094Z * [new branch] gh/laithsakka/234/orig -> origin/gh/laithsakka/234/orig 2025-08-14T21:43:27.7713739Z * [new branch] gh/laithsakka/237/base -> origin/gh/laithsakka/237/base 2025-08-14T21:43:27.7714378Z * [new branch] gh/laithsakka/237/head -> origin/gh/laithsakka/237/head 2025-08-14T21:43:27.7715008Z * [new branch] gh/laithsakka/237/orig -> origin/gh/laithsakka/237/orig 2025-08-14T21:43:27.7715660Z * [new branch] gh/laithsakka/238/base -> origin/gh/laithsakka/238/base 2025-08-14T21:43:27.7716424Z * [new branch] gh/laithsakka/238/head -> origin/gh/laithsakka/238/head 2025-08-14T21:43:27.7716969Z * [new branch] gh/laithsakka/238/orig -> origin/gh/laithsakka/238/orig 2025-08-14T21:43:27.7717615Z * [new branch] gh/laithsakka/239/base -> origin/gh/laithsakka/239/base 2025-08-14T21:43:27.7718251Z * [new branch] gh/laithsakka/239/head -> origin/gh/laithsakka/239/head 2025-08-14T21:43:27.7718896Z * [new branch] gh/laithsakka/239/orig -> origin/gh/laithsakka/239/orig 2025-08-14T21:43:27.7719541Z * [new branch] gh/laithsakka/240/base -> origin/gh/laithsakka/240/base 2025-08-14T21:43:27.7720171Z * [new branch] gh/laithsakka/240/head -> origin/gh/laithsakka/240/head 2025-08-14T21:43:27.7720720Z * [new branch] gh/laithsakka/240/orig -> origin/gh/laithsakka/240/orig 2025-08-14T21:43:27.7721356Z * [new branch] gh/laithsakka/242/base -> origin/gh/laithsakka/242/base 2025-08-14T21:43:27.7721999Z * [new branch] gh/laithsakka/242/head -> origin/gh/laithsakka/242/head 2025-08-14T21:43:27.7722632Z * [new branch] gh/laithsakka/242/orig -> origin/gh/laithsakka/242/orig 2025-08-14T21:43:27.7723260Z * [new branch] gh/laithsakka/243/base -> origin/gh/laithsakka/243/base 2025-08-14T21:43:27.7723807Z * [new branch] gh/laithsakka/243/head -> origin/gh/laithsakka/243/head 2025-08-14T21:43:27.7724447Z * [new branch] gh/laithsakka/243/orig -> origin/gh/laithsakka/243/orig 2025-08-14T21:43:27.7725086Z * [new branch] gh/laithsakka/244/base -> origin/gh/laithsakka/244/base 2025-08-14T21:43:27.7725724Z * [new branch] gh/laithsakka/244/head -> origin/gh/laithsakka/244/head 2025-08-14T21:43:27.7726364Z * [new branch] gh/laithsakka/244/orig -> origin/gh/laithsakka/244/orig 2025-08-14T21:43:27.7727006Z * [new branch] gh/laithsakka/245/base -> origin/gh/laithsakka/245/base 2025-08-14T21:43:27.7727555Z * [new branch] gh/laithsakka/245/head -> origin/gh/laithsakka/245/head 2025-08-14T21:43:27.7728195Z * [new branch] gh/laithsakka/245/orig -> origin/gh/laithsakka/245/orig 2025-08-14T21:43:27.8172572Z * [new branch] gh/laithsakka/246/base -> origin/gh/laithsakka/246/base 2025-08-14T21:43:27.8173195Z * [new branch] gh/laithsakka/246/head -> origin/gh/laithsakka/246/head 2025-08-14T21:43:27.8173960Z * [new branch] gh/laithsakka/246/orig -> origin/gh/laithsakka/246/orig 2025-08-14T21:43:27.8174512Z * [new branch] gh/laithsakka/247/base -> origin/gh/laithsakka/247/base 2025-08-14T21:43:27.8175103Z * [new branch] gh/laithsakka/247/head -> origin/gh/laithsakka/247/head 2025-08-14T21:43:27.8175660Z * [new branch] gh/laithsakka/247/orig -> origin/gh/laithsakka/247/orig 2025-08-14T21:43:27.8176219Z * [new branch] gh/laithsakka/248/base -> origin/gh/laithsakka/248/base 2025-08-14T21:43:27.8176771Z * [new branch] gh/laithsakka/248/head -> origin/gh/laithsakka/248/head 2025-08-14T21:43:27.8177315Z * [new branch] gh/laithsakka/248/orig -> origin/gh/laithsakka/248/orig 2025-08-14T21:43:27.8177879Z * [new branch] gh/laithsakka/249/base -> origin/gh/laithsakka/249/base 2025-08-14T21:43:27.8178436Z * [new branch] gh/laithsakka/249/head -> origin/gh/laithsakka/249/head 2025-08-14T21:43:27.8178978Z * [new branch] gh/laithsakka/249/orig -> origin/gh/laithsakka/249/orig 2025-08-14T21:43:27.8179530Z * [new branch] gh/laithsakka/250/base -> origin/gh/laithsakka/250/base 2025-08-14T21:43:27.8180156Z * [new branch] gh/laithsakka/250/head -> origin/gh/laithsakka/250/head 2025-08-14T21:43:27.8180837Z * [new branch] gh/laithsakka/250/orig -> origin/gh/laithsakka/250/orig 2025-08-14T21:43:27.8181393Z * [new branch] gh/laithsakka/251/base -> origin/gh/laithsakka/251/base 2025-08-14T21:43:27.8181935Z * [new branch] gh/laithsakka/251/head -> origin/gh/laithsakka/251/head 2025-08-14T21:43:27.8182492Z * [new branch] gh/laithsakka/251/orig -> origin/gh/laithsakka/251/orig 2025-08-14T21:43:27.8183039Z * [new branch] gh/laithsakka/252/base -> origin/gh/laithsakka/252/base 2025-08-14T21:43:27.8183603Z * [new branch] gh/laithsakka/252/head -> origin/gh/laithsakka/252/head 2025-08-14T21:43:27.8184154Z * [new branch] gh/laithsakka/252/orig -> origin/gh/laithsakka/252/orig 2025-08-14T21:43:27.8184689Z * [new branch] gh/laithsakka/253/base -> origin/gh/laithsakka/253/base 2025-08-14T21:43:27.8185250Z * [new branch] gh/laithsakka/253/head -> origin/gh/laithsakka/253/head 2025-08-14T21:43:27.8185799Z * [new branch] gh/laithsakka/253/orig -> origin/gh/laithsakka/253/orig 2025-08-14T21:43:27.8186347Z * [new branch] gh/laithsakka/254/base -> origin/gh/laithsakka/254/base 2025-08-14T21:43:27.8186893Z * [new branch] gh/laithsakka/254/head -> origin/gh/laithsakka/254/head 2025-08-14T21:43:27.8187434Z * [new branch] gh/laithsakka/254/orig -> origin/gh/laithsakka/254/orig 2025-08-14T21:43:27.8187986Z * [new branch] gh/laithsakka/255/base -> origin/gh/laithsakka/255/base 2025-08-14T21:43:27.8188527Z * [new branch] gh/laithsakka/255/head -> origin/gh/laithsakka/255/head 2025-08-14T21:43:27.8189088Z * [new branch] gh/laithsakka/255/orig -> origin/gh/laithsakka/255/orig 2025-08-14T21:43:27.8189624Z * [new branch] gh/laithsakka/256/base -> origin/gh/laithsakka/256/base 2025-08-14T21:43:27.8190171Z * [new branch] gh/laithsakka/256/head -> origin/gh/laithsakka/256/head 2025-08-14T21:43:27.8190726Z * [new branch] gh/laithsakka/256/orig -> origin/gh/laithsakka/256/orig 2025-08-14T21:43:27.8191277Z * [new branch] gh/laithsakka/257/base -> origin/gh/laithsakka/257/base 2025-08-14T21:43:27.8191823Z * [new branch] gh/laithsakka/257/head -> origin/gh/laithsakka/257/head 2025-08-14T21:43:27.8192361Z * [new branch] gh/laithsakka/257/orig -> origin/gh/laithsakka/257/orig 2025-08-14T21:43:27.8192999Z * [new branch] gh/laithsakka/258/base -> origin/gh/laithsakka/258/base 2025-08-14T21:43:27.8193558Z * [new branch] gh/laithsakka/258/head -> origin/gh/laithsakka/258/head 2025-08-14T21:43:27.8194100Z * [new branch] gh/laithsakka/258/orig -> origin/gh/laithsakka/258/orig 2025-08-14T21:43:27.8194655Z * [new branch] gh/laithsakka/259/base -> origin/gh/laithsakka/259/base 2025-08-14T21:43:27.8195204Z * [new branch] gh/laithsakka/259/head -> origin/gh/laithsakka/259/head 2025-08-14T21:43:27.8195754Z * [new branch] gh/laithsakka/259/orig -> origin/gh/laithsakka/259/orig 2025-08-14T21:43:27.8196297Z * [new branch] gh/laithsakka/260/base -> origin/gh/laithsakka/260/base 2025-08-14T21:43:27.8196838Z * [new branch] gh/laithsakka/260/head -> origin/gh/laithsakka/260/head 2025-08-14T21:43:27.8197388Z * [new branch] gh/laithsakka/260/orig -> origin/gh/laithsakka/260/orig 2025-08-14T21:43:27.8197924Z * [new branch] gh/laithsakka/261/base -> origin/gh/laithsakka/261/base 2025-08-14T21:43:27.8664466Z * [new branch] gh/laithsakka/261/head -> origin/gh/laithsakka/261/head 2025-08-14T21:43:27.8665082Z * [new branch] gh/laithsakka/261/orig -> origin/gh/laithsakka/261/orig 2025-08-14T21:43:27.8665630Z * [new branch] gh/laithsakka/262/base -> origin/gh/laithsakka/262/base 2025-08-14T21:43:27.8666379Z * [new branch] gh/laithsakka/262/head -> origin/gh/laithsakka/262/head 2025-08-14T21:43:27.8666932Z * [new branch] gh/laithsakka/262/orig -> origin/gh/laithsakka/262/orig 2025-08-14T21:43:27.8667489Z * [new branch] gh/laithsakka/28/base -> origin/gh/laithsakka/28/base 2025-08-14T21:43:27.8668138Z * [new branch] gh/laithsakka/29/base -> origin/gh/laithsakka/29/base 2025-08-14T21:43:27.8668769Z * [new branch] gh/laithsakka/30/base -> origin/gh/laithsakka/30/base 2025-08-14T21:43:27.8669317Z * [new branch] gh/laithsakka/30/head -> origin/gh/laithsakka/30/head 2025-08-14T21:43:27.8669848Z * [new branch] gh/laithsakka/31/base -> origin/gh/laithsakka/31/base 2025-08-14T21:43:27.8670387Z * [new branch] gh/laithsakka/31/head -> origin/gh/laithsakka/31/head 2025-08-14T21:43:27.8670925Z * [new branch] gh/laithsakka/32/base -> origin/gh/laithsakka/32/base 2025-08-14T21:43:27.8671456Z * [new branch] gh/laithsakka/32/head -> origin/gh/laithsakka/32/head 2025-08-14T21:43:27.8672002Z * [new branch] gh/lucaskabela/1/base -> origin/gh/lucaskabela/1/base 2025-08-14T21:43:27.8672547Z * [new branch] gh/lucaskabela/1/head -> origin/gh/lucaskabela/1/head 2025-08-14T21:43:27.8673106Z * [new branch] gh/lucaskabela/10/base -> origin/gh/lucaskabela/10/base 2025-08-14T21:43:27.8673666Z * [new branch] gh/lucaskabela/10/head -> origin/gh/lucaskabela/10/head 2025-08-14T21:43:27.8674309Z * [new branch] gh/lucaskabela/10/orig -> origin/gh/lucaskabela/10/orig 2025-08-14T21:43:27.8674956Z * [new branch] gh/lucaskabela/11/base -> origin/gh/lucaskabela/11/base 2025-08-14T21:43:27.8675503Z * [new branch] gh/lucaskabela/11/head -> origin/gh/lucaskabela/11/head 2025-08-14T21:43:27.8676057Z * [new branch] gh/lucaskabela/11/orig -> origin/gh/lucaskabela/11/orig 2025-08-14T21:43:27.8676612Z * [new branch] gh/lucaskabela/12/base -> origin/gh/lucaskabela/12/base 2025-08-14T21:43:27.8677154Z * [new branch] gh/lucaskabela/12/head -> origin/gh/lucaskabela/12/head 2025-08-14T21:43:27.8677713Z * [new branch] gh/lucaskabela/12/orig -> origin/gh/lucaskabela/12/orig 2025-08-14T21:43:27.8678376Z * [new branch] gh/lucaskabela/13/base -> origin/gh/lucaskabela/13/base 2025-08-14T21:43:27.8678931Z * [new branch] gh/lucaskabela/13/head -> origin/gh/lucaskabela/13/head 2025-08-14T21:43:27.8679479Z * [new branch] gh/lucaskabela/13/orig -> origin/gh/lucaskabela/13/orig 2025-08-14T21:43:27.8680045Z * [new branch] gh/lucaskabela/14/base -> origin/gh/lucaskabela/14/base 2025-08-14T21:43:27.8680696Z * [new branch] gh/lucaskabela/14/head -> origin/gh/lucaskabela/14/head 2025-08-14T21:43:27.8681332Z * [new branch] gh/lucaskabela/14/orig -> origin/gh/lucaskabela/14/orig 2025-08-14T21:43:27.8681892Z * [new branch] gh/lucaskabela/15/base -> origin/gh/lucaskabela/15/base 2025-08-14T21:43:27.8682430Z * [new branch] gh/lucaskabela/15/head -> origin/gh/lucaskabela/15/head 2025-08-14T21:43:27.8682977Z * [new branch] gh/lucaskabela/15/orig -> origin/gh/lucaskabela/15/orig 2025-08-14T21:43:27.8683536Z * [new branch] gh/lucaskabela/16/base -> origin/gh/lucaskabela/16/base 2025-08-14T21:43:27.8684081Z * [new branch] gh/lucaskabela/16/head -> origin/gh/lucaskabela/16/head 2025-08-14T21:43:27.8684645Z * [new branch] gh/lucaskabela/16/orig -> origin/gh/lucaskabela/16/orig 2025-08-14T21:43:27.8685186Z * [new branch] gh/lucaskabela/17/base -> origin/gh/lucaskabela/17/base 2025-08-14T21:43:27.8685846Z * [new branch] gh/lucaskabela/17/head -> origin/gh/lucaskabela/17/head 2025-08-14T21:43:27.8686407Z * [new branch] gh/lucaskabela/17/orig -> origin/gh/lucaskabela/17/orig 2025-08-14T21:43:27.8687048Z * [new branch] gh/lucaskabela/2/base -> origin/gh/lucaskabela/2/base 2025-08-14T21:43:27.8687603Z * [new branch] gh/lucaskabela/2/head -> origin/gh/lucaskabela/2/head 2025-08-14T21:43:27.8688235Z * [new branch] gh/lucaskabela/2/orig -> origin/gh/lucaskabela/2/orig 2025-08-14T21:43:27.8688782Z * [new branch] gh/lucaskabela/3/base -> origin/gh/lucaskabela/3/base 2025-08-14T21:43:27.8689473Z * [new branch] gh/lucaskabela/3/head -> origin/gh/lucaskabela/3/head 2025-08-14T21:43:27.8690115Z * [new branch] gh/lucaskabela/3/orig -> origin/gh/lucaskabela/3/orig 2025-08-14T21:43:27.9173275Z * [new branch] gh/lucaskabela/4/base -> origin/gh/lucaskabela/4/base 2025-08-14T21:43:27.9173896Z * [new branch] gh/lucaskabela/4/head -> origin/gh/lucaskabela/4/head 2025-08-14T21:43:27.9174448Z * [new branch] gh/lucaskabela/4/orig -> origin/gh/lucaskabela/4/orig 2025-08-14T21:43:27.9175089Z * [new branch] gh/lucaskabela/5/base -> origin/gh/lucaskabela/5/base 2025-08-14T21:43:27.9175631Z * [new branch] gh/lucaskabela/5/head -> origin/gh/lucaskabela/5/head 2025-08-14T21:43:27.9176286Z * [new branch] gh/lucaskabela/5/orig -> origin/gh/lucaskabela/5/orig 2025-08-14T21:43:27.9176826Z * [new branch] gh/lucaskabela/6/base -> origin/gh/lucaskabela/6/base 2025-08-14T21:43:27.9177361Z * [new branch] gh/lucaskabela/6/head -> origin/gh/lucaskabela/6/head 2025-08-14T21:43:27.9177903Z * [new branch] gh/lucaskabela/6/orig -> origin/gh/lucaskabela/6/orig 2025-08-14T21:43:27.9178451Z * [new branch] gh/lucaskabela/7/base -> origin/gh/lucaskabela/7/base 2025-08-14T21:43:27.9178994Z * [new branch] gh/lucaskabela/7/head -> origin/gh/lucaskabela/7/head 2025-08-14T21:43:27.9179536Z * [new branch] gh/lucaskabela/7/orig -> origin/gh/lucaskabela/7/orig 2025-08-14T21:43:27.9180140Z * [new branch] gh/lucaskabela/8/base -> origin/gh/lucaskabela/8/base 2025-08-14T21:43:27.9180843Z * [new branch] gh/lucaskabela/8/head -> origin/gh/lucaskabela/8/head 2025-08-14T21:43:27.9181477Z * [new branch] gh/lucaskabela/8/orig -> origin/gh/lucaskabela/8/orig 2025-08-14T21:43:27.9182033Z * [new branch] gh/lucaskabela/9/base -> origin/gh/lucaskabela/9/base 2025-08-14T21:43:27.9182675Z * [new branch] gh/lucaskabela/9/head -> origin/gh/lucaskabela/9/head 2025-08-14T21:43:27.9183213Z * [new branch] gh/lucaskabela/9/orig -> origin/gh/lucaskabela/9/orig 2025-08-14T21:43:27.9183738Z * [new branch] gh/lw/1/base -> origin/gh/lw/1/base 2025-08-14T21:43:27.9184194Z * [new branch] gh/lw/1/head -> origin/gh/lw/1/head 2025-08-14T21:43:27.9184647Z * [new branch] gh/lw/1/orig -> origin/gh/lw/1/orig 2025-08-14T21:43:27.9185095Z * [new branch] gh/lw/2/base -> origin/gh/lw/2/base 2025-08-14T21:43:27.9185552Z * [new branch] gh/lw/2/head -> origin/gh/lw/2/head 2025-08-14T21:43:27.9185994Z * [new branch] gh/lw/2/orig -> origin/gh/lw/2/orig 2025-08-14T21:43:27.9186435Z * [new branch] gh/lw/3/base -> origin/gh/lw/3/base 2025-08-14T21:43:27.9186894Z * [new branch] gh/lw/3/head -> origin/gh/lw/3/head 2025-08-14T21:43:27.9187343Z * [new branch] gh/lw/3/orig -> origin/gh/lw/3/orig 2025-08-14T21:43:27.9188047Z * [new branch] gh/malfet/14/base -> origin/gh/malfet/14/base 2025-08-14T21:43:27.9188659Z * [new branch] gh/malfet/330/base -> origin/gh/malfet/330/base 2025-08-14T21:43:27.9189164Z * [new branch] gh/malfet/330/head -> origin/gh/malfet/330/head 2025-08-14T21:43:27.9189673Z * [new branch] gh/malfet/330/orig -> origin/gh/malfet/330/orig 2025-08-14T21:43:27.9190174Z * [new branch] gh/malfet/396/base -> origin/gh/malfet/396/base 2025-08-14T21:43:27.9190686Z * [new branch] gh/malfet/396/head -> origin/gh/malfet/396/head 2025-08-14T21:43:27.9191187Z * [new branch] gh/malfet/396/orig -> origin/gh/malfet/396/orig 2025-08-14T21:43:27.9191679Z * [new branch] gh/malfet/397/base -> origin/gh/malfet/397/base 2025-08-14T21:43:27.9192183Z * [new branch] gh/malfet/397/head -> origin/gh/malfet/397/head 2025-08-14T21:43:27.9192679Z * [new branch] gh/malfet/397/orig -> origin/gh/malfet/397/orig 2025-08-14T21:43:27.9193186Z * [new branch] gh/malfet/398/base -> origin/gh/malfet/398/base 2025-08-14T21:43:27.9193681Z * [new branch] gh/malfet/398/head -> origin/gh/malfet/398/head 2025-08-14T21:43:27.9194282Z * [new branch] gh/malfet/398/orig -> origin/gh/malfet/398/orig 2025-08-14T21:43:27.9194881Z * [new branch] gh/malfet/399/base -> origin/gh/malfet/399/base 2025-08-14T21:43:27.9195381Z * [new branch] gh/malfet/399/head -> origin/gh/malfet/399/head 2025-08-14T21:43:27.9195885Z * [new branch] gh/malfet/399/orig -> origin/gh/malfet/399/orig 2025-08-14T21:43:27.9196376Z * [new branch] gh/malfet/414/base -> origin/gh/malfet/414/base 2025-08-14T21:43:27.9196878Z * [new branch] gh/malfet/414/head -> origin/gh/malfet/414/head 2025-08-14T21:43:27.9197389Z * [new branch] gh/malfet/414/orig -> origin/gh/malfet/414/orig 2025-08-14T21:43:27.9197887Z * [new branch] gh/malfet/417/base -> origin/gh/malfet/417/base 2025-08-14T21:43:27.9198391Z * [new branch] gh/malfet/417/head -> origin/gh/malfet/417/head 2025-08-14T21:43:27.9673727Z * [new branch] gh/malfet/417/orig -> origin/gh/malfet/417/orig 2025-08-14T21:43:27.9674488Z * [new branch] gh/malfet/418/base -> origin/gh/malfet/418/base 2025-08-14T21:43:27.9675010Z * [new branch] gh/malfet/418/head -> origin/gh/malfet/418/head 2025-08-14T21:43:27.9675518Z * [new branch] gh/malfet/418/orig -> origin/gh/malfet/418/orig 2025-08-14T21:43:27.9676031Z * [new branch] gh/malfet/422/base -> origin/gh/malfet/422/base 2025-08-14T21:43:27.9676536Z * [new branch] gh/malfet/422/head -> origin/gh/malfet/422/head 2025-08-14T21:43:27.9677040Z * [new branch] gh/malfet/422/orig -> origin/gh/malfet/422/orig 2025-08-14T21:43:27.9677544Z * [new branch] gh/malfet/438/base -> origin/gh/malfet/438/base 2025-08-14T21:43:27.9678035Z * [new branch] gh/malfet/438/head -> origin/gh/malfet/438/head 2025-08-14T21:43:27.9678561Z * [new branch] gh/malfet/438/orig -> origin/gh/malfet/438/orig 2025-08-14T21:43:27.9679067Z * [new branch] gh/malfet/439/base -> origin/gh/malfet/439/base 2025-08-14T21:43:27.9679570Z * [new branch] gh/malfet/439/head -> origin/gh/malfet/439/head 2025-08-14T21:43:27.9680073Z * [new branch] gh/malfet/439/orig -> origin/gh/malfet/439/orig 2025-08-14T21:43:27.9680568Z * [new branch] gh/malfet/440/base -> origin/gh/malfet/440/base 2025-08-14T21:43:27.9681192Z * [new branch] gh/malfet/440/head -> origin/gh/malfet/440/head 2025-08-14T21:43:27.9681689Z * [new branch] gh/malfet/440/orig -> origin/gh/malfet/440/orig 2025-08-14T21:43:27.9682191Z * [new branch] gh/malfet/441/base -> origin/gh/malfet/441/base 2025-08-14T21:43:27.9682696Z * [new branch] gh/malfet/441/head -> origin/gh/malfet/441/head 2025-08-14T21:43:27.9683195Z * [new branch] gh/malfet/441/orig -> origin/gh/malfet/441/orig 2025-08-14T21:43:27.9683705Z * [new branch] gh/malfet/442/base -> origin/gh/malfet/442/base 2025-08-14T21:43:27.9684204Z * [new branch] gh/malfet/442/head -> origin/gh/malfet/442/head 2025-08-14T21:43:27.9684713Z * [new branch] gh/malfet/442/orig -> origin/gh/malfet/442/orig 2025-08-14T21:43:27.9685213Z * [new branch] gh/malfet/443/base -> origin/gh/malfet/443/base 2025-08-14T21:43:27.9685710Z * [new branch] gh/malfet/443/head -> origin/gh/malfet/443/head 2025-08-14T21:43:27.9686214Z * [new branch] gh/malfet/443/orig -> origin/gh/malfet/443/orig 2025-08-14T21:43:27.9686708Z * [new branch] gh/malfet/444/base -> origin/gh/malfet/444/base 2025-08-14T21:43:27.9687221Z * [new branch] gh/malfet/444/head -> origin/gh/malfet/444/head 2025-08-14T21:43:27.9687727Z * [new branch] gh/malfet/444/orig -> origin/gh/malfet/444/orig 2025-08-14T21:43:27.9688230Z * [new branch] gh/malfet/445/base -> origin/gh/malfet/445/base 2025-08-14T21:43:27.9688736Z * [new branch] gh/malfet/445/head -> origin/gh/malfet/445/head 2025-08-14T21:43:27.9689234Z * [new branch] gh/malfet/445/orig -> origin/gh/malfet/445/orig 2025-08-14T21:43:27.9689737Z * [new branch] gh/malfet/446/base -> origin/gh/malfet/446/base 2025-08-14T21:43:27.9690240Z * [new branch] gh/malfet/446/head -> origin/gh/malfet/446/head 2025-08-14T21:43:27.9690745Z * [new branch] gh/malfet/446/orig -> origin/gh/malfet/446/orig 2025-08-14T21:43:27.9691246Z * [new branch] gh/malfet/447/base -> origin/gh/malfet/447/base 2025-08-14T21:43:27.9691735Z * [new branch] gh/malfet/447/head -> origin/gh/malfet/447/head 2025-08-14T21:43:27.9692335Z * [new branch] gh/malfet/448/base -> origin/gh/malfet/448/base 2025-08-14T21:43:27.9692843Z * [new branch] gh/malfet/448/head -> origin/gh/malfet/448/head 2025-08-14T21:43:27.9693355Z * [new branch] gh/malfet/449/base -> origin/gh/malfet/449/base 2025-08-14T21:43:27.9693867Z * [new branch] gh/malfet/449/head -> origin/gh/malfet/449/head 2025-08-14T21:43:27.9694367Z * [new branch] gh/malfet/450/base -> origin/gh/malfet/450/base 2025-08-14T21:43:27.9694883Z * [new branch] gh/malfet/450/head -> origin/gh/malfet/450/head 2025-08-14T21:43:27.9695383Z * [new branch] gh/malfet/451/base -> origin/gh/malfet/451/base 2025-08-14T21:43:27.9695889Z * [new branch] gh/malfet/451/head -> origin/gh/malfet/451/head 2025-08-14T21:43:27.9696389Z * [new branch] gh/malfet/452/base -> origin/gh/malfet/452/base 2025-08-14T21:43:27.9696888Z * [new branch] gh/malfet/452/head -> origin/gh/malfet/452/head 2025-08-14T21:43:27.9697388Z * [new branch] gh/malfet/452/orig -> origin/gh/malfet/452/orig 2025-08-14T21:43:27.9697882Z * [new branch] gh/malfet/453/base -> origin/gh/malfet/453/base 2025-08-14T21:43:28.0161767Z * [new branch] gh/malfet/453/head -> origin/gh/malfet/453/head 2025-08-14T21:43:28.0162510Z * [new branch] gh/malfet/453/orig -> origin/gh/malfet/453/orig 2025-08-14T21:43:28.0163057Z * [new branch] gh/malfet/454/base -> origin/gh/malfet/454/base 2025-08-14T21:43:28.0163571Z * [new branch] gh/malfet/454/head -> origin/gh/malfet/454/head 2025-08-14T21:43:28.0164073Z * [new branch] gh/malfet/454/orig -> origin/gh/malfet/454/orig 2025-08-14T21:43:28.0164590Z * [new branch] gh/malfet/455/base -> origin/gh/malfet/455/base 2025-08-14T21:43:28.0165110Z * [new branch] gh/malfet/455/head -> origin/gh/malfet/455/head 2025-08-14T21:43:28.0165709Z * [new branch] gh/malfet/455/orig -> origin/gh/malfet/455/orig 2025-08-14T21:43:28.0166219Z * [new branch] gh/malfet/456/base -> origin/gh/malfet/456/base 2025-08-14T21:43:28.0166816Z * [new branch] gh/malfet/456/head -> origin/gh/malfet/456/head 2025-08-14T21:43:28.0167339Z * [new branch] gh/malfet/456/orig -> origin/gh/malfet/456/orig 2025-08-14T21:43:28.0167850Z * [new branch] gh/malfet/457/base -> origin/gh/malfet/457/base 2025-08-14T21:43:28.0168351Z * [new branch] gh/malfet/457/head -> origin/gh/malfet/457/head 2025-08-14T21:43:28.0168869Z * [new branch] gh/malfet/457/orig -> origin/gh/malfet/457/orig 2025-08-14T21:43:28.0169380Z * [new branch] gh/malfet/458/base -> origin/gh/malfet/458/base 2025-08-14T21:43:28.0169875Z * [new branch] gh/malfet/458/head -> origin/gh/malfet/458/head 2025-08-14T21:43:28.0170382Z * [new branch] gh/malfet/458/orig -> origin/gh/malfet/458/orig 2025-08-14T21:43:28.0170887Z * [new branch] gh/malfet/459/base -> origin/gh/malfet/459/base 2025-08-14T21:43:28.0171382Z * [new branch] gh/malfet/459/head -> origin/gh/malfet/459/head 2025-08-14T21:43:28.0171884Z * [new branch] gh/malfet/459/orig -> origin/gh/malfet/459/orig 2025-08-14T21:43:28.0172474Z * [new branch] gh/malfet/460/base -> origin/gh/malfet/460/base 2025-08-14T21:43:28.0173070Z * [new branch] gh/malfet/460/head -> origin/gh/malfet/460/head 2025-08-14T21:43:28.0173569Z * [new branch] gh/malfet/460/orig -> origin/gh/malfet/460/orig 2025-08-14T21:43:28.0174063Z * [new branch] gh/malfet/461/base -> origin/gh/malfet/461/base 2025-08-14T21:43:28.0174697Z * [new branch] gh/malfet/461/head -> origin/gh/malfet/461/head 2025-08-14T21:43:28.0175198Z * [new branch] gh/malfet/461/orig -> origin/gh/malfet/461/orig 2025-08-14T21:43:28.0175706Z * [new branch] gh/malfet/462/base -> origin/gh/malfet/462/base 2025-08-14T21:43:28.0176208Z * [new branch] gh/malfet/462/head -> origin/gh/malfet/462/head 2025-08-14T21:43:28.0176723Z * [new branch] gh/malfet/462/orig -> origin/gh/malfet/462/orig 2025-08-14T21:43:28.0177223Z * [new branch] gh/malfet/463/base -> origin/gh/malfet/463/base 2025-08-14T21:43:28.0177721Z * [new branch] gh/malfet/463/head -> origin/gh/malfet/463/head 2025-08-14T21:43:28.0178320Z * [new branch] gh/malfet/463/orig -> origin/gh/malfet/463/orig 2025-08-14T21:43:28.0187978Z * [new branch] gh/malfet/464/base -> origin/gh/malfet/464/base 2025-08-14T21:43:28.0188516Z * [new branch] gh/malfet/464/head -> origin/gh/malfet/464/head 2025-08-14T21:43:28.0189040Z * [new branch] gh/malfet/464/orig -> origin/gh/malfet/464/orig 2025-08-14T21:43:28.0189547Z * [new branch] gh/malfet/465/base -> origin/gh/malfet/465/base 2025-08-14T21:43:28.0190055Z * [new branch] gh/malfet/465/head -> origin/gh/malfet/465/head 2025-08-14T21:43:28.0190728Z * [new branch] gh/malfet/465/orig -> origin/gh/malfet/465/orig 2025-08-14T21:43:28.0191352Z * [new branch] gh/malfet/466/base -> origin/gh/malfet/466/base 2025-08-14T21:43:28.0191955Z * [new branch] gh/malfet/466/head -> origin/gh/malfet/466/head 2025-08-14T21:43:28.0192463Z * [new branch] gh/malfet/466/orig -> origin/gh/malfet/466/orig 2025-08-14T21:43:28.0192987Z * [new branch] gh/malfet/467/base -> origin/gh/malfet/467/base 2025-08-14T21:43:28.0193499Z * [new branch] gh/malfet/467/head -> origin/gh/malfet/467/head 2025-08-14T21:43:28.0194009Z * [new branch] gh/malfet/467/orig -> origin/gh/malfet/467/orig 2025-08-14T21:43:28.0194526Z * [new branch] gh/malfet/468/base -> origin/gh/malfet/468/base 2025-08-14T21:43:28.0195030Z * [new branch] gh/malfet/468/head -> origin/gh/malfet/468/head 2025-08-14T21:43:28.0195561Z * [new branch] gh/malfet/468/orig -> origin/gh/malfet/468/orig 2025-08-14T21:43:28.0676972Z * [new branch] gh/malfet/469/base -> origin/gh/malfet/469/base 2025-08-14T21:43:28.0677536Z * [new branch] gh/malfet/469/head -> origin/gh/malfet/469/head 2025-08-14T21:43:28.0678063Z * [new branch] gh/malfet/469/orig -> origin/gh/malfet/469/orig 2025-08-14T21:43:28.0678603Z * [new branch] gh/malfet/470/base -> origin/gh/malfet/470/base 2025-08-14T21:43:28.0679128Z * [new branch] gh/malfet/470/head -> origin/gh/malfet/470/head 2025-08-14T21:43:28.0679735Z * [new branch] gh/malfet/470/orig -> origin/gh/malfet/470/orig 2025-08-14T21:43:28.0680342Z * [new branch] gh/malfet/471/base -> origin/gh/malfet/471/base 2025-08-14T21:43:28.0680867Z * [new branch] gh/malfet/471/head -> origin/gh/malfet/471/head 2025-08-14T21:43:28.0681362Z * [new branch] gh/malfet/471/orig -> origin/gh/malfet/471/orig 2025-08-14T21:43:28.0681870Z * [new branch] gh/malfet/472/base -> origin/gh/malfet/472/base 2025-08-14T21:43:28.0682368Z * [new branch] gh/malfet/472/head -> origin/gh/malfet/472/head 2025-08-14T21:43:28.0682871Z * [new branch] gh/malfet/472/orig -> origin/gh/malfet/472/orig 2025-08-14T21:43:28.0683569Z * [new branch] gh/malfet/473/base -> origin/gh/malfet/473/base 2025-08-14T21:43:28.0684072Z * [new branch] gh/malfet/473/head -> origin/gh/malfet/473/head 2025-08-14T21:43:28.0684589Z * [new branch] gh/malfet/473/orig -> origin/gh/malfet/473/orig 2025-08-14T21:43:28.0685088Z * [new branch] gh/malfet/474/base -> origin/gh/malfet/474/base 2025-08-14T21:43:28.0685704Z * [new branch] gh/malfet/474/head -> origin/gh/malfet/474/head 2025-08-14T21:43:28.0686215Z * [new branch] gh/malfet/474/orig -> origin/gh/malfet/474/orig 2025-08-14T21:43:28.0686805Z * [new branch] gh/malfet/475/base -> origin/gh/malfet/475/base 2025-08-14T21:43:28.0687315Z * [new branch] gh/malfet/475/head -> origin/gh/malfet/475/head 2025-08-14T21:43:28.0687808Z * [new branch] gh/malfet/475/orig -> origin/gh/malfet/475/orig 2025-08-14T21:43:28.0688317Z * [new branch] gh/malfet/476/base -> origin/gh/malfet/476/base 2025-08-14T21:43:28.0688809Z * [new branch] gh/malfet/476/head -> origin/gh/malfet/476/head 2025-08-14T21:43:28.0689321Z * [new branch] gh/malfet/476/orig -> origin/gh/malfet/476/orig 2025-08-14T21:43:28.0689827Z * [new branch] gh/malfet/477/base -> origin/gh/malfet/477/base 2025-08-14T21:43:28.0690440Z * [new branch] gh/malfet/477/head -> origin/gh/malfet/477/head 2025-08-14T21:43:28.0690949Z * [new branch] gh/malfet/477/orig -> origin/gh/malfet/477/orig 2025-08-14T21:43:28.0691448Z * [new branch] gh/malfet/478/base -> origin/gh/malfet/478/base 2025-08-14T21:43:28.0692050Z * [new branch] gh/malfet/478/head -> origin/gh/malfet/478/head 2025-08-14T21:43:28.0692648Z * [new branch] gh/malfet/478/orig -> origin/gh/malfet/478/orig 2025-08-14T21:43:28.0693152Z * [new branch] gh/malfet/479/base -> origin/gh/malfet/479/base 2025-08-14T21:43:28.0693654Z * [new branch] gh/malfet/479/head -> origin/gh/malfet/479/head 2025-08-14T21:43:28.0694151Z * [new branch] gh/malfet/479/orig -> origin/gh/malfet/479/orig 2025-08-14T21:43:28.0694658Z * [new branch] gh/malfet/480/base -> origin/gh/malfet/480/base 2025-08-14T21:43:28.0695162Z * [new branch] gh/malfet/480/head -> origin/gh/malfet/480/head 2025-08-14T21:43:28.0695654Z * [new branch] gh/malfet/480/orig -> origin/gh/malfet/480/orig 2025-08-14T21:43:28.0696159Z * [new branch] gh/malfet/481/base -> origin/gh/malfet/481/base 2025-08-14T21:43:28.0696665Z * [new branch] gh/malfet/481/head -> origin/gh/malfet/481/head 2025-08-14T21:43:28.0697174Z * [new branch] gh/malfet/481/orig -> origin/gh/malfet/481/orig 2025-08-14T21:43:28.0697677Z * [new branch] gh/malfet/482/base -> origin/gh/malfet/482/base 2025-08-14T21:43:28.0698274Z * [new branch] gh/malfet/482/head -> origin/gh/malfet/482/head 2025-08-14T21:43:28.0698886Z * [new branch] gh/malfet/482/orig -> origin/gh/malfet/482/orig 2025-08-14T21:43:28.0699388Z * [new branch] gh/malfet/483/base -> origin/gh/malfet/483/base 2025-08-14T21:43:28.0699977Z * [new branch] gh/malfet/483/head -> origin/gh/malfet/483/head 2025-08-14T21:43:28.0700476Z * [new branch] gh/malfet/483/orig -> origin/gh/malfet/483/orig 2025-08-14T21:43:28.0700999Z * [new branch] gh/malfet/484/base -> origin/gh/malfet/484/base 2025-08-14T21:43:28.0701517Z * [new branch] gh/malfet/484/head -> origin/gh/malfet/484/head 2025-08-14T21:43:28.0702162Z * [new branch] gh/malfet/484/orig -> origin/gh/malfet/484/orig 2025-08-14T21:43:28.1190735Z * [new branch] gh/malfet/485/base -> origin/gh/malfet/485/base 2025-08-14T21:43:28.1191302Z * [new branch] gh/malfet/485/head -> origin/gh/malfet/485/head 2025-08-14T21:43:28.1191908Z * [new branch] gh/malfet/485/orig -> origin/gh/malfet/485/orig 2025-08-14T21:43:28.1192426Z * [new branch] gh/malfet/486/base -> origin/gh/malfet/486/base 2025-08-14T21:43:28.1193046Z * [new branch] gh/malfet/486/head -> origin/gh/malfet/486/head 2025-08-14T21:43:28.1193568Z * [new branch] gh/malfet/486/orig -> origin/gh/malfet/486/orig 2025-08-14T21:43:28.1194080Z * [new branch] gh/malfet/487/base -> origin/gh/malfet/487/base 2025-08-14T21:43:28.1194585Z * [new branch] gh/malfet/487/head -> origin/gh/malfet/487/head 2025-08-14T21:43:28.1195111Z * [new branch] gh/malfet/487/orig -> origin/gh/malfet/487/orig 2025-08-14T21:43:28.1195604Z * [new branch] gh/malfet/488/base -> origin/gh/malfet/488/base 2025-08-14T21:43:28.1196107Z * [new branch] gh/malfet/488/head -> origin/gh/malfet/488/head 2025-08-14T21:43:28.1196609Z * [new branch] gh/malfet/488/orig -> origin/gh/malfet/488/orig 2025-08-14T21:43:28.1197272Z * [new branch] gh/malfet/489/base -> origin/gh/malfet/489/base 2025-08-14T21:43:28.1197786Z * [new branch] gh/malfet/489/head -> origin/gh/malfet/489/head 2025-08-14T21:43:28.1198388Z * [new branch] gh/malfet/489/orig -> origin/gh/malfet/489/orig 2025-08-14T21:43:28.1198900Z * [new branch] gh/malfet/490/base -> origin/gh/malfet/490/base 2025-08-14T21:43:28.1199499Z * [new branch] gh/malfet/490/head -> origin/gh/malfet/490/head 2025-08-14T21:43:28.1200004Z * [new branch] gh/malfet/490/orig -> origin/gh/malfet/490/orig 2025-08-14T21:43:28.1200509Z * [new branch] gh/malfet/64/base -> origin/gh/malfet/64/base 2025-08-14T21:43:28.1201000Z * [new branch] gh/malfet/64/head -> origin/gh/malfet/64/head 2025-08-14T21:43:28.1201554Z * [new branch] gh/manuelcandales/10/base -> origin/gh/manuelcandales/10/base 2025-08-14T21:43:28.1202147Z * [new branch] gh/manuelcandales/10/head -> origin/gh/manuelcandales/10/head 2025-08-14T21:43:28.1202746Z * [new branch] gh/manuelcandales/10/orig -> origin/gh/manuelcandales/10/orig 2025-08-14T21:43:28.1203340Z * [new branch] gh/manuelcandales/9/base -> origin/gh/manuelcandales/9/base 2025-08-14T21:43:28.1203934Z * [new branch] gh/manuelcandales/9/head -> origin/gh/manuelcandales/9/head 2025-08-14T21:43:28.1204611Z * [new branch] gh/manuelcandales/9/orig -> origin/gh/manuelcandales/9/orig 2025-08-14T21:43:28.1205156Z * [new branch] gh/markkm/1/base -> origin/gh/markkm/1/base 2025-08-14T21:43:28.1205774Z * [new branch] gh/masnesral/204/base -> origin/gh/masnesral/204/base 2025-08-14T21:43:28.1206318Z * [new branch] gh/masnesral/204/head -> origin/gh/masnesral/204/head 2025-08-14T21:43:28.1206852Z * [new branch] gh/masnesral/204/orig -> origin/gh/masnesral/204/orig 2025-08-14T21:43:28.1207387Z * [new branch] gh/masnesral/223/base -> origin/gh/masnesral/223/base 2025-08-14T21:43:28.1207915Z * [new branch] gh/masnesral/223/head -> origin/gh/masnesral/223/head 2025-08-14T21:43:28.1208451Z * [new branch] gh/masnesral/223/orig -> origin/gh/masnesral/223/orig 2025-08-14T21:43:28.1208993Z * [new branch] gh/masnesral/224/base -> origin/gh/masnesral/224/base 2025-08-14T21:43:28.1209626Z * [new branch] gh/masnesral/224/head -> origin/gh/masnesral/224/head 2025-08-14T21:43:28.1210174Z * [new branch] gh/masnesral/224/orig -> origin/gh/masnesral/224/orig 2025-08-14T21:43:28.1210792Z * [new branch] gh/masnesral/225/base -> origin/gh/masnesral/225/base 2025-08-14T21:43:28.1211338Z * [new branch] gh/masnesral/225/head -> origin/gh/masnesral/225/head 2025-08-14T21:43:28.1211962Z * [new branch] gh/masnesral/225/orig -> origin/gh/masnesral/225/orig 2025-08-14T21:43:28.1212501Z * [new branch] gh/masnesral/226/base -> origin/gh/masnesral/226/base 2025-08-14T21:43:28.1213048Z * [new branch] gh/masnesral/226/head -> origin/gh/masnesral/226/head 2025-08-14T21:43:28.1213580Z * [new branch] gh/masnesral/226/orig -> origin/gh/masnesral/226/orig 2025-08-14T21:43:28.1214126Z * [new branch] gh/masnesral/227/base -> origin/gh/masnesral/227/base 2025-08-14T21:43:28.1214663Z * [new branch] gh/masnesral/227/head -> origin/gh/masnesral/227/head 2025-08-14T21:43:28.1215204Z * [new branch] gh/masnesral/227/orig -> origin/gh/masnesral/227/orig 2025-08-14T21:43:28.1215740Z * [new branch] gh/masnesral/228/base -> origin/gh/masnesral/228/base 2025-08-14T21:43:28.1216274Z * [new branch] gh/masnesral/228/head -> origin/gh/masnesral/228/head 2025-08-14T21:43:28.1691095Z * [new branch] gh/masnesral/228/orig -> origin/gh/masnesral/228/orig 2025-08-14T21:43:28.1691785Z * [new branch] gh/masnesral/229/base -> origin/gh/masnesral/229/base 2025-08-14T21:43:28.1692346Z * [new branch] gh/masnesral/229/head -> origin/gh/masnesral/229/head 2025-08-14T21:43:28.1692997Z * [new branch] gh/masnesral/229/orig -> origin/gh/masnesral/229/orig 2025-08-14T21:43:28.1693574Z * [new branch] gh/masnesral/230/base -> origin/gh/masnesral/230/base 2025-08-14T21:43:28.1694125Z * [new branch] gh/masnesral/230/head -> origin/gh/masnesral/230/head 2025-08-14T21:43:28.1694757Z * [new branch] gh/masnesral/230/orig -> origin/gh/masnesral/230/orig 2025-08-14T21:43:28.1695367Z * [new branch] gh/masnesral/231/base -> origin/gh/masnesral/231/base 2025-08-14T21:43:28.1695906Z * [new branch] gh/masnesral/231/head -> origin/gh/masnesral/231/head 2025-08-14T21:43:28.1696451Z * [new branch] gh/masnesral/231/orig -> origin/gh/masnesral/231/orig 2025-08-14T21:43:28.1696997Z * [new branch] gh/masnesral/232/base -> origin/gh/masnesral/232/base 2025-08-14T21:43:28.1697538Z * [new branch] gh/masnesral/232/head -> origin/gh/masnesral/232/head 2025-08-14T21:43:28.1698127Z * [new branch] gh/masnesral/232/orig -> origin/gh/masnesral/232/orig 2025-08-14T21:43:28.1698707Z * [new branch] gh/masnesral/233/base -> origin/gh/masnesral/233/base 2025-08-14T21:43:28.1699323Z * [new branch] gh/masnesral/233/head -> origin/gh/masnesral/233/head 2025-08-14T21:43:28.1699948Z * [new branch] gh/masnesral/233/orig -> origin/gh/masnesral/233/orig 2025-08-14T21:43:28.1700488Z * [new branch] gh/masnesral/234/base -> origin/gh/masnesral/234/base 2025-08-14T21:43:28.1701037Z * [new branch] gh/masnesral/234/head -> origin/gh/masnesral/234/head 2025-08-14T21:43:28.1701586Z * [new branch] gh/masnesral/234/orig -> origin/gh/masnesral/234/orig 2025-08-14T21:43:28.1702121Z * [new branch] gh/masnesral/235/base -> origin/gh/masnesral/235/base 2025-08-14T21:43:28.1702665Z * [new branch] gh/masnesral/235/head -> origin/gh/masnesral/235/head 2025-08-14T21:43:28.1703355Z * [new branch] gh/masnesral/235/orig -> origin/gh/masnesral/235/orig 2025-08-14T21:43:28.1703904Z * [new branch] gh/masnesral/236/base -> origin/gh/masnesral/236/base 2025-08-14T21:43:28.1704537Z * [new branch] gh/masnesral/236/head -> origin/gh/masnesral/236/head 2025-08-14T21:43:28.1705065Z * [new branch] gh/masnesral/236/orig -> origin/gh/masnesral/236/orig 2025-08-14T21:43:28.1705699Z * [new branch] gh/masnesral/34/base -> origin/gh/masnesral/34/base 2025-08-14T21:43:28.1706240Z * [new branch] gh/mhorowitz/0/base -> origin/gh/mhorowitz/0/base 2025-08-14T21:43:28.1706772Z * [new branch] gh/mhorowitz/0/head -> origin/gh/mhorowitz/0/head 2025-08-14T21:43:28.1707298Z * [new branch] gh/mhorowitz/1/base -> origin/gh/mhorowitz/1/base 2025-08-14T21:43:28.1707811Z * [new branch] gh/mhorowitz/1/head -> origin/gh/mhorowitz/1/head 2025-08-14T21:43:28.1708339Z * [new branch] gh/mhorowitz/2/base -> origin/gh/mhorowitz/2/base 2025-08-14T21:43:28.1708865Z * [new branch] gh/mhorowitz/2/head -> origin/gh/mhorowitz/2/head 2025-08-14T21:43:28.1709387Z * [new branch] gh/mhorowitz/3/base -> origin/gh/mhorowitz/3/base 2025-08-14T21:43:28.1709913Z * [new branch] gh/mhorowitz/3/head -> origin/gh/mhorowitz/3/head 2025-08-14T21:43:28.1710539Z * [new branch] gh/mhorowitz/4/base -> origin/gh/mhorowitz/4/base 2025-08-14T21:43:28.1711159Z * [new branch] gh/mhorowitz/4/head -> origin/gh/mhorowitz/4/head 2025-08-14T21:43:28.1711763Z * [new branch] gh/mhorowitz/5/base -> origin/gh/mhorowitz/5/base 2025-08-14T21:43:28.1712296Z * [new branch] gh/mhorowitz/5/head -> origin/gh/mhorowitz/5/head 2025-08-14T21:43:28.1712814Z * [new branch] gh/mhorowitz/6/base -> origin/gh/mhorowitz/6/base 2025-08-14T21:43:28.1713339Z * [new branch] gh/mhorowitz/6/head -> origin/gh/mhorowitz/6/head 2025-08-14T21:43:28.1713927Z * [new branch] gh/mikaylagawarecki/234/base -> origin/gh/mikaylagawarecki/234/base 2025-08-14T21:43:28.1714568Z * [new branch] gh/mikaylagawarecki/234/head -> origin/gh/mikaylagawarecki/234/head 2025-08-14T21:43:28.1715220Z * [new branch] gh/mikaylagawarecki/235/base -> origin/gh/mikaylagawarecki/235/base 2025-08-14T21:43:28.1715861Z * [new branch] gh/mikaylagawarecki/235/head -> origin/gh/mikaylagawarecki/235/head 2025-08-14T21:43:28.1716498Z * [new branch] gh/mikaylagawarecki/236/base -> origin/gh/mikaylagawarecki/236/base 2025-08-14T21:43:28.2159836Z * [new branch] gh/mikaylagawarecki/236/head -> origin/gh/mikaylagawarecki/236/head 2025-08-14T21:43:28.2160544Z * [new branch] gh/mikaylagawarecki/237/base -> origin/gh/mikaylagawarecki/237/base 2025-08-14T21:43:28.2161224Z * [new branch] gh/mikaylagawarecki/237/head -> origin/gh/mikaylagawarecki/237/head 2025-08-14T21:43:28.2161863Z * [new branch] gh/mikaylagawarecki/238/base -> origin/gh/mikaylagawarecki/238/base 2025-08-14T21:43:28.2162531Z * [new branch] gh/mikaylagawarecki/238/head -> origin/gh/mikaylagawarecki/238/head 2025-08-14T21:43:28.2163181Z * [new branch] gh/mikaylagawarecki/313/base -> origin/gh/mikaylagawarecki/313/base 2025-08-14T21:43:28.2163823Z * [new branch] gh/mikaylagawarecki/313/head -> origin/gh/mikaylagawarecki/313/head 2025-08-14T21:43:28.2164463Z * [new branch] gh/mikaylagawarecki/313/orig -> origin/gh/mikaylagawarecki/313/orig 2025-08-14T21:43:28.2165104Z * [new branch] gh/mikaylagawarecki/317/base -> origin/gh/mikaylagawarecki/317/base 2025-08-14T21:43:28.2165736Z * [new branch] gh/mikaylagawarecki/317/head -> origin/gh/mikaylagawarecki/317/head 2025-08-14T21:43:28.2166552Z * [new branch] gh/mikaylagawarecki/317/orig -> origin/gh/mikaylagawarecki/317/orig 2025-08-14T21:43:28.2167195Z * [new branch] gh/mikaylagawarecki/318/base -> origin/gh/mikaylagawarecki/318/base 2025-08-14T21:43:28.2167844Z * [new branch] gh/mikaylagawarecki/318/head -> origin/gh/mikaylagawarecki/318/head 2025-08-14T21:43:28.2168493Z * [new branch] gh/mikaylagawarecki/318/orig -> origin/gh/mikaylagawarecki/318/orig 2025-08-14T21:43:28.2169131Z * [new branch] gh/mikaylagawarecki/319/base -> origin/gh/mikaylagawarecki/319/base 2025-08-14T21:43:28.2169766Z * [new branch] gh/mikaylagawarecki/319/head -> origin/gh/mikaylagawarecki/319/head 2025-08-14T21:43:28.2170391Z * [new branch] gh/mikaylagawarecki/319/orig -> origin/gh/mikaylagawarecki/319/orig 2025-08-14T21:43:28.2171021Z * [new branch] gh/mikaylagawarecki/320/base -> origin/gh/mikaylagawarecki/320/base 2025-08-14T21:43:28.2171664Z * [new branch] gh/mikaylagawarecki/320/head -> origin/gh/mikaylagawarecki/320/head 2025-08-14T21:43:28.2172295Z * [new branch] gh/mikaylagawarecki/320/orig -> origin/gh/mikaylagawarecki/320/orig 2025-08-14T21:43:28.2172935Z * [new branch] gh/mikaylagawarecki/321/base -> origin/gh/mikaylagawarecki/321/base 2025-08-14T21:43:28.2173556Z * [new branch] gh/mikaylagawarecki/321/head -> origin/gh/mikaylagawarecki/321/head 2025-08-14T21:43:28.2174307Z * [new branch] gh/mikaylagawarecki/321/orig -> origin/gh/mikaylagawarecki/321/orig 2025-08-14T21:43:28.2174950Z * [new branch] gh/mikaylagawarecki/322/base -> origin/gh/mikaylagawarecki/322/base 2025-08-14T21:43:28.2175589Z * [new branch] gh/mikaylagawarecki/322/head -> origin/gh/mikaylagawarecki/322/head 2025-08-14T21:43:28.2176231Z * [new branch] gh/mikaylagawarecki/322/orig -> origin/gh/mikaylagawarecki/322/orig 2025-08-14T21:43:28.2176871Z * [new branch] gh/mikaylagawarecki/323/base -> origin/gh/mikaylagawarecki/323/base 2025-08-14T21:43:28.2177511Z * [new branch] gh/mikaylagawarecki/323/head -> origin/gh/mikaylagawarecki/323/head 2025-08-14T21:43:28.2178144Z * [new branch] gh/mikaylagawarecki/323/orig -> origin/gh/mikaylagawarecki/323/orig 2025-08-14T21:43:28.2178769Z * [new branch] gh/mikaylagawarecki/324/base -> origin/gh/mikaylagawarecki/324/base 2025-08-14T21:43:28.2179406Z * [new branch] gh/mikaylagawarecki/324/head -> origin/gh/mikaylagawarecki/324/head 2025-08-14T21:43:28.2180106Z * [new branch] gh/mikaylagawarecki/324/orig -> origin/gh/mikaylagawarecki/324/orig 2025-08-14T21:43:28.2180745Z * [new branch] gh/mikaylagawarecki/325/base -> origin/gh/mikaylagawarecki/325/base 2025-08-14T21:43:28.2181383Z * [new branch] gh/mikaylagawarecki/325/head -> origin/gh/mikaylagawarecki/325/head 2025-08-14T21:43:28.2182019Z * [new branch] gh/mikaylagawarecki/325/orig -> origin/gh/mikaylagawarecki/325/orig 2025-08-14T21:43:28.2182651Z * [new branch] gh/mikaylagawarecki/326/base -> origin/gh/mikaylagawarecki/326/base 2025-08-14T21:43:28.2183291Z * [new branch] gh/mikaylagawarecki/326/head -> origin/gh/mikaylagawarecki/326/head 2025-08-14T21:43:28.2183915Z * [new branch] gh/mikaylagawarecki/326/orig -> origin/gh/mikaylagawarecki/326/orig 2025-08-14T21:43:28.2184587Z * [new branch] gh/mikaylagawarecki/327/base -> origin/gh/mikaylagawarecki/327/base 2025-08-14T21:43:28.2185213Z * [new branch] gh/mikaylagawarecki/327/head -> origin/gh/mikaylagawarecki/327/head 2025-08-14T21:43:28.2185844Z * [new branch] gh/mikaylagawarecki/327/orig -> origin/gh/mikaylagawarecki/327/orig 2025-08-14T21:43:28.2186469Z * [new branch] gh/mikaylagawarecki/328/base -> origin/gh/mikaylagawarecki/328/base 2025-08-14T21:43:28.2187210Z * [new branch] gh/mikaylagawarecki/328/head -> origin/gh/mikaylagawarecki/328/head 2025-08-14T21:43:28.2637972Z * [new branch] gh/mikaylagawarecki/328/orig -> origin/gh/mikaylagawarecki/328/orig 2025-08-14T21:43:28.2638654Z * [new branch] gh/mikaylagawarecki/329/base -> origin/gh/mikaylagawarecki/329/base 2025-08-14T21:43:28.2639302Z * [new branch] gh/mikaylagawarecki/329/head -> origin/gh/mikaylagawarecki/329/head 2025-08-14T21:43:28.2639976Z * [new branch] gh/mikaylagawarecki/329/orig -> origin/gh/mikaylagawarecki/329/orig 2025-08-14T21:43:28.2640604Z * [new branch] gh/mikaylagawarecki/330/base -> origin/gh/mikaylagawarecki/330/base 2025-08-14T21:43:28.2641344Z * [new branch] gh/mikaylagawarecki/330/head -> origin/gh/mikaylagawarecki/330/head 2025-08-14T21:43:28.2642068Z * [new branch] gh/mikaylagawarecki/330/orig -> origin/gh/mikaylagawarecki/330/orig 2025-08-14T21:43:28.2642713Z * [new branch] gh/mikaylagawarecki/331/base -> origin/gh/mikaylagawarecki/331/base 2025-08-14T21:43:28.2643359Z * [new branch] gh/mikaylagawarecki/331/head -> origin/gh/mikaylagawarecki/331/head 2025-08-14T21:43:28.2643987Z * [new branch] gh/mikaylagawarecki/331/orig -> origin/gh/mikaylagawarecki/331/orig 2025-08-14T21:43:28.2644616Z * [new branch] gh/mikaylagawarecki/332/base -> origin/gh/mikaylagawarecki/332/base 2025-08-14T21:43:28.2645966Z * [new branch] gh/mikaylagawarecki/332/head -> origin/gh/mikaylagawarecki/332/head 2025-08-14T21:43:28.2646606Z * [new branch] gh/mikaylagawarecki/332/orig -> origin/gh/mikaylagawarecki/332/orig 2025-08-14T21:43:28.2647245Z * [new branch] gh/mikaylagawarecki/333/base -> origin/gh/mikaylagawarecki/333/base 2025-08-14T21:43:28.2647986Z * [new branch] gh/mikaylagawarecki/333/head -> origin/gh/mikaylagawarecki/333/head 2025-08-14T21:43:28.2648720Z * [new branch] gh/mikaylagawarecki/333/orig -> origin/gh/mikaylagawarecki/333/orig 2025-08-14T21:43:28.2649343Z * [new branch] gh/mikaylagawarecki/334/base -> origin/gh/mikaylagawarecki/334/base 2025-08-14T21:43:28.2649973Z * [new branch] gh/mikaylagawarecki/334/head -> origin/gh/mikaylagawarecki/334/head 2025-08-14T21:43:28.2650602Z * [new branch] gh/mikaylagawarecki/334/orig -> origin/gh/mikaylagawarecki/334/orig 2025-08-14T21:43:28.2651165Z * [new branch] gh/mlazos/1/base -> origin/gh/mlazos/1/base 2025-08-14T21:43:28.2651684Z * [new branch] gh/mlazos/1/head -> origin/gh/mlazos/1/head 2025-08-14T21:43:28.2652180Z * [new branch] gh/mlazos/1/orig -> origin/gh/mlazos/1/orig 2025-08-14T21:43:28.2652686Z * [new branch] gh/mlazos/10/base -> origin/gh/mlazos/10/base 2025-08-14T21:43:28.2653191Z * [new branch] gh/mlazos/10/head -> origin/gh/mlazos/10/head 2025-08-14T21:43:28.2653784Z * [new branch] gh/mlazos/10/orig -> origin/gh/mlazos/10/orig 2025-08-14T21:43:28.2654288Z * [new branch] gh/mlazos/11/base -> origin/gh/mlazos/11/base 2025-08-14T21:43:28.2654876Z * [new branch] gh/mlazos/11/head -> origin/gh/mlazos/11/head 2025-08-14T21:43:28.2655372Z * [new branch] gh/mlazos/11/orig -> origin/gh/mlazos/11/orig 2025-08-14T21:43:28.2655877Z * [new branch] gh/mlazos/12/base -> origin/gh/mlazos/12/base 2025-08-14T21:43:28.2656369Z * [new branch] gh/mlazos/12/head -> origin/gh/mlazos/12/head 2025-08-14T21:43:28.2656865Z * [new branch] gh/mlazos/12/orig -> origin/gh/mlazos/12/orig 2025-08-14T21:43:28.2657357Z * [new branch] gh/mlazos/13/base -> origin/gh/mlazos/13/base 2025-08-14T21:43:28.2657856Z * [new branch] gh/mlazos/13/head -> origin/gh/mlazos/13/head 2025-08-14T21:43:28.2658478Z * [new branch] gh/mlazos/13/orig -> origin/gh/mlazos/13/orig 2025-08-14T21:43:28.2658976Z * [new branch] gh/mlazos/2/base -> origin/gh/mlazos/2/base 2025-08-14T21:43:28.2659473Z * [new branch] gh/mlazos/2/head -> origin/gh/mlazos/2/head 2025-08-14T21:43:28.2660123Z * [new branch] gh/mlazos/2/orig -> origin/gh/mlazos/2/orig 2025-08-14T21:43:28.2660624Z * [new branch] gh/mlazos/3/base -> origin/gh/mlazos/3/base 2025-08-14T21:43:28.2661199Z * [new branch] gh/mlazos/3/head -> origin/gh/mlazos/3/head 2025-08-14T21:43:28.2661694Z * [new branch] gh/mlazos/3/orig -> origin/gh/mlazos/3/orig 2025-08-14T21:43:28.2662192Z * [new branch] gh/mlazos/4/base -> origin/gh/mlazos/4/base 2025-08-14T21:43:28.2662677Z * [new branch] gh/mlazos/4/head -> origin/gh/mlazos/4/head 2025-08-14T21:43:28.2663173Z * [new branch] gh/mlazos/4/orig -> origin/gh/mlazos/4/orig 2025-08-14T21:43:28.2663648Z * [new branch] gh/mlazos/5/base -> origin/gh/mlazos/5/base 2025-08-14T21:43:28.2664137Z * [new branch] gh/mlazos/5/head -> origin/gh/mlazos/5/head 2025-08-14T21:43:28.3144640Z * [new branch] gh/mlazos/5/orig -> origin/gh/mlazos/5/orig 2025-08-14T21:43:28.3145422Z * [new branch] gh/mlazos/6/base -> origin/gh/mlazos/6/base 2025-08-14T21:43:28.3145945Z * [new branch] gh/mlazos/6/head -> origin/gh/mlazos/6/head 2025-08-14T21:43:28.3146445Z * [new branch] gh/mlazos/6/orig -> origin/gh/mlazos/6/orig 2025-08-14T21:43:28.3146935Z * [new branch] gh/mlazos/7/base -> origin/gh/mlazos/7/base 2025-08-14T21:43:28.3147435Z * [new branch] gh/mlazos/7/head -> origin/gh/mlazos/7/head 2025-08-14T21:43:28.3147932Z * [new branch] gh/mlazos/7/orig -> origin/gh/mlazos/7/orig 2025-08-14T21:43:28.3148429Z * [new branch] gh/mlazos/8/base -> origin/gh/mlazos/8/base 2025-08-14T21:43:28.3148906Z * [new branch] gh/mlazos/8/head -> origin/gh/mlazos/8/head 2025-08-14T21:43:28.3149403Z * [new branch] gh/mlazos/8/orig -> origin/gh/mlazos/8/orig 2025-08-14T21:43:28.3149900Z * [new branch] gh/mlazos/9/base -> origin/gh/mlazos/9/base 2025-08-14T21:43:28.3150381Z * [new branch] gh/mlazos/9/head -> origin/gh/mlazos/9/head 2025-08-14T21:43:28.3150872Z * [new branch] gh/mlazos/9/orig -> origin/gh/mlazos/9/orig 2025-08-14T21:43:28.3151372Z * [new branch] gh/mrmiywj/1/base -> origin/gh/mrmiywj/1/base 2025-08-14T21:43:28.3151885Z * [new branch] gh/mrmiywj/1/head -> origin/gh/mrmiywj/1/head 2025-08-14T21:43:28.3152527Z * [new branch] gh/muchulee8/62/base -> origin/gh/muchulee8/62/base 2025-08-14T21:43:28.3153158Z * [new branch] gh/muchulee8/62/head -> origin/gh/muchulee8/62/head 2025-08-14T21:43:28.3153791Z * [new branch] gh/muchulee8/62/orig -> origin/gh/muchulee8/62/orig 2025-08-14T21:43:28.3154322Z * [new branch] gh/muchulee8/63/base -> origin/gh/muchulee8/63/base 2025-08-14T21:43:28.3154952Z * [new branch] gh/muchulee8/63/head -> origin/gh/muchulee8/63/head 2025-08-14T21:43:28.3155577Z * [new branch] gh/muchulee8/63/orig -> origin/gh/muchulee8/63/orig 2025-08-14T21:43:28.3156314Z * [new branch] gh/muchulee8/64/base -> origin/gh/muchulee8/64/base 2025-08-14T21:43:28.3156959Z * [new branch] gh/muchulee8/64/head -> origin/gh/muchulee8/64/head 2025-08-14T21:43:28.3157847Z * [new branch] gh/muchulee8/64/orig -> origin/gh/muchulee8/64/orig 2025-08-14T21:43:28.3159568Z * [new branch] gh/muchulee8/65/base -> origin/gh/muchulee8/65/base 2025-08-14T21:43:28.3160231Z * [new branch] gh/muchulee8/65/head -> origin/gh/muchulee8/65/head 2025-08-14T21:43:28.3160869Z * [new branch] gh/muchulee8/65/orig -> origin/gh/muchulee8/65/orig 2025-08-14T21:43:28.3161396Z * [new branch] gh/oulgen/35/base -> origin/gh/oulgen/35/base 2025-08-14T21:43:28.3161897Z * [new branch] gh/oulgen/35/head -> origin/gh/oulgen/35/head 2025-08-14T21:43:28.3162400Z * [new branch] gh/oulgen/35/orig -> origin/gh/oulgen/35/orig 2025-08-14T21:43:28.3162889Z * [new branch] gh/oulgen/44/base -> origin/gh/oulgen/44/base 2025-08-14T21:43:28.3163390Z * [new branch] gh/oulgen/44/head -> origin/gh/oulgen/44/head 2025-08-14T21:43:28.3163912Z * [new branch] gh/oulgen/44/orig -> origin/gh/oulgen/44/orig 2025-08-14T21:43:28.3164404Z * [new branch] gh/oulgen/45/base -> origin/gh/oulgen/45/base 2025-08-14T21:43:28.3164906Z * [new branch] gh/oulgen/45/head -> origin/gh/oulgen/45/head 2025-08-14T21:43:28.3165399Z * [new branch] gh/oulgen/45/orig -> origin/gh/oulgen/45/orig 2025-08-14T21:43:28.3165898Z * [new branch] gh/oulgen/46/base -> origin/gh/oulgen/46/base 2025-08-14T21:43:28.3166623Z * [new branch] gh/oulgen/46/head -> origin/gh/oulgen/46/head 2025-08-14T21:43:28.3167213Z * [new branch] gh/oulgen/46/orig -> origin/gh/oulgen/46/orig 2025-08-14T21:43:28.3167817Z * [new branch] gh/oulgen/47/base -> origin/gh/oulgen/47/base 2025-08-14T21:43:28.3168314Z * [new branch] gh/oulgen/47/head -> origin/gh/oulgen/47/head 2025-08-14T21:43:28.3168917Z * [new branch] gh/oulgen/47/orig -> origin/gh/oulgen/47/orig 2025-08-14T21:43:28.3169508Z * [new branch] gh/pearu/108/base -> origin/gh/pearu/108/base 2025-08-14T21:43:28.3170103Z * [new branch] gh/pearu/108/head -> origin/gh/pearu/108/head 2025-08-14T21:43:28.3170657Z * [new branch] gh/pearu/108/orig -> origin/gh/pearu/108/orig 2025-08-14T21:43:28.3171200Z * [new branch] gh/pearu/56/base -> origin/gh/pearu/56/base 2025-08-14T21:43:28.3171808Z * [new branch] gh/pearu/56/head -> origin/gh/pearu/56/head 2025-08-14T21:43:28.3172389Z * [new branch] gh/pearu/56/orig -> origin/gh/pearu/56/orig 2025-08-14T21:43:28.4006964Z * [new branch] gh/pearu/97/base -> origin/gh/pearu/97/base 2025-08-14T21:43:28.4007513Z * [new branch] gh/pearu/97/head -> origin/gh/pearu/97/head 2025-08-14T21:43:28.4008043Z * [new branch] gh/pearu/97/orig -> origin/gh/pearu/97/orig 2025-08-14T21:43:28.4008570Z * [new branch] gh/qqaatw/29/base -> origin/gh/qqaatw/29/base 2025-08-14T21:43:28.4009074Z * [new branch] gh/qqaatw/29/head -> origin/gh/qqaatw/29/head 2025-08-14T21:43:28.4009579Z * [new branch] gh/qqaatw/29/orig -> origin/gh/qqaatw/29/orig 2025-08-14T21:43:28.4010180Z * [new branch] gh/raymo/cleanup-dynamo-logging -> origin/gh/raymo/cleanup-dynamo-logging 2025-08-14T21:43:28.4010838Z * [new branch] gh/raymo/refresh-script -> origin/gh/raymo/refresh-script 2025-08-14T21:43:28.4011375Z * [new branch] gh/rec/141/base -> origin/gh/rec/141/base 2025-08-14T21:43:28.4011857Z * [new branch] gh/rec/141/head -> origin/gh/rec/141/head 2025-08-14T21:43:28.4012338Z * [new branch] gh/rec/153/base -> origin/gh/rec/153/base 2025-08-14T21:43:28.4012970Z * [new branch] gh/rec/153/head -> origin/gh/rec/153/head 2025-08-14T21:43:28.4013450Z * [new branch] gh/rec/153/orig -> origin/gh/rec/153/orig 2025-08-14T21:43:28.4013921Z * [new branch] gh/rec/154/base -> origin/gh/rec/154/base 2025-08-14T21:43:28.4014408Z * [new branch] gh/rec/154/head -> origin/gh/rec/154/head 2025-08-14T21:43:28.4014903Z * [new branch] gh/rec/154/orig -> origin/gh/rec/154/orig 2025-08-14T21:43:28.4015379Z * [new branch] gh/rec/156/base -> origin/gh/rec/156/base 2025-08-14T21:43:28.4015864Z * [new branch] gh/rec/156/head -> origin/gh/rec/156/head 2025-08-14T21:43:28.4016330Z * [new branch] gh/rec/156/orig -> origin/gh/rec/156/orig 2025-08-14T21:43:28.4016799Z * [new branch] gh/rec/158/base -> origin/gh/rec/158/base 2025-08-14T21:43:28.4017275Z * [new branch] gh/rec/158/head -> origin/gh/rec/158/head 2025-08-14T21:43:28.4017744Z * [new branch] gh/rec/158/orig -> origin/gh/rec/158/orig 2025-08-14T21:43:28.4018229Z * [new branch] gh/rec/159/base -> origin/gh/rec/159/base 2025-08-14T21:43:28.4018695Z * [new branch] gh/rec/159/head -> origin/gh/rec/159/head 2025-08-14T21:43:28.4019176Z * [new branch] gh/rec/160/base -> origin/gh/rec/160/base 2025-08-14T21:43:28.4019856Z * [new branch] gh/rec/160/head -> origin/gh/rec/160/head 2025-08-14T21:43:28.4020328Z * [new branch] gh/rec/160/orig -> origin/gh/rec/160/orig 2025-08-14T21:43:28.4020811Z * [new branch] gh/rec/161/base -> origin/gh/rec/161/base 2025-08-14T21:43:28.4021282Z * [new branch] gh/rec/161/head -> origin/gh/rec/161/head 2025-08-14T21:43:28.4021765Z * [new branch] gh/rec/161/orig -> origin/gh/rec/161/orig 2025-08-14T21:43:28.4022230Z * [new branch] gh/rec/162/base -> origin/gh/rec/162/base 2025-08-14T21:43:28.4022702Z * [new branch] gh/rec/162/head -> origin/gh/rec/162/head 2025-08-14T21:43:28.4023173Z * [new branch] gh/rec/162/orig -> origin/gh/rec/162/orig 2025-08-14T21:43:28.4023640Z * [new branch] gh/rec/163/base -> origin/gh/rec/163/base 2025-08-14T21:43:28.4024118Z * [new branch] gh/rec/163/head -> origin/gh/rec/163/head 2025-08-14T21:43:28.4024594Z * [new branch] gh/rec/163/orig -> origin/gh/rec/163/orig 2025-08-14T21:43:28.4025067Z * [new branch] gh/rec/164/base -> origin/gh/rec/164/base 2025-08-14T21:43:28.4025545Z * [new branch] gh/rec/164/head -> origin/gh/rec/164/head 2025-08-14T21:43:28.4026013Z * [new branch] gh/rec/164/orig -> origin/gh/rec/164/orig 2025-08-14T21:43:28.4026555Z * [new branch] gh/robert-hardwick/1/base -> origin/gh/robert-hardwick/1/base 2025-08-14T21:43:28.4027152Z * [new branch] gh/robert-hardwick/1/head -> origin/gh/robert-hardwick/1/head 2025-08-14T21:43:28.4027744Z * [new branch] gh/robert-hardwick/1/orig -> origin/gh/robert-hardwick/1/orig 2025-08-14T21:43:28.4028337Z * [new branch] gh/robert-hardwick/2/base -> origin/gh/robert-hardwick/2/base 2025-08-14T21:43:28.4028914Z * [new branch] gh/robert-hardwick/2/head -> origin/gh/robert-hardwick/2/head 2025-08-14T21:43:28.4029494Z * [new branch] gh/robert-hardwick/2/orig -> origin/gh/robert-hardwick/2/orig 2025-08-14T21:43:28.4030067Z * [new branch] gh/robert-hardwick/3/base -> origin/gh/robert-hardwick/3/base 2025-08-14T21:43:28.4030649Z * [new branch] gh/robert-hardwick/3/head -> origin/gh/robert-hardwick/3/head 2025-08-14T21:43:28.4031337Z * [new branch] gh/robert-hardwick/3/orig -> origin/gh/robert-hardwick/3/orig 2025-08-14T21:43:28.4515321Z * [new branch] gh/robert-hardwick/4/base -> origin/gh/robert-hardwick/4/base 2025-08-14T21:43:28.4515995Z * [new branch] gh/robert-hardwick/4/head -> origin/gh/robert-hardwick/4/head 2025-08-14T21:43:28.4516591Z * [new branch] gh/robert-hardwick/4/orig -> origin/gh/robert-hardwick/4/orig 2025-08-14T21:43:28.4517180Z * [new branch] gh/rtimpe/1/base -> origin/gh/rtimpe/1/base 2025-08-14T21:43:28.4517690Z * [new branch] gh/rtimpe/1/head -> origin/gh/rtimpe/1/head 2025-08-14T21:43:28.4518193Z * [new branch] gh/rtimpe/10/base -> origin/gh/rtimpe/10/base 2025-08-14T21:43:28.4518706Z * [new branch] gh/rtimpe/10/head -> origin/gh/rtimpe/10/head 2025-08-14T21:43:28.4519216Z * [new branch] gh/rtimpe/10/orig -> origin/gh/rtimpe/10/orig 2025-08-14T21:43:28.4519725Z * [new branch] gh/rtimpe/11/base -> origin/gh/rtimpe/11/base 2025-08-14T21:43:28.4520233Z * [new branch] gh/rtimpe/11/head -> origin/gh/rtimpe/11/head 2025-08-14T21:43:28.4520731Z * [new branch] gh/rtimpe/11/orig -> origin/gh/rtimpe/11/orig 2025-08-14T21:43:28.4521233Z * [new branch] gh/rtimpe/12/base -> origin/gh/rtimpe/12/base 2025-08-14T21:43:28.4521937Z * [new branch] gh/rtimpe/12/head -> origin/gh/rtimpe/12/head 2025-08-14T21:43:28.4522453Z * [new branch] gh/rtimpe/12/orig -> origin/gh/rtimpe/12/orig 2025-08-14T21:43:28.4522963Z * [new branch] gh/rtimpe/2/base -> origin/gh/rtimpe/2/base 2025-08-14T21:43:28.4523459Z * [new branch] gh/rtimpe/2/head -> origin/gh/rtimpe/2/head 2025-08-14T21:43:28.4523965Z * [new branch] gh/rtimpe/3/base -> origin/gh/rtimpe/3/base 2025-08-14T21:43:28.4524455Z * [new branch] gh/rtimpe/3/head -> origin/gh/rtimpe/3/head 2025-08-14T21:43:28.4524956Z * [new branch] gh/rtimpe/4/base -> origin/gh/rtimpe/4/base 2025-08-14T21:43:28.4525437Z * [new branch] gh/rtimpe/4/head -> origin/gh/rtimpe/4/head 2025-08-14T21:43:28.4525926Z * [new branch] gh/rtimpe/5/base -> origin/gh/rtimpe/5/base 2025-08-14T21:43:28.4526429Z * [new branch] gh/rtimpe/5/head -> origin/gh/rtimpe/5/head 2025-08-14T21:43:28.4526918Z * [new branch] gh/rtimpe/5/orig -> origin/gh/rtimpe/5/orig 2025-08-14T21:43:28.4527412Z * [new branch] gh/rtimpe/6/base -> origin/gh/rtimpe/6/base 2025-08-14T21:43:28.4527894Z * [new branch] gh/rtimpe/6/head -> origin/gh/rtimpe/6/head 2025-08-14T21:43:28.4528393Z * [new branch] gh/rtimpe/6/orig -> origin/gh/rtimpe/6/orig 2025-08-14T21:43:28.4528894Z * [new branch] gh/rtimpe/7/base -> origin/gh/rtimpe/7/base 2025-08-14T21:43:28.4529385Z * [new branch] gh/rtimpe/7/head -> origin/gh/rtimpe/7/head 2025-08-14T21:43:28.4529880Z * [new branch] gh/rtimpe/7/orig -> origin/gh/rtimpe/7/orig 2025-08-14T21:43:28.4530368Z * [new branch] gh/rtimpe/8/base -> origin/gh/rtimpe/8/base 2025-08-14T21:43:28.4530869Z * [new branch] gh/rtimpe/8/head -> origin/gh/rtimpe/8/head 2025-08-14T21:43:28.4531366Z * [new branch] gh/rtimpe/8/orig -> origin/gh/rtimpe/8/orig 2025-08-14T21:43:28.4531854Z * [new branch] gh/rtimpe/9/base -> origin/gh/rtimpe/9/base 2025-08-14T21:43:28.4532369Z * [new branch] gh/rtimpe/9/head -> origin/gh/rtimpe/9/head 2025-08-14T21:43:28.4532973Z * [new branch] gh/rtimpe/9/orig -> origin/gh/rtimpe/9/orig 2025-08-14T21:43:28.4533510Z * [new branch] gh/ruisizhang123/1/base -> origin/gh/ruisizhang123/1/base 2025-08-14T21:43:28.4534087Z * [new branch] gh/ruisizhang123/1/head -> origin/gh/ruisizhang123/1/head 2025-08-14T21:43:28.4534655Z * [new branch] gh/ruisizhang123/1/orig -> origin/gh/ruisizhang123/1/orig 2025-08-14T21:43:28.4535216Z * [new branch] gh/ruisizhang123/4/base -> origin/gh/ruisizhang123/4/base 2025-08-14T21:43:28.4537612Z * [new branch] gh/ruisizhang123/4/head -> origin/gh/ruisizhang123/4/head 2025-08-14T21:43:28.4538181Z * [new branch] gh/ruisizhang123/4/orig -> origin/gh/ruisizhang123/4/orig 2025-08-14T21:43:28.4538741Z * [new branch] gh/ruisizhang123/5/base -> origin/gh/ruisizhang123/5/base 2025-08-14T21:43:28.4539307Z * [new branch] gh/ruisizhang123/5/head -> origin/gh/ruisizhang123/5/head 2025-08-14T21:43:28.4539941Z * [new branch] gh/ruisizhang123/5/orig -> origin/gh/ruisizhang123/5/orig 2025-08-14T21:43:28.4540511Z * [new branch] gh/ruisizhang123/6/base -> origin/gh/ruisizhang123/6/base 2025-08-14T21:43:28.4541061Z * [new branch] gh/ruisizhang123/6/head -> origin/gh/ruisizhang123/6/head 2025-08-14T21:43:28.4541625Z * [new branch] gh/ruisizhang123/6/orig -> origin/gh/ruisizhang123/6/orig 2025-08-14T21:43:28.5016649Z * [new branch] gh/ruisizhang123/7/base -> origin/gh/ruisizhang123/7/base 2025-08-14T21:43:28.5017276Z * [new branch] gh/ruisizhang123/7/head -> origin/gh/ruisizhang123/7/head 2025-08-14T21:43:28.5017854Z * [new branch] gh/ruisizhang123/7/orig -> origin/gh/ruisizhang123/7/orig 2025-08-14T21:43:28.5018448Z * [new branch] gh/ruisizhang123/8/base -> origin/gh/ruisizhang123/8/base 2025-08-14T21:43:28.5019033Z * [new branch] gh/ruisizhang123/8/head -> origin/gh/ruisizhang123/8/head 2025-08-14T21:43:28.5019601Z * [new branch] gh/ruisizhang123/8/orig -> origin/gh/ruisizhang123/8/orig 2025-08-14T21:43:28.5020201Z * [new branch] gh/sarckk/2/base -> origin/gh/sarckk/2/base 2025-08-14T21:43:28.5020715Z * [new branch] gh/sarckk/2/head -> origin/gh/sarckk/2/head 2025-08-14T21:43:28.5021223Z * [new branch] gh/sarckk/2/orig -> origin/gh/sarckk/2/orig 2025-08-14T21:43:28.5021744Z * [new branch] gh/seemethere/23/head -> origin/gh/seemethere/23/head 2025-08-14T21:43:28.5022300Z * [new branch] gh/seemethere/24/base -> origin/gh/seemethere/24/base 2025-08-14T21:43:28.5022830Z * [new branch] gh/seemethere/24/head -> origin/gh/seemethere/24/head 2025-08-14T21:43:28.5023372Z * [new branch] gh/seemethere/24/orig -> origin/gh/seemethere/24/orig 2025-08-14T21:43:28.5023912Z * [new branch] gh/seemethere/30/base -> origin/gh/seemethere/30/base 2025-08-14T21:43:28.5024460Z * [new branch] gh/seemethere/30/head -> origin/gh/seemethere/30/head 2025-08-14T21:43:28.5025000Z * [new branch] gh/seemethere/30/orig -> origin/gh/seemethere/30/orig 2025-08-14T21:43:28.5025535Z * [new branch] gh/seemethere/32/base -> origin/gh/seemethere/32/base 2025-08-14T21:43:28.5026081Z * [new branch] gh/seemethere/32/head -> origin/gh/seemethere/32/head 2025-08-14T21:43:28.5026615Z * [new branch] gh/seemethere/32/orig -> origin/gh/seemethere/32/orig 2025-08-14T21:43:28.5027155Z * [new branch] gh/seemethere/33/base -> origin/gh/seemethere/33/base 2025-08-14T21:43:28.5027691Z * [new branch] gh/seemethere/33/head -> origin/gh/seemethere/33/head 2025-08-14T21:43:28.5028396Z * [new branch] gh/seemethere/33/orig -> origin/gh/seemethere/33/orig 2025-08-14T21:43:28.5028950Z * [new branch] gh/seemethere/34/base -> origin/gh/seemethere/34/base 2025-08-14T21:43:28.5029487Z * [new branch] gh/seemethere/34/head -> origin/gh/seemethere/34/head 2025-08-14T21:43:28.5030026Z * [new branch] gh/seemethere/34/orig -> origin/gh/seemethere/34/orig 2025-08-14T21:43:28.5030563Z * [new branch] gh/seemethere/35/base -> origin/gh/seemethere/35/base 2025-08-14T21:43:28.5031105Z * [new branch] gh/seemethere/35/head -> origin/gh/seemethere/35/head 2025-08-14T21:43:28.5031641Z * [new branch] gh/seemethere/35/orig -> origin/gh/seemethere/35/orig 2025-08-14T21:43:28.5032173Z * [new branch] gh/seemethere/37/base -> origin/gh/seemethere/37/base 2025-08-14T21:43:28.5032709Z * [new branch] gh/seemethere/37/head -> origin/gh/seemethere/37/head 2025-08-14T21:43:28.5033248Z * [new branch] gh/seemethere/37/orig -> origin/gh/seemethere/37/orig 2025-08-14T21:43:28.5033774Z * [new branch] gh/seemethere/39/base -> origin/gh/seemethere/39/base 2025-08-14T21:43:28.5034312Z * [new branch] gh/seemethere/39/head -> origin/gh/seemethere/39/head 2025-08-14T21:43:28.5034848Z * [new branch] gh/seemethere/39/orig -> origin/gh/seemethere/39/orig 2025-08-14T21:43:28.5035508Z * [new branch] gh/seemethere/40/base -> origin/gh/seemethere/40/base 2025-08-14T21:43:28.5036040Z * [new branch] gh/seemethere/40/head -> origin/gh/seemethere/40/head 2025-08-14T21:43:28.5036582Z * [new branch] gh/seemethere/40/orig -> origin/gh/seemethere/40/orig 2025-08-14T21:43:28.5037120Z * [new branch] gh/seemethere/41/base -> origin/gh/seemethere/41/base 2025-08-14T21:43:28.5037649Z * [new branch] gh/seemethere/41/head -> origin/gh/seemethere/41/head 2025-08-14T21:43:28.5038207Z * [new branch] gh/seemethere/41/orig -> origin/gh/seemethere/41/orig 2025-08-14T21:43:28.5038739Z * [new branch] gh/seemethere/42/base -> origin/gh/seemethere/42/base 2025-08-14T21:43:28.5039277Z * [new branch] gh/seemethere/42/head -> origin/gh/seemethere/42/head 2025-08-14T21:43:28.5039814Z * [new branch] gh/seemethere/42/orig -> origin/gh/seemethere/42/orig 2025-08-14T21:43:28.5040349Z * [new branch] gh/seemethere/43/base -> origin/gh/seemethere/43/base 2025-08-14T21:43:28.5040889Z * [new branch] gh/seemethere/43/head -> origin/gh/seemethere/43/head 2025-08-14T21:43:28.5041415Z * [new branch] gh/seemethere/43/orig -> origin/gh/seemethere/43/orig 2025-08-14T21:43:28.5482538Z * [new branch] gh/seemethere/44/base -> origin/gh/seemethere/44/base 2025-08-14T21:43:28.5483170Z * [new branch] gh/seemethere/44/head -> origin/gh/seemethere/44/head 2025-08-14T21:43:28.5483723Z * [new branch] gh/seemethere/44/orig -> origin/gh/seemethere/44/orig 2025-08-14T21:43:28.5484273Z * [new branch] gh/seemethere/45/base -> origin/gh/seemethere/45/base 2025-08-14T21:43:28.5484816Z * [new branch] gh/seemethere/45/head -> origin/gh/seemethere/45/head 2025-08-14T21:43:28.5485371Z * [new branch] gh/seemethere/45/orig -> origin/gh/seemethere/45/orig 2025-08-14T21:43:28.5485916Z * [new branch] gh/seemethere/46/base -> origin/gh/seemethere/46/base 2025-08-14T21:43:28.5486446Z * [new branch] gh/seemethere/46/head -> origin/gh/seemethere/46/head 2025-08-14T21:43:28.5486984Z * [new branch] gh/seemethere/46/orig -> origin/gh/seemethere/46/orig 2025-08-14T21:43:28.5487516Z * [new branch] gh/seemethere/47/base -> origin/gh/seemethere/47/base 2025-08-14T21:43:28.5488249Z * [new branch] gh/seemethere/47/head -> origin/gh/seemethere/47/head 2025-08-14T21:43:28.5488805Z * [new branch] gh/seemethere/47/orig -> origin/gh/seemethere/47/orig 2025-08-14T21:43:28.5489338Z * [new branch] gh/seemethere/48/base -> origin/gh/seemethere/48/base 2025-08-14T21:43:28.5489879Z * [new branch] gh/seemethere/48/head -> origin/gh/seemethere/48/head 2025-08-14T21:43:28.5490422Z * [new branch] gh/seemethere/48/orig -> origin/gh/seemethere/48/orig 2025-08-14T21:43:28.5490963Z * [new branch] gh/seemethere/49/base -> origin/gh/seemethere/49/base 2025-08-14T21:43:28.5491504Z * [new branch] gh/seemethere/49/head -> origin/gh/seemethere/49/head 2025-08-14T21:43:28.5492036Z * [new branch] gh/seemethere/49/orig -> origin/gh/seemethere/49/orig 2025-08-14T21:43:28.5492577Z * [new branch] gh/seemethere/50/base -> origin/gh/seemethere/50/base 2025-08-14T21:43:28.5493108Z * [new branch] gh/seemethere/50/head -> origin/gh/seemethere/50/head 2025-08-14T21:43:28.5493652Z * [new branch] gh/seemethere/50/orig -> origin/gh/seemethere/50/orig 2025-08-14T21:43:28.5494182Z * [new branch] gh/seemethere/51/base -> origin/gh/seemethere/51/base 2025-08-14T21:43:28.5494726Z * [new branch] gh/seemethere/51/head -> origin/gh/seemethere/51/head 2025-08-14T21:43:28.5495397Z * [new branch] gh/seemethere/51/orig -> origin/gh/seemethere/51/orig 2025-08-14T21:43:28.5495937Z * [new branch] gh/seemethere/52/base -> origin/gh/seemethere/52/base 2025-08-14T21:43:28.5496486Z * [new branch] gh/seemethere/52/head -> origin/gh/seemethere/52/head 2025-08-14T21:43:28.5497041Z * [new branch] gh/seemethere/52/orig -> origin/gh/seemethere/52/orig 2025-08-14T21:43:28.5497582Z * [new branch] gh/seemethere/53/base -> origin/gh/seemethere/53/base 2025-08-14T21:43:28.5498121Z * [new branch] gh/seemethere/53/head -> origin/gh/seemethere/53/head 2025-08-14T21:43:28.5498649Z * [new branch] gh/seemethere/53/orig -> origin/gh/seemethere/53/orig 2025-08-14T21:43:28.5499190Z * [new branch] gh/seemethere/54/base -> origin/gh/seemethere/54/base 2025-08-14T21:43:28.5499815Z * [new branch] gh/seemethere/54/head -> origin/gh/seemethere/54/head 2025-08-14T21:43:28.5500367Z * [new branch] gh/seemethere/54/orig -> origin/gh/seemethere/54/orig 2025-08-14T21:43:28.5500915Z * [new branch] gh/seemethere/55/base -> origin/gh/seemethere/55/base 2025-08-14T21:43:28.5501450Z * [new branch] gh/seemethere/55/head -> origin/gh/seemethere/55/head 2025-08-14T21:43:28.5501996Z * [new branch] gh/seemethere/55/orig -> origin/gh/seemethere/55/orig 2025-08-14T21:43:28.5502545Z * [new branch] gh/seemethere/56/base -> origin/gh/seemethere/56/base 2025-08-14T21:43:28.5503103Z * [new branch] gh/seemethere/56/head -> origin/gh/seemethere/56/head 2025-08-14T21:43:28.5503641Z * [new branch] gh/seemethere/56/orig -> origin/gh/seemethere/56/orig 2025-08-14T21:43:28.5504173Z * [new branch] gh/seemethere/57/base -> origin/gh/seemethere/57/base 2025-08-14T21:43:28.5504725Z * [new branch] gh/seemethere/57/head -> origin/gh/seemethere/57/head 2025-08-14T21:43:28.5505260Z * [new branch] gh/seemethere/57/orig -> origin/gh/seemethere/57/orig 2025-08-14T21:43:28.5505799Z * [new branch] gh/seemethere/58/base -> origin/gh/seemethere/58/base 2025-08-14T21:43:28.5506345Z * [new branch] gh/seemethere/58/head -> origin/gh/seemethere/58/head 2025-08-14T21:43:28.5506983Z * [new branch] gh/seemethere/58/orig -> origin/gh/seemethere/58/orig 2025-08-14T21:43:28.5507535Z * [new branch] gh/seemethere/59/base -> origin/gh/seemethere/59/base 2025-08-14T21:43:28.5986469Z * [new branch] gh/seemethere/59/head -> origin/gh/seemethere/59/head 2025-08-14T21:43:28.5990715Z * [new branch] gh/seemethere/59/orig -> origin/gh/seemethere/59/orig 2025-08-14T21:43:28.5991293Z * [new branch] gh/seemethere/7/head -> origin/gh/seemethere/7/head 2025-08-14T21:43:28.5991851Z * [new branch] gh/shunting314/145/base -> origin/gh/shunting314/145/base 2025-08-14T21:43:28.5992422Z * [new branch] gh/shunting314/145/head -> origin/gh/shunting314/145/head 2025-08-14T21:43:28.5992975Z * [new branch] gh/shunting314/145/orig -> origin/gh/shunting314/145/orig 2025-08-14T21:43:28.5993536Z * [new branch] gh/shunting314/176/base -> origin/gh/shunting314/176/base 2025-08-14T21:43:28.5994103Z * [new branch] gh/shunting314/176/head -> origin/gh/shunting314/176/head 2025-08-14T21:43:28.5994647Z * [new branch] gh/shunting314/176/orig -> origin/gh/shunting314/176/orig 2025-08-14T21:43:28.5997693Z * [new branch] gh/shunting314/211/base -> origin/gh/shunting314/211/base 2025-08-14T21:43:28.5998249Z * [new branch] gh/shunting314/211/head -> origin/gh/shunting314/211/head 2025-08-14T21:43:28.5998991Z * [new branch] gh/shunting314/211/orig -> origin/gh/shunting314/211/orig 2025-08-14T21:43:28.5999548Z * [new branch] gh/shunting314/212/base -> origin/gh/shunting314/212/base 2025-08-14T21:43:28.6000090Z * [new branch] gh/shunting314/212/head -> origin/gh/shunting314/212/head 2025-08-14T21:43:28.6000646Z * [new branch] gh/shunting314/212/orig -> origin/gh/shunting314/212/orig 2025-08-14T21:43:28.6001202Z * [new branch] gh/shunting314/213/base -> origin/gh/shunting314/213/base 2025-08-14T21:43:28.6004048Z * [new branch] gh/shunting314/213/head -> origin/gh/shunting314/213/head 2025-08-14T21:43:28.6004608Z * [new branch] gh/shunting314/213/orig -> origin/gh/shunting314/213/orig 2025-08-14T21:43:28.6005154Z * [new branch] gh/silverguo/1/base -> origin/gh/silverguo/1/base 2025-08-14T21:43:28.6005698Z * [new branch] gh/silverguo/1/head -> origin/gh/silverguo/1/head 2025-08-14T21:43:28.6006217Z * [new branch] gh/silverguo/2/base -> origin/gh/silverguo/2/base 2025-08-14T21:43:28.6006746Z * [new branch] gh/silverguo/2/head -> origin/gh/silverguo/2/head 2025-08-14T21:43:28.6007269Z * [new branch] gh/silverguo/3/base -> origin/gh/silverguo/3/base 2025-08-14T21:43:28.6007779Z * [new branch] gh/silverguo/3/head -> origin/gh/silverguo/3/head 2025-08-14T21:43:28.6008309Z * [new branch] gh/silverguo/4/base -> origin/gh/silverguo/4/base 2025-08-14T21:43:28.6010466Z * [new branch] gh/silverguo/4/head -> origin/gh/silverguo/4/head 2025-08-14T21:43:28.6011008Z * [new branch] gh/sinhaanhsul/1/base -> origin/gh/sinhaanhsul/1/base 2025-08-14T21:43:28.6011558Z * [new branch] gh/sinhaanhsul/1/head -> origin/gh/sinhaanhsul/1/head 2025-08-14T21:43:28.6012099Z * [new branch] gh/skarjala/11/base -> origin/gh/skarjala/11/base 2025-08-14T21:43:28.6012624Z * [new branch] gh/skarjala/11/head -> origin/gh/skarjala/11/head 2025-08-14T21:43:28.6013134Z * [new branch] gh/skarjala/11/orig -> origin/gh/skarjala/11/orig 2025-08-14T21:43:28.6013654Z * [new branch] gh/skarjala/13/base -> origin/gh/skarjala/13/base 2025-08-14T21:43:28.6014163Z * [new branch] gh/skarjala/13/head -> origin/gh/skarjala/13/head 2025-08-14T21:43:28.6014990Z * [new branch] gh/skarjala/13/orig -> origin/gh/skarjala/13/orig 2025-08-14T21:43:28.6015514Z * [new branch] gh/skarjala/14/base -> origin/gh/skarjala/14/base 2025-08-14T21:43:28.6016027Z * [new branch] gh/skarjala/14/head -> origin/gh/skarjala/14/head 2025-08-14T21:43:28.6016547Z * [new branch] gh/skarjala/14/orig -> origin/gh/skarjala/14/orig 2025-08-14T21:43:28.6017070Z * [new branch] gh/skarjala/15/base -> origin/gh/skarjala/15/base 2025-08-14T21:43:28.6017590Z * [new branch] gh/skarjala/15/head -> origin/gh/skarjala/15/head 2025-08-14T21:43:28.6018108Z * [new branch] gh/skarjala/15/orig -> origin/gh/skarjala/15/orig 2025-08-14T21:43:28.6018622Z * [new branch] gh/skarjala/16/base -> origin/gh/skarjala/16/base 2025-08-14T21:43:28.6019145Z * [new branch] gh/skarjala/16/head -> origin/gh/skarjala/16/head 2025-08-14T21:43:28.6020749Z * [new branch] gh/skarjala/16/orig -> origin/gh/skarjala/16/orig 2025-08-14T21:43:28.6021959Z * [new branch] gh/skarjala/17/base -> origin/gh/skarjala/17/base 2025-08-14T21:43:28.6022483Z * [new branch] gh/skarjala/17/head -> origin/gh/skarjala/17/head 2025-08-14T21:43:28.6022991Z * [new branch] gh/skarjala/17/orig -> origin/gh/skarjala/17/orig 2025-08-14T21:43:28.6023660Z * [new branch] gh/skarjala/18/base -> origin/gh/skarjala/18/base 2025-08-14T21:43:28.6496803Z * [new branch] gh/skarjala/18/head -> origin/gh/skarjala/18/head 2025-08-14T21:43:28.6497385Z * [new branch] gh/skarjala/18/orig -> origin/gh/skarjala/18/orig 2025-08-14T21:43:28.6497939Z * [new branch] gh/skarjala/19/base -> origin/gh/skarjala/19/base 2025-08-14T21:43:28.6498485Z * [new branch] gh/skarjala/19/head -> origin/gh/skarjala/19/head 2025-08-14T21:43:28.6499010Z * [new branch] gh/skarjala/19/orig -> origin/gh/skarjala/19/orig 2025-08-14T21:43:28.6499533Z * [new branch] gh/soulitzer/269/base -> origin/gh/soulitzer/269/base 2025-08-14T21:43:28.6500256Z * [new branch] gh/soulitzer/269/head -> origin/gh/soulitzer/269/head 2025-08-14T21:43:28.6500815Z * [new branch] gh/soulitzer/269/orig -> origin/gh/soulitzer/269/orig 2025-08-14T21:43:28.6501441Z * [new branch] gh/soulitzer/276/base -> origin/gh/soulitzer/276/base 2025-08-14T21:43:28.6502076Z * [new branch] gh/soulitzer/276/head -> origin/gh/soulitzer/276/head 2025-08-14T21:43:28.6502604Z * [new branch] gh/soulitzer/276/orig -> origin/gh/soulitzer/276/orig 2025-08-14T21:43:28.6503143Z * [new branch] gh/soulitzer/287/base -> origin/gh/soulitzer/287/base 2025-08-14T21:43:28.6503687Z * [new branch] gh/soulitzer/287/head -> origin/gh/soulitzer/287/head 2025-08-14T21:43:28.6504222Z * [new branch] gh/soulitzer/287/orig -> origin/gh/soulitzer/287/orig 2025-08-14T21:43:28.6504758Z * [new branch] gh/soulitzer/296/base -> origin/gh/soulitzer/296/base 2025-08-14T21:43:28.6505293Z * [new branch] gh/soulitzer/296/head -> origin/gh/soulitzer/296/head 2025-08-14T21:43:28.6505832Z * [new branch] gh/soulitzer/296/orig -> origin/gh/soulitzer/296/orig 2025-08-14T21:43:28.6506368Z * [new branch] gh/soulitzer/299/base -> origin/gh/soulitzer/299/base 2025-08-14T21:43:28.6506900Z * [new branch] gh/soulitzer/299/head -> origin/gh/soulitzer/299/head 2025-08-14T21:43:28.6507439Z * [new branch] gh/soulitzer/299/orig -> origin/gh/soulitzer/299/orig 2025-08-14T21:43:28.6508138Z * [new branch] gh/soulitzer/300/base -> origin/gh/soulitzer/300/base 2025-08-14T21:43:28.6508686Z * [new branch] gh/soulitzer/300/head -> origin/gh/soulitzer/300/head 2025-08-14T21:43:28.6509221Z * [new branch] gh/soulitzer/300/orig -> origin/gh/soulitzer/300/orig 2025-08-14T21:43:28.6509763Z * [new branch] gh/soulitzer/301/base -> origin/gh/soulitzer/301/base 2025-08-14T21:43:28.6510313Z * [new branch] gh/soulitzer/301/head -> origin/gh/soulitzer/301/head 2025-08-14T21:43:28.6510851Z * [new branch] gh/soulitzer/301/orig -> origin/gh/soulitzer/301/orig 2025-08-14T21:43:28.6511392Z * [new branch] gh/soulitzer/313/base -> origin/gh/soulitzer/313/base 2025-08-14T21:43:28.6511922Z * [new branch] gh/soulitzer/313/head -> origin/gh/soulitzer/313/head 2025-08-14T21:43:28.6512455Z * [new branch] gh/soulitzer/313/orig -> origin/gh/soulitzer/313/orig 2025-08-14T21:43:28.6513006Z * [new branch] gh/soulitzer/319/base -> origin/gh/soulitzer/319/base 2025-08-14T21:43:28.6513538Z * [new branch] gh/soulitzer/319/head -> origin/gh/soulitzer/319/head 2025-08-14T21:43:28.6514072Z * [new branch] gh/soulitzer/319/orig -> origin/gh/soulitzer/319/orig 2025-08-14T21:43:28.6514600Z * [new branch] gh/soulitzer/320/base -> origin/gh/soulitzer/320/base 2025-08-14T21:43:28.6515263Z * [new branch] gh/soulitzer/320/head -> origin/gh/soulitzer/320/head 2025-08-14T21:43:28.6515808Z * [new branch] gh/soulitzer/320/orig -> origin/gh/soulitzer/320/orig 2025-08-14T21:43:28.6516342Z * [new branch] gh/soulitzer/336/base -> origin/gh/soulitzer/336/base 2025-08-14T21:43:28.6516884Z * [new branch] gh/soulitzer/336/head -> origin/gh/soulitzer/336/head 2025-08-14T21:43:28.6517420Z * [new branch] gh/soulitzer/336/orig -> origin/gh/soulitzer/336/orig 2025-08-14T21:43:28.6517973Z * [new branch] gh/soulitzer/347/base -> origin/gh/soulitzer/347/base 2025-08-14T21:43:28.6518510Z * [new branch] gh/soulitzer/347/head -> origin/gh/soulitzer/347/head 2025-08-14T21:43:28.6519041Z * [new branch] gh/soulitzer/347/orig -> origin/gh/soulitzer/347/orig 2025-08-14T21:43:28.6519605Z * [new branch] gh/soulitzer/349/base -> origin/gh/soulitzer/349/base 2025-08-14T21:43:28.6520145Z * [new branch] gh/soulitzer/349/head -> origin/gh/soulitzer/349/head 2025-08-14T21:43:28.6520683Z * [new branch] gh/soulitzer/349/orig -> origin/gh/soulitzer/349/orig 2025-08-14T21:43:28.6521214Z * [new branch] gh/soulitzer/350/base -> origin/gh/soulitzer/350/base 2025-08-14T21:43:28.6521747Z * [new branch] gh/soulitzer/350/head -> origin/gh/soulitzer/350/head 2025-08-14T21:43:28.6999179Z * [new branch] gh/soulitzer/350/orig -> origin/gh/soulitzer/350/orig 2025-08-14T21:43:28.6999848Z * [new branch] gh/soulitzer/351/base -> origin/gh/soulitzer/351/base 2025-08-14T21:43:28.7000394Z * [new branch] gh/soulitzer/351/head -> origin/gh/soulitzer/351/head 2025-08-14T21:43:28.7000954Z * [new branch] gh/soulitzer/351/orig -> origin/gh/soulitzer/351/orig 2025-08-14T21:43:28.7001489Z * [new branch] gh/soulitzer/353/base -> origin/gh/soulitzer/353/base 2025-08-14T21:43:28.7002031Z * [new branch] gh/soulitzer/353/head -> origin/gh/soulitzer/353/head 2025-08-14T21:43:28.7002556Z * [new branch] gh/soulitzer/353/orig -> origin/gh/soulitzer/353/orig 2025-08-14T21:43:28.7003101Z * [new branch] gh/soulitzer/358/base -> origin/gh/soulitzer/358/base 2025-08-14T21:43:28.7003643Z * [new branch] gh/soulitzer/358/head -> origin/gh/soulitzer/358/head 2025-08-14T21:43:28.7004333Z * [new branch] gh/soulitzer/358/orig -> origin/gh/soulitzer/358/orig 2025-08-14T21:43:28.7004887Z * [new branch] gh/soulitzer/359/base -> origin/gh/soulitzer/359/base 2025-08-14T21:43:28.7005426Z * [new branch] gh/soulitzer/359/head -> origin/gh/soulitzer/359/head 2025-08-14T21:43:28.7005967Z * [new branch] gh/soulitzer/359/orig -> origin/gh/soulitzer/359/orig 2025-08-14T21:43:28.7014035Z * [new branch] gh/soulitzer/362/base -> origin/gh/soulitzer/362/base 2025-08-14T21:43:28.7014751Z * [new branch] gh/soulitzer/362/head -> origin/gh/soulitzer/362/head 2025-08-14T21:43:28.7015311Z * [new branch] gh/soulitzer/362/orig -> origin/gh/soulitzer/362/orig 2025-08-14T21:43:28.7015858Z * [new branch] gh/soulitzer/372/base -> origin/gh/soulitzer/372/base 2025-08-14T21:43:28.7016424Z * [new branch] gh/soulitzer/372/head -> origin/gh/soulitzer/372/head 2025-08-14T21:43:28.7016961Z * [new branch] gh/soulitzer/372/orig -> origin/gh/soulitzer/372/orig 2025-08-14T21:43:28.7017493Z * [new branch] gh/swolchok/728/next -> origin/gh/swolchok/728/next 2025-08-14T21:43:28.7018038Z * [new branch] gh/swolchok/758/base -> origin/gh/swolchok/758/base 2025-08-14T21:43:28.7018562Z * [new branch] gh/swolchok/758/head -> origin/gh/swolchok/758/head 2025-08-14T21:43:28.7019291Z * [new branch] gh/swolchok/758/orig -> origin/gh/swolchok/758/orig 2025-08-14T21:43:28.7019912Z * [new branch] gh/swolchok/767/base -> origin/gh/swolchok/767/base 2025-08-14T21:43:28.7020441Z * [new branch] gh/swolchok/767/head -> origin/gh/swolchok/767/head 2025-08-14T21:43:28.7020978Z * [new branch] gh/swolchok/767/orig -> origin/gh/swolchok/767/orig 2025-08-14T21:43:28.7021507Z * [new branch] gh/swolchok/768/base -> origin/gh/swolchok/768/base 2025-08-14T21:43:28.7022046Z * [new branch] gh/swolchok/768/head -> origin/gh/swolchok/768/head 2025-08-14T21:43:28.7022587Z * [new branch] gh/swolchok/768/orig -> origin/gh/swolchok/768/orig 2025-08-14T21:43:28.7023104Z * [new branch] gh/swolchok/769/base -> origin/gh/swolchok/769/base 2025-08-14T21:43:28.7023761Z * [new branch] gh/swolchok/769/head -> origin/gh/swolchok/769/head 2025-08-14T21:43:28.7024286Z * [new branch] gh/swolchok/769/orig -> origin/gh/swolchok/769/orig 2025-08-14T21:43:28.7024926Z * [new branch] gh/swolchok/771/base -> origin/gh/swolchok/771/base 2025-08-14T21:43:28.7025453Z * [new branch] gh/swolchok/771/head -> origin/gh/swolchok/771/head 2025-08-14T21:43:28.7025986Z * [new branch] gh/swolchok/771/orig -> origin/gh/swolchok/771/orig 2025-08-14T21:43:28.7026517Z * [new branch] gh/swolchok/772/base -> origin/gh/swolchok/772/base 2025-08-14T21:43:28.7027039Z * [new branch] gh/swolchok/772/head -> origin/gh/swolchok/772/head 2025-08-14T21:43:28.7027570Z * [new branch] gh/swolchok/772/orig -> origin/gh/swolchok/772/orig 2025-08-14T21:43:28.7028093Z * [new branch] gh/swolchok/773/base -> origin/gh/swolchok/773/base 2025-08-14T21:43:28.7028629Z * [new branch] gh/swolchok/773/head -> origin/gh/swolchok/773/head 2025-08-14T21:43:28.7029156Z * [new branch] gh/swolchok/773/orig -> origin/gh/swolchok/773/orig 2025-08-14T21:43:28.7029679Z * [new branch] gh/swolchok/786/base -> origin/gh/swolchok/786/base 2025-08-14T21:43:28.7030217Z * [new branch] gh/swolchok/786/head -> origin/gh/swolchok/786/head 2025-08-14T21:43:28.7030858Z * [new branch] gh/swolchok/786/orig -> origin/gh/swolchok/786/orig 2025-08-14T21:43:28.7031394Z * [new branch] gh/swolchok/787/base -> origin/gh/swolchok/787/base 2025-08-14T21:43:28.7031927Z * [new branch] gh/swolchok/787/head -> origin/gh/swolchok/787/head 2025-08-14T21:43:28.7522394Z * [new branch] gh/swolchok/787/orig -> origin/gh/swolchok/787/orig 2025-08-14T21:43:28.7522964Z * [new branch] gh/syed-ahmed/2/base -> origin/gh/syed-ahmed/2/base 2025-08-14T21:43:28.7523509Z * [new branch] gh/syed-ahmed/2/head -> origin/gh/syed-ahmed/2/head 2025-08-14T21:43:28.7524038Z * [new branch] gh/syed-ahmed/2/orig -> origin/gh/syed-ahmed/2/orig 2025-08-14T21:43:28.7524589Z * [new branch] gh/syed-ahmed/3/base -> origin/gh/syed-ahmed/3/base 2025-08-14T21:43:28.7525106Z * [new branch] gh/syed-ahmed/3/head -> origin/gh/syed-ahmed/3/head 2025-08-14T21:43:28.7525646Z * [new branch] gh/syed-ahmed/3/orig -> origin/gh/syed-ahmed/3/orig 2025-08-14T21:43:28.7526163Z * [new branch] gh/syed-ahmed/4/base -> origin/gh/syed-ahmed/4/base 2025-08-14T21:43:28.7526681Z * [new branch] gh/syed-ahmed/4/head -> origin/gh/syed-ahmed/4/head 2025-08-14T21:43:28.7527200Z * [new branch] gh/syed-ahmed/4/orig -> origin/gh/syed-ahmed/4/orig 2025-08-14T21:43:28.7527871Z * [new branch] gh/teja-rao/3/base -> origin/gh/teja-rao/3/base 2025-08-14T21:43:28.7528503Z * [new branch] gh/teja-rao/3/head -> origin/gh/teja-rao/3/head 2025-08-14T21:43:28.7529097Z * [new branch] gh/teja-rao/3/orig -> origin/gh/teja-rao/3/orig 2025-08-14T21:43:28.7529609Z * [new branch] gh/tianyu-l/2/base -> origin/gh/tianyu-l/2/base 2025-08-14T21:43:28.7530126Z * [new branch] gh/tianyu-l/2/head -> origin/gh/tianyu-l/2/head 2025-08-14T21:43:28.7530626Z * [new branch] gh/tianyu-l/2/orig -> origin/gh/tianyu-l/2/orig 2025-08-14T21:43:28.7531154Z * [new branch] gh/titaiwangms/1/base -> origin/gh/titaiwangms/1/base 2025-08-14T21:43:28.7531702Z * [new branch] gh/titaiwangms/1/head -> origin/gh/titaiwangms/1/head 2025-08-14T21:43:28.7532250Z * [new branch] gh/titaiwangms/1/orig -> origin/gh/titaiwangms/1/orig 2025-08-14T21:43:28.7532808Z * [new branch] gh/titaiwangms/2/base -> origin/gh/titaiwangms/2/base 2025-08-14T21:43:28.7533347Z * [new branch] gh/titaiwangms/2/head -> origin/gh/titaiwangms/2/head 2025-08-14T21:43:28.7533889Z * [new branch] gh/titaiwangms/2/orig -> origin/gh/titaiwangms/2/orig 2025-08-14T21:43:28.7534428Z * [new branch] gh/titaiwangms/3/base -> origin/gh/titaiwangms/3/base 2025-08-14T21:43:28.7534989Z * [new branch] gh/titaiwangms/3/head -> origin/gh/titaiwangms/3/head 2025-08-14T21:43:28.7535542Z * [new branch] gh/titaiwangms/3/orig -> origin/gh/titaiwangms/3/orig 2025-08-14T21:43:28.7536076Z * [new branch] gh/titaiwangms/4/base -> origin/gh/titaiwangms/4/base 2025-08-14T21:43:28.7536634Z * [new branch] gh/titaiwangms/4/head -> origin/gh/titaiwangms/4/head 2025-08-14T21:43:28.7537178Z * [new branch] gh/titaiwangms/4/orig -> origin/gh/titaiwangms/4/orig 2025-08-14T21:43:28.7537741Z * [new branch] gh/titaiwangms/5/base -> origin/gh/titaiwangms/5/base 2025-08-14T21:43:28.7538279Z * [new branch] gh/titaiwangms/5/head -> origin/gh/titaiwangms/5/head 2025-08-14T21:43:28.7538837Z * [new branch] gh/titaiwangms/5/orig -> origin/gh/titaiwangms/5/orig 2025-08-14T21:43:28.7539397Z * [new branch] gh/titaiwangms/6/base -> origin/gh/titaiwangms/6/base 2025-08-14T21:43:28.7540129Z * [new branch] gh/titaiwangms/6/head -> origin/gh/titaiwangms/6/head 2025-08-14T21:43:28.7540693Z * [new branch] gh/titaiwangms/6/orig -> origin/gh/titaiwangms/6/orig 2025-08-14T21:43:28.7541247Z * [new branch] gh/titaiwangms/7/base -> origin/gh/titaiwangms/7/base 2025-08-14T21:43:28.7541791Z * [new branch] gh/titaiwangms/7/head -> origin/gh/titaiwangms/7/head 2025-08-14T21:43:28.7542353Z * [new branch] gh/titaiwangms/7/orig -> origin/gh/titaiwangms/7/orig 2025-08-14T21:43:28.7542894Z * [new branch] gh/titaiwangms/8/base -> origin/gh/titaiwangms/8/base 2025-08-14T21:43:28.7543442Z * [new branch] gh/titaiwangms/8/head -> origin/gh/titaiwangms/8/head 2025-08-14T21:43:28.7543982Z * [new branch] gh/titaiwangms/8/orig -> origin/gh/titaiwangms/8/orig 2025-08-14T21:43:28.7544553Z * [new branch] gh/tugsbayasgalan/1/base -> origin/gh/tugsbayasgalan/1/base 2025-08-14T21:43:28.7545156Z * [new branch] gh/tugsbayasgalan/1/head -> origin/gh/tugsbayasgalan/1/head 2025-08-14T21:43:28.7545733Z * [new branch] gh/tugsbayasgalan/1/orig -> origin/gh/tugsbayasgalan/1/orig 2025-08-14T21:43:28.7546276Z * [new branch] gh/v0i0/1/base -> origin/gh/v0i0/1/base 2025-08-14T21:43:28.7546749Z * [new branch] gh/v0i0/1/head -> origin/gh/v0i0/1/head 2025-08-14T21:43:28.7547334Z * [new branch] gh/v0i0/1/orig -> origin/gh/v0i0/1/orig 2025-08-14T21:43:28.7547800Z * [new branch] gh/v0i0/2/base -> origin/gh/v0i0/2/base 2025-08-14T21:43:28.8046726Z * [new branch] gh/v0i0/2/head -> origin/gh/v0i0/2/head 2025-08-14T21:43:28.8047381Z * [new branch] gh/v0i0/2/orig -> origin/gh/v0i0/2/orig 2025-08-14T21:43:28.8047865Z * [new branch] gh/v0i0/3/base -> origin/gh/v0i0/3/base 2025-08-14T21:43:28.8048366Z * [new branch] gh/v0i0/3/head -> origin/gh/v0i0/3/head 2025-08-14T21:43:28.8048933Z * [new branch] gh/v0i0/3/orig -> origin/gh/v0i0/3/orig 2025-08-14T21:43:28.8049488Z * [new branch] gh/v0i0/4/base -> origin/gh/v0i0/4/base 2025-08-14T21:43:28.8049957Z * [new branch] gh/v0i0/4/head -> origin/gh/v0i0/4/head 2025-08-14T21:43:28.8050426Z * [new branch] gh/v0i0/4/orig -> origin/gh/v0i0/4/orig 2025-08-14T21:43:28.8050896Z * [new branch] gh/v0i0/5/base -> origin/gh/v0i0/5/base 2025-08-14T21:43:28.8051370Z * [new branch] gh/v0i0/5/head -> origin/gh/v0i0/5/head 2025-08-14T21:43:28.8051829Z * [new branch] gh/v0i0/5/orig -> origin/gh/v0i0/5/orig 2025-08-14T21:43:28.8052297Z * [new branch] gh/v0i0/6/base -> origin/gh/v0i0/6/base 2025-08-14T21:43:28.8052762Z * [new branch] gh/v0i0/6/head -> origin/gh/v0i0/6/head 2025-08-14T21:43:28.8053230Z * [new branch] gh/v0i0/6/orig -> origin/gh/v0i0/6/orig 2025-08-14T21:43:28.8053702Z * [new branch] gh/vkuzo/1/next -> origin/gh/vkuzo/1/next 2025-08-14T21:43:28.8054189Z * [new branch] gh/vkuzo/2/next -> origin/gh/vkuzo/2/next 2025-08-14T21:43:28.8054675Z * [new branch] gh/vkuzo/3/next -> origin/gh/vkuzo/3/next 2025-08-14T21:43:28.8055272Z * [new branch] gh/wconstab/392/base -> origin/gh/wconstab/392/base 2025-08-14T21:43:28.8055815Z * [new branch] gh/wconstab/392/head -> origin/gh/wconstab/392/head 2025-08-14T21:43:28.8056438Z * [new branch] gh/wconstab/392/orig -> origin/gh/wconstab/392/orig 2025-08-14T21:43:28.8056967Z * [new branch] gh/wconstab/419/base -> origin/gh/wconstab/419/base 2025-08-14T21:43:28.8057658Z * [new branch] gh/wconstab/419/head -> origin/gh/wconstab/419/head 2025-08-14T21:43:28.8058184Z * [new branch] gh/wconstab/419/orig -> origin/gh/wconstab/419/orig 2025-08-14T21:43:28.8058716Z * [new branch] gh/wconstab/424/base -> origin/gh/wconstab/424/base 2025-08-14T21:43:28.8059241Z * [new branch] gh/wconstab/424/head -> origin/gh/wconstab/424/head 2025-08-14T21:43:28.8059864Z * [new branch] gh/wconstab/424/orig -> origin/gh/wconstab/424/orig 2025-08-14T21:43:28.8060397Z * [new branch] gh/wconstab/425/base -> origin/gh/wconstab/425/base 2025-08-14T21:43:28.8060919Z * [new branch] gh/wconstab/425/head -> origin/gh/wconstab/425/head 2025-08-14T21:43:28.8061549Z * [new branch] gh/wconstab/425/orig -> origin/gh/wconstab/425/orig 2025-08-14T21:43:28.8062083Z * [new branch] gh/wconstab/426/base -> origin/gh/wconstab/426/base 2025-08-14T21:43:28.8062707Z * [new branch] gh/wconstab/426/head -> origin/gh/wconstab/426/head 2025-08-14T21:43:28.8063232Z * [new branch] gh/wconstab/426/orig -> origin/gh/wconstab/426/orig 2025-08-14T21:43:28.8063758Z * [new branch] gh/wconstab/427/base -> origin/gh/wconstab/427/base 2025-08-14T21:43:28.8064294Z * [new branch] gh/wconstab/427/head -> origin/gh/wconstab/427/head 2025-08-14T21:43:28.8064938Z * [new branch] gh/wconstab/427/orig -> origin/gh/wconstab/427/orig 2025-08-14T21:43:28.8065472Z * [new branch] gh/wconstab/428/base -> origin/gh/wconstab/428/base 2025-08-14T21:43:28.8065998Z * [new branch] gh/wconstab/428/head -> origin/gh/wconstab/428/head 2025-08-14T21:43:28.8066540Z * [new branch] gh/wconstab/428/orig -> origin/gh/wconstab/428/orig 2025-08-14T21:43:28.8067084Z * [new branch] gh/wconstab/429/base -> origin/gh/wconstab/429/base 2025-08-14T21:43:28.8067700Z * [new branch] gh/wconstab/429/head -> origin/gh/wconstab/429/head 2025-08-14T21:43:28.8068240Z * [new branch] gh/wconstab/429/orig -> origin/gh/wconstab/429/orig 2025-08-14T21:43:28.8068869Z * [new branch] gh/wconstab/430/base -> origin/gh/wconstab/430/base 2025-08-14T21:43:28.8069399Z * [new branch] gh/wconstab/430/head -> origin/gh/wconstab/430/head 2025-08-14T21:43:28.8069927Z * [new branch] gh/wconstab/430/orig -> origin/gh/wconstab/430/orig 2025-08-14T21:43:28.8070445Z * [new branch] gh/wconstab/431/base -> origin/gh/wconstab/431/base 2025-08-14T21:43:28.8070983Z * [new branch] gh/wconstab/431/head -> origin/gh/wconstab/431/head 2025-08-14T21:43:28.8071499Z * [new branch] gh/wconstab/431/orig -> origin/gh/wconstab/431/orig 2025-08-14T21:43:28.9650636Z * [new branch] gh/wconstab/432/base -> origin/gh/wconstab/432/base 2025-08-14T21:43:28.9651221Z * [new branch] gh/wconstab/432/head -> origin/gh/wconstab/432/head 2025-08-14T21:43:28.9651769Z * [new branch] gh/wconstab/432/orig -> origin/gh/wconstab/432/orig 2025-08-14T21:43:28.9652297Z * [new branch] gh/wconstab/433/base -> origin/gh/wconstab/433/base 2025-08-14T21:43:28.9652868Z * [new branch] gh/wconstab/433/head -> origin/gh/wconstab/433/head 2025-08-14T21:43:28.9653398Z * [new branch] gh/wconstab/433/orig -> origin/gh/wconstab/433/orig 2025-08-14T21:43:28.9653917Z * [new branch] gh/wconstab/434/base -> origin/gh/wconstab/434/base 2025-08-14T21:43:28.9654448Z * [new branch] gh/wconstab/434/head -> origin/gh/wconstab/434/head 2025-08-14T21:43:28.9655140Z * [new branch] gh/wconstab/434/orig -> origin/gh/wconstab/434/orig 2025-08-14T21:43:28.9655682Z * [new branch] gh/wconstab/435/base -> origin/gh/wconstab/435/base 2025-08-14T21:43:28.9656220Z * [new branch] gh/wconstab/435/head -> origin/gh/wconstab/435/head 2025-08-14T21:43:28.9656752Z * [new branch] gh/wconstab/435/orig -> origin/gh/wconstab/435/orig 2025-08-14T21:43:28.9657289Z * [new branch] gh/wconstab/436/base -> origin/gh/wconstab/436/base 2025-08-14T21:43:28.9657817Z * [new branch] gh/wconstab/436/head -> origin/gh/wconstab/436/head 2025-08-14T21:43:28.9658357Z * [new branch] gh/wconstab/436/orig -> origin/gh/wconstab/436/orig 2025-08-14T21:43:28.9658898Z * [new branch] gh/wconstab/437/base -> origin/gh/wconstab/437/base 2025-08-14T21:43:28.9659417Z * [new branch] gh/wconstab/437/head -> origin/gh/wconstab/437/head 2025-08-14T21:43:28.9660027Z * [new branch] gh/wconstab/437/orig -> origin/gh/wconstab/437/orig 2025-08-14T21:43:28.9660552Z * [new branch] gh/wconstab/438/base -> origin/gh/wconstab/438/base 2025-08-14T21:43:28.9661092Z * [new branch] gh/wconstab/438/head -> origin/gh/wconstab/438/head 2025-08-14T21:43:28.9661621Z * [new branch] gh/wconstab/438/orig -> origin/gh/wconstab/438/orig 2025-08-14T21:43:28.9662273Z * [new branch] gh/wconstab/439/base -> origin/gh/wconstab/439/base 2025-08-14T21:43:28.9662815Z * [new branch] gh/wconstab/439/head -> origin/gh/wconstab/439/head 2025-08-14T21:43:28.9663340Z * [new branch] gh/wconstab/439/orig -> origin/gh/wconstab/439/orig 2025-08-14T21:43:28.9663871Z * [new branch] gh/wconstab/440/base -> origin/gh/wconstab/440/base 2025-08-14T21:43:28.9664406Z * [new branch] gh/wconstab/440/head -> origin/gh/wconstab/440/head 2025-08-14T21:43:28.9664931Z * [new branch] gh/wconstab/440/orig -> origin/gh/wconstab/440/orig 2025-08-14T21:43:28.9665462Z * [new branch] gh/wconstab/441/base -> origin/gh/wconstab/441/base 2025-08-14T21:43:28.9665988Z * [new branch] gh/wconstab/441/head -> origin/gh/wconstab/441/head 2025-08-14T21:43:28.9666525Z * [new branch] gh/wconstab/441/orig -> origin/gh/wconstab/441/orig 2025-08-14T21:43:28.9667049Z * [new branch] gh/wconstab/442/base -> origin/gh/wconstab/442/base 2025-08-14T21:43:28.9667574Z * [new branch] gh/wconstab/442/head -> origin/gh/wconstab/442/head 2025-08-14T21:43:28.9668103Z * [new branch] gh/wconstab/442/orig -> origin/gh/wconstab/442/orig 2025-08-14T21:43:28.9668632Z * [new branch] gh/weifengpy/27/base -> origin/gh/weifengpy/27/base 2025-08-14T21:43:28.9669176Z * [new branch] gh/weifengpy/27/head -> origin/gh/weifengpy/27/head 2025-08-14T21:43:28.9669704Z * [new branch] gh/weifengpy/27/orig -> origin/gh/weifengpy/27/orig 2025-08-14T21:43:28.9670239Z * [new branch] gh/weifengpy/30/base -> origin/gh/weifengpy/30/base 2025-08-14T21:43:28.9670774Z * [new branch] gh/weifengpy/30/head -> origin/gh/weifengpy/30/head 2025-08-14T21:43:28.9671301Z * [new branch] gh/weifengpy/30/orig -> origin/gh/weifengpy/30/orig 2025-08-14T21:43:28.9671847Z * [new branch] gh/weifengpy/31/base -> origin/gh/weifengpy/31/base 2025-08-14T21:43:28.9672370Z * [new branch] gh/weifengpy/31/head -> origin/gh/weifengpy/31/head 2025-08-14T21:43:28.9672901Z * [new branch] gh/weifengpy/31/orig -> origin/gh/weifengpy/31/orig 2025-08-14T21:43:28.9673437Z * [new branch] gh/weifengpy/32/base -> origin/gh/weifengpy/32/base 2025-08-14T21:43:28.9674065Z * [new branch] gh/weifengpy/32/head -> origin/gh/weifengpy/32/head 2025-08-14T21:43:28.9674615Z * [new branch] gh/weifengpy/32/orig -> origin/gh/weifengpy/32/orig 2025-08-14T21:43:28.9675145Z * [new branch] gh/weifengpy/33/base -> origin/gh/weifengpy/33/base 2025-08-14T21:43:28.9675685Z * [new branch] gh/weifengpy/33/head -> origin/gh/weifengpy/33/head 2025-08-14T21:43:29.0139404Z * [new branch] gh/weifengpy/33/orig -> origin/gh/weifengpy/33/orig 2025-08-14T21:43:29.0140098Z * [new branch] gh/williamwen42/196/base -> origin/gh/williamwen42/196/base 2025-08-14T21:43:29.0140719Z * [new branch] gh/williamwen42/196/head -> origin/gh/williamwen42/196/head 2025-08-14T21:43:29.0141295Z * [new branch] gh/williamwen42/196/orig -> origin/gh/williamwen42/196/orig 2025-08-14T21:43:29.0141888Z * [new branch] gh/williamwen42/209/base -> origin/gh/williamwen42/209/base 2025-08-14T21:43:29.0142477Z * [new branch] gh/williamwen42/209/head -> origin/gh/williamwen42/209/head 2025-08-14T21:43:29.0143155Z * [new branch] gh/williamwen42/209/orig -> origin/gh/williamwen42/209/orig 2025-08-14T21:43:29.0143807Z * [new branch] gh/williamwen42/250/base -> origin/gh/williamwen42/250/base 2025-08-14T21:43:29.0144383Z * [new branch] gh/williamwen42/250/head -> origin/gh/williamwen42/250/head 2025-08-14T21:43:29.0146042Z * [new branch] gh/williamwen42/250/orig -> origin/gh/williamwen42/250/orig 2025-08-14T21:43:29.0146798Z * [new branch] gh/williamwen42/252/base -> origin/gh/williamwen42/252/base 2025-08-14T21:43:29.0147367Z * [new branch] gh/williamwen42/252/head -> origin/gh/williamwen42/252/head 2025-08-14T21:43:29.0148014Z * [new branch] gh/williamwen42/252/orig -> origin/gh/williamwen42/252/orig 2025-08-14T21:43:29.0148770Z * [new branch] gh/williamwen42/256/base -> origin/gh/williamwen42/256/base 2025-08-14T21:43:29.0149433Z * [new branch] gh/williamwen42/256/head -> origin/gh/williamwen42/256/head 2025-08-14T21:43:29.0150001Z * [new branch] gh/williamwen42/256/orig -> origin/gh/williamwen42/256/orig 2025-08-14T21:43:29.0150671Z * [new branch] gh/williamwen42/258/base -> origin/gh/williamwen42/258/base 2025-08-14T21:43:29.0151333Z * [new branch] gh/williamwen42/258/head -> origin/gh/williamwen42/258/head 2025-08-14T21:43:29.0151901Z * [new branch] gh/williamwen42/258/orig -> origin/gh/williamwen42/258/orig 2025-08-14T21:43:29.0152458Z * [new branch] gh/williamwen42/260/base -> origin/gh/williamwen42/260/base 2025-08-14T21:43:29.0153030Z * [new branch] gh/williamwen42/260/head -> origin/gh/williamwen42/260/head 2025-08-14T21:43:29.0153603Z * [new branch] gh/williamwen42/260/orig -> origin/gh/williamwen42/260/orig 2025-08-14T21:43:29.0154163Z * [new branch] gh/williamwen42/261/base -> origin/gh/williamwen42/261/base 2025-08-14T21:43:29.0154736Z * [new branch] gh/williamwen42/261/head -> origin/gh/williamwen42/261/head 2025-08-14T21:43:29.0155390Z * [new branch] gh/williamwen42/261/orig -> origin/gh/williamwen42/261/orig 2025-08-14T21:43:29.0156047Z * [new branch] gh/williamwen42/262/base -> origin/gh/williamwen42/262/base 2025-08-14T21:43:29.0156720Z * [new branch] gh/williamwen42/262/head -> origin/gh/williamwen42/262/head 2025-08-14T21:43:29.0157371Z * [new branch] gh/williamwen42/262/orig -> origin/gh/williamwen42/262/orig 2025-08-14T21:43:29.0157941Z * [new branch] gh/williamwen42/263/base -> origin/gh/williamwen42/263/base 2025-08-14T21:43:29.0158600Z * [new branch] gh/williamwen42/263/head -> origin/gh/williamwen42/263/head 2025-08-14T21:43:29.0159749Z * [new branch] gh/williamwen42/263/orig -> origin/gh/williamwen42/263/orig 2025-08-14T21:43:29.0160328Z * [new branch] gh/williamwen42/264/base -> origin/gh/williamwen42/264/base 2025-08-14T21:43:29.0160980Z * [new branch] gh/williamwen42/264/head -> origin/gh/williamwen42/264/head 2025-08-14T21:43:29.0161638Z * [new branch] gh/williamwen42/264/orig -> origin/gh/williamwen42/264/orig 2025-08-14T21:43:29.0162206Z * [new branch] gh/williamwen42/265/base -> origin/gh/williamwen42/265/base 2025-08-14T21:43:29.0162777Z * [new branch] gh/williamwen42/265/head -> origin/gh/williamwen42/265/head 2025-08-14T21:43:29.0163353Z * [new branch] gh/williamwen42/265/orig -> origin/gh/williamwen42/265/orig 2025-08-14T21:43:29.0163910Z * [new branch] gh/williamwen42/266/base -> origin/gh/williamwen42/266/base 2025-08-14T21:43:29.0164491Z * [new branch] gh/williamwen42/266/head -> origin/gh/williamwen42/266/head 2025-08-14T21:43:29.0165050Z * [new branch] gh/williamwen42/266/orig -> origin/gh/williamwen42/266/orig 2025-08-14T21:43:29.0165801Z * [new branch] gh/williamwen42/267/base -> origin/gh/williamwen42/267/base 2025-08-14T21:43:29.0166372Z * [new branch] gh/williamwen42/267/head -> origin/gh/williamwen42/267/head 2025-08-14T21:43:29.0167481Z * [new branch] gh/williamwen42/267/orig -> origin/gh/williamwen42/267/orig 2025-08-14T21:43:29.0168156Z * [new branch] gh/williamwen42/268/base -> origin/gh/williamwen42/268/base 2025-08-14T21:43:29.0168730Z * [new branch] gh/williamwen42/268/head -> origin/gh/williamwen42/268/head 2025-08-14T21:43:29.0630961Z * [new branch] gh/williamwen42/268/orig -> origin/gh/williamwen42/268/orig 2025-08-14T21:43:29.0631606Z * [new branch] gh/williamwen42/269/base -> origin/gh/williamwen42/269/base 2025-08-14T21:43:29.0632202Z * [new branch] gh/williamwen42/269/head -> origin/gh/williamwen42/269/head 2025-08-14T21:43:29.0632782Z * [new branch] gh/williamwen42/269/orig -> origin/gh/williamwen42/269/orig 2025-08-14T21:43:29.0633343Z * [new branch] gh/williamwen42/270/base -> origin/gh/williamwen42/270/base 2025-08-14T21:43:29.0633913Z * [new branch] gh/williamwen42/270/head -> origin/gh/williamwen42/270/head 2025-08-14T21:43:29.0634497Z * [new branch] gh/williamwen42/270/orig -> origin/gh/williamwen42/270/orig 2025-08-14T21:43:29.0635059Z * [new branch] gh/williamwen42/271/base -> origin/gh/williamwen42/271/base 2025-08-14T21:43:29.0635629Z * [new branch] gh/williamwen42/271/head -> origin/gh/williamwen42/271/head 2025-08-14T21:43:29.0636187Z * [new branch] gh/williamwen42/271/orig -> origin/gh/williamwen42/271/orig 2025-08-14T21:43:29.0636762Z * [new branch] gh/williamwen42/272/base -> origin/gh/williamwen42/272/base 2025-08-14T21:43:29.0637328Z * [new branch] gh/williamwen42/272/head -> origin/gh/williamwen42/272/head 2025-08-14T21:43:29.0637886Z * [new branch] gh/williamwen42/272/orig -> origin/gh/williamwen42/272/orig 2025-08-14T21:43:29.0638448Z * [new branch] gh/williamwen42/273/base -> origin/gh/williamwen42/273/base 2025-08-14T21:43:29.0639013Z * [new branch] gh/williamwen42/273/head -> origin/gh/williamwen42/273/head 2025-08-14T21:43:29.0639585Z * [new branch] gh/williamwen42/273/orig -> origin/gh/williamwen42/273/orig 2025-08-14T21:43:29.0640150Z * [new branch] gh/williamwen42/274/base -> origin/gh/williamwen42/274/base 2025-08-14T21:43:29.0640714Z * [new branch] gh/williamwen42/274/head -> origin/gh/williamwen42/274/head 2025-08-14T21:43:29.0641962Z * [new branch] gh/williamwen42/274/orig -> origin/gh/williamwen42/274/orig 2025-08-14T21:43:29.0642545Z * [new branch] gh/williamwen42/275/base -> origin/gh/williamwen42/275/base 2025-08-14T21:43:29.0643130Z * [new branch] gh/williamwen42/275/head -> origin/gh/williamwen42/275/head 2025-08-14T21:43:29.0643725Z * [new branch] gh/williamwen42/276/base -> origin/gh/williamwen42/276/base 2025-08-14T21:43:29.0644286Z * [new branch] gh/williamwen42/276/head -> origin/gh/williamwen42/276/head 2025-08-14T21:43:29.0644869Z * [new branch] gh/williamwen42/276/orig -> origin/gh/williamwen42/276/orig 2025-08-14T21:43:29.0645434Z * [new branch] gh/williamwen42/277/base -> origin/gh/williamwen42/277/base 2025-08-14T21:43:29.0646003Z * [new branch] gh/williamwen42/277/head -> origin/gh/williamwen42/277/head 2025-08-14T21:43:29.0646575Z * [new branch] gh/williamwen42/277/orig -> origin/gh/williamwen42/277/orig 2025-08-14T21:43:29.0647145Z * [new branch] gh/williamwen42/278/base -> origin/gh/williamwen42/278/base 2025-08-14T21:43:29.0647712Z * [new branch] gh/williamwen42/278/head -> origin/gh/williamwen42/278/head 2025-08-14T21:43:29.0648274Z * [new branch] gh/williamwen42/278/orig -> origin/gh/williamwen42/278/orig 2025-08-14T21:43:29.0648846Z * [new branch] gh/williamwen42/279/base -> origin/gh/williamwen42/279/base 2025-08-14T21:43:29.0649554Z * [new branch] gh/williamwen42/279/head -> origin/gh/williamwen42/279/head 2025-08-14T21:43:29.0650115Z * [new branch] gh/williamwen42/279/orig -> origin/gh/williamwen42/279/orig 2025-08-14T21:43:29.0650667Z * [new branch] gh/xmfan/169/base -> origin/gh/xmfan/169/base 2025-08-14T21:43:29.0651179Z * [new branch] gh/xmfan/169/head -> origin/gh/xmfan/169/head 2025-08-14T21:43:29.0651703Z * [new branch] gh/xmfan/170/base -> origin/gh/xmfan/170/base 2025-08-14T21:43:29.0652200Z * [new branch] gh/xmfan/170/head -> origin/gh/xmfan/170/head 2025-08-14T21:43:29.0652703Z * [new branch] gh/xmfan/18/base -> origin/gh/xmfan/18/base 2025-08-14T21:43:29.0653198Z * [new branch] gh/xmfan/18/head -> origin/gh/xmfan/18/head 2025-08-14T21:43:29.0653695Z * [new branch] gh/xmfan/228/base -> origin/gh/xmfan/228/base 2025-08-14T21:43:29.0654199Z * [new branch] gh/xmfan/228/head -> origin/gh/xmfan/228/head 2025-08-14T21:43:29.0654693Z * [new branch] gh/xmfan/228/orig -> origin/gh/xmfan/228/orig 2025-08-14T21:43:29.0655188Z * [new branch] gh/xmfan/229/base -> origin/gh/xmfan/229/base 2025-08-14T21:43:29.0655687Z * [new branch] gh/xmfan/229/head -> origin/gh/xmfan/229/head 2025-08-14T21:43:29.0656191Z * [new branch] gh/xmfan/229/orig -> origin/gh/xmfan/229/orig 2025-08-14T21:43:29.1147366Z * [new branch] gh/xmfan/237/base -> origin/gh/xmfan/237/base 2025-08-14T21:43:29.1147940Z * [new branch] gh/xmfan/237/head -> origin/gh/xmfan/237/head 2025-08-14T21:43:29.1148447Z * [new branch] gh/xmfan/237/orig -> origin/gh/xmfan/237/orig 2025-08-14T21:43:29.1148957Z * [new branch] gh/xmfan/244/base -> origin/gh/xmfan/244/base 2025-08-14T21:43:29.1149476Z * [new branch] gh/xmfan/244/head -> origin/gh/xmfan/244/head 2025-08-14T21:43:29.1149987Z * [new branch] gh/xmfan/244/orig -> origin/gh/xmfan/244/orig 2025-08-14T21:43:29.1150481Z * [new branch] gh/xmfan/246/base -> origin/gh/xmfan/246/base 2025-08-14T21:43:29.1150979Z * [new branch] gh/xmfan/246/head -> origin/gh/xmfan/246/head 2025-08-14T21:43:29.1151675Z * [new branch] gh/xmfan/246/orig -> origin/gh/xmfan/246/orig 2025-08-14T21:43:29.1152175Z * [new branch] gh/xmfan/253/base -> origin/gh/xmfan/253/base 2025-08-14T21:43:29.1152679Z * [new branch] gh/xmfan/253/head -> origin/gh/xmfan/253/head 2025-08-14T21:43:29.1153169Z * [new branch] gh/xmfan/253/orig -> origin/gh/xmfan/253/orig 2025-08-14T21:43:29.1153671Z * [new branch] gh/xmfan/254/base -> origin/gh/xmfan/254/base 2025-08-14T21:43:29.1154184Z * [new branch] gh/xmfan/254/head -> origin/gh/xmfan/254/head 2025-08-14T21:43:29.1154675Z * [new branch] gh/xmfan/254/orig -> origin/gh/xmfan/254/orig 2025-08-14T21:43:29.1155172Z * [new branch] gh/xmfan/260/base -> origin/gh/xmfan/260/base 2025-08-14T21:43:29.1155661Z * [new branch] gh/xmfan/260/head -> origin/gh/xmfan/260/head 2025-08-14T21:43:29.1156164Z * [new branch] gh/xmfan/260/orig -> origin/gh/xmfan/260/orig 2025-08-14T21:43:29.1156664Z * [new branch] gh/xmfan/262/base -> origin/gh/xmfan/262/base 2025-08-14T21:43:29.1157150Z * [new branch] gh/xmfan/262/head -> origin/gh/xmfan/262/head 2025-08-14T21:43:29.1157649Z * [new branch] gh/xmfan/262/orig -> origin/gh/xmfan/262/orig 2025-08-14T21:43:29.1158257Z * [new branch] gh/xmfan/263/base -> origin/gh/xmfan/263/base 2025-08-14T21:43:29.1158756Z * [new branch] gh/xmfan/263/head -> origin/gh/xmfan/263/head 2025-08-14T21:43:29.1159244Z * [new branch] gh/xmfan/263/orig -> origin/gh/xmfan/263/orig 2025-08-14T21:43:29.1159752Z * [new branch] gh/xmfan/264/base -> origin/gh/xmfan/264/base 2025-08-14T21:43:29.1160260Z * [new branch] gh/xmfan/264/head -> origin/gh/xmfan/264/head 2025-08-14T21:43:29.1160755Z * [new branch] gh/xmfan/264/orig -> origin/gh/xmfan/264/orig 2025-08-14T21:43:29.1161255Z * [new branch] gh/xmfan/268/base -> origin/gh/xmfan/268/base 2025-08-14T21:43:29.1161747Z * [new branch] gh/xmfan/268/head -> origin/gh/xmfan/268/head 2025-08-14T21:43:29.1162236Z * [new branch] gh/xmfan/268/orig -> origin/gh/xmfan/268/orig 2025-08-14T21:43:29.1162739Z * [new branch] gh/xmfan/269/base -> origin/gh/xmfan/269/base 2025-08-14T21:43:29.1163226Z * [new branch] gh/xmfan/269/head -> origin/gh/xmfan/269/head 2025-08-14T21:43:29.1163718Z * [new branch] gh/xmfan/269/orig -> origin/gh/xmfan/269/orig 2025-08-14T21:43:29.1164208Z * [new branch] gh/xmfan/270/base -> origin/gh/xmfan/270/base 2025-08-14T21:43:29.1164702Z * [new branch] gh/xmfan/270/head -> origin/gh/xmfan/270/head 2025-08-14T21:43:29.1165204Z * [new branch] gh/xmfan/270/orig -> origin/gh/xmfan/270/orig 2025-08-14T21:43:29.1165697Z * [new branch] gh/xmfan/271/base -> origin/gh/xmfan/271/base 2025-08-14T21:43:29.1166202Z * [new branch] gh/xmfan/271/head -> origin/gh/xmfan/271/head 2025-08-14T21:43:29.1166686Z * [new branch] gh/xmfan/271/orig -> origin/gh/xmfan/271/orig 2025-08-14T21:43:29.1167185Z * [new branch] gh/xmfan/272/base -> origin/gh/xmfan/272/base 2025-08-14T21:43:29.1167672Z * [new branch] gh/xmfan/272/head -> origin/gh/xmfan/272/head 2025-08-14T21:43:29.1168168Z * [new branch] gh/xmfan/272/orig -> origin/gh/xmfan/272/orig 2025-08-14T21:43:29.1168672Z * [new branch] gh/xmfan/273/base -> origin/gh/xmfan/273/base 2025-08-14T21:43:29.1169166Z * [new branch] gh/xmfan/273/head -> origin/gh/xmfan/273/head 2025-08-14T21:43:29.1169758Z * [new branch] gh/xmfan/273/orig -> origin/gh/xmfan/273/orig 2025-08-14T21:43:29.1170256Z * [new branch] gh/xmfan/274/base -> origin/gh/xmfan/274/base 2025-08-14T21:43:29.1170761Z * [new branch] gh/xmfan/274/head -> origin/gh/xmfan/274/head 2025-08-14T21:43:29.1171261Z * [new branch] gh/xmfan/274/orig -> origin/gh/xmfan/274/orig 2025-08-14T21:43:29.1671005Z * [new branch] gh/xmfan/275/base -> origin/gh/xmfan/275/base 2025-08-14T21:43:29.1671585Z * [new branch] gh/xmfan/275/head -> origin/gh/xmfan/275/head 2025-08-14T21:43:29.1672104Z * [new branch] gh/xmfan/275/orig -> origin/gh/xmfan/275/orig 2025-08-14T21:43:29.1672604Z * [new branch] gh/xmfan/276/base -> origin/gh/xmfan/276/base 2025-08-14T21:43:29.1673110Z * [new branch] gh/xmfan/276/head -> origin/gh/xmfan/276/head 2025-08-14T21:43:29.1673626Z * [new branch] gh/xmfan/276/orig -> origin/gh/xmfan/276/orig 2025-08-14T21:43:29.1674127Z * [new branch] gh/xmfan/277/base -> origin/gh/xmfan/277/base 2025-08-14T21:43:29.1674626Z * [new branch] gh/xmfan/277/head -> origin/gh/xmfan/277/head 2025-08-14T21:43:29.1675123Z * [new branch] gh/xmfan/277/orig -> origin/gh/xmfan/277/orig 2025-08-14T21:43:29.1675854Z * [new branch] gh/xuanzhang816/12/base -> origin/gh/xuanzhang816/12/base 2025-08-14T21:43:29.1676420Z * [new branch] gh/xuanzhang816/12/head -> origin/gh/xuanzhang816/12/head 2025-08-14T21:43:29.1676994Z * [new branch] gh/xuanzhang816/12/orig -> origin/gh/xuanzhang816/12/orig 2025-08-14T21:43:29.1677554Z * [new branch] gh/xuanzhang816/14/base -> origin/gh/xuanzhang816/14/base 2025-08-14T21:43:29.1678119Z * [new branch] gh/xuanzhang816/14/head -> origin/gh/xuanzhang816/14/head 2025-08-14T21:43:29.1678675Z * [new branch] gh/xuanzhang816/14/orig -> origin/gh/xuanzhang816/14/orig 2025-08-14T21:43:29.1679223Z * [new branch] gh/xuanzhang816/18/base -> origin/gh/xuanzhang816/18/base 2025-08-14T21:43:29.1679775Z * [new branch] gh/xuanzhang816/18/head -> origin/gh/xuanzhang816/18/head 2025-08-14T21:43:29.1680323Z * [new branch] gh/xuanzhang816/18/orig -> origin/gh/xuanzhang816/18/orig 2025-08-14T21:43:29.1680890Z * [new branch] gh/xuanzhang816/19/base -> origin/gh/xuanzhang816/19/base 2025-08-14T21:43:29.1681444Z * [new branch] gh/xuanzhang816/19/head -> origin/gh/xuanzhang816/19/head 2025-08-14T21:43:29.1681996Z * [new branch] gh/xuanzhang816/19/orig -> origin/gh/xuanzhang816/19/orig 2025-08-14T21:43:29.1682561Z * [new branch] gh/xuanzhang816/20/base -> origin/gh/xuanzhang816/20/base 2025-08-14T21:43:29.1683111Z * [new branch] gh/xuanzhang816/20/head -> origin/gh/xuanzhang816/20/head 2025-08-14T21:43:29.1683672Z * [new branch] gh/xuanzhang816/20/orig -> origin/gh/xuanzhang816/20/orig 2025-08-14T21:43:29.1684229Z * [new branch] gh/xuanzhang816/21/base -> origin/gh/xuanzhang816/21/base 2025-08-14T21:43:29.1684779Z * [new branch] gh/xuanzhang816/21/head -> origin/gh/xuanzhang816/21/head 2025-08-14T21:43:29.1685344Z * [new branch] gh/xuanzhang816/21/orig -> origin/gh/xuanzhang816/21/orig 2025-08-14T21:43:29.1685892Z * [new branch] gh/xuanzhang816/22/base -> origin/gh/xuanzhang816/22/base 2025-08-14T21:43:29.1686449Z * [new branch] gh/xuanzhang816/22/head -> origin/gh/xuanzhang816/22/head 2025-08-14T21:43:29.1686992Z * [new branch] gh/xuanzhang816/22/orig -> origin/gh/xuanzhang816/22/orig 2025-08-14T21:43:29.1687664Z * [new branch] gh/xuanzhang816/23/base -> origin/gh/xuanzhang816/23/base 2025-08-14T21:43:29.1688242Z * [new branch] gh/xuanzhang816/23/head -> origin/gh/xuanzhang816/23/head 2025-08-14T21:43:29.1688791Z * [new branch] gh/xuanzhang816/23/orig -> origin/gh/xuanzhang816/23/orig 2025-08-14T21:43:29.1689354Z * [new branch] gh/xuanzhang816/24/base -> origin/gh/xuanzhang816/24/base 2025-08-14T21:43:29.1689913Z * [new branch] gh/xuanzhang816/24/head -> origin/gh/xuanzhang816/24/head 2025-08-14T21:43:29.1690481Z * [new branch] gh/xuanzhang816/24/orig -> origin/gh/xuanzhang816/24/orig 2025-08-14T21:43:29.1691034Z * [new branch] gh/yanbing-j/11/base -> origin/gh/yanbing-j/11/base 2025-08-14T21:43:29.1691559Z * [new branch] gh/yanbing-j/11/head -> origin/gh/yanbing-j/11/head 2025-08-14T21:43:29.1692090Z * [new branch] gh/yanbing-j/11/orig -> origin/gh/yanbing-j/11/orig 2025-08-14T21:43:29.1692608Z * [new branch] gh/yanbing-j/12/base -> origin/gh/yanbing-j/12/base 2025-08-14T21:43:29.1693137Z * [new branch] gh/yanbing-j/12/head -> origin/gh/yanbing-j/12/head 2025-08-14T21:43:29.1693656Z * [new branch] gh/yanbing-j/12/orig -> origin/gh/yanbing-j/12/orig 2025-08-14T21:43:29.1694170Z * [new branch] gh/yanbing-j/13/base -> origin/gh/yanbing-j/13/base 2025-08-14T21:43:29.1694796Z * [new branch] gh/yanbing-j/13/head -> origin/gh/yanbing-j/13/head 2025-08-14T21:43:29.1695311Z * [new branch] gh/yanbing-j/13/orig -> origin/gh/yanbing-j/13/orig 2025-08-14T21:43:29.1695838Z * [new branch] gh/yanbing-j/14/base -> origin/gh/yanbing-j/14/base 2025-08-14T21:43:29.2186882Z * [new branch] gh/yanbing-j/14/head -> origin/gh/yanbing-j/14/head 2025-08-14T21:43:29.2187514Z * [new branch] gh/yanbing-j/14/orig -> origin/gh/yanbing-j/14/orig 2025-08-14T21:43:29.2188051Z * [new branch] gh/yanbing-j/15/base -> origin/gh/yanbing-j/15/base 2025-08-14T21:43:29.2188593Z * [new branch] gh/yanbing-j/15/head -> origin/gh/yanbing-j/15/head 2025-08-14T21:43:29.2189108Z * [new branch] gh/yanbing-j/15/orig -> origin/gh/yanbing-j/15/orig 2025-08-14T21:43:29.2189635Z * [new branch] gh/yanbing-j/18/base -> origin/gh/yanbing-j/18/base 2025-08-14T21:43:29.2190160Z * [new branch] gh/yanbing-j/18/head -> origin/gh/yanbing-j/18/head 2025-08-14T21:43:29.2190688Z * [new branch] gh/yanbing-j/18/orig -> origin/gh/yanbing-j/18/orig 2025-08-14T21:43:29.2191202Z * [new branch] gh/yanbing-j/19/base -> origin/gh/yanbing-j/19/base 2025-08-14T21:43:29.2191730Z * [new branch] gh/yanbing-j/19/head -> origin/gh/yanbing-j/19/head 2025-08-14T21:43:29.2192363Z * [new branch] gh/yanbing-j/19/orig -> origin/gh/yanbing-j/19/orig 2025-08-14T21:43:29.2192972Z * [new branch] gh/yanbing-j/20/base -> origin/gh/yanbing-j/20/base 2025-08-14T21:43:29.2193496Z * [new branch] gh/yanbing-j/20/head -> origin/gh/yanbing-j/20/head 2025-08-14T21:43:29.2194007Z * [new branch] gh/yanbing-j/20/orig -> origin/gh/yanbing-j/20/orig 2025-08-14T21:43:29.2194532Z * [new branch] gh/yanbing-j/21/base -> origin/gh/yanbing-j/21/base 2025-08-14T21:43:29.2195063Z * [new branch] gh/yanbing-j/21/head -> origin/gh/yanbing-j/21/head 2025-08-14T21:43:29.2195581Z * [new branch] gh/yanbing-j/22/base -> origin/gh/yanbing-j/22/base 2025-08-14T21:43:29.2196104Z * [new branch] gh/yanbing-j/22/head -> origin/gh/yanbing-j/22/head 2025-08-14T21:43:29.2196615Z * [new branch] gh/yanbing-j/22/orig -> origin/gh/yanbing-j/22/orig 2025-08-14T21:43:29.2197313Z * [new branch] gh/yanbing-j/23/base -> origin/gh/yanbing-j/23/base 2025-08-14T21:43:29.2197842Z * [new branch] gh/yanbing-j/23/head -> origin/gh/yanbing-j/23/head 2025-08-14T21:43:29.2198462Z * [new branch] gh/yanbing-j/23/orig -> origin/gh/yanbing-j/23/orig 2025-08-14T21:43:29.2198982Z * [new branch] gh/yanbing-j/24/base -> origin/gh/yanbing-j/24/base 2025-08-14T21:43:29.2199594Z * [new branch] gh/yanbing-j/24/head -> origin/gh/yanbing-j/24/head 2025-08-14T21:43:29.2200112Z * [new branch] gh/yanbing-j/24/orig -> origin/gh/yanbing-j/24/orig 2025-08-14T21:43:29.2200638Z * [new branch] gh/yanbing-j/25/base -> origin/gh/yanbing-j/25/base 2025-08-14T21:43:29.2201144Z * [new branch] gh/yanbing-j/25/head -> origin/gh/yanbing-j/25/head 2025-08-14T21:43:29.2201673Z * [new branch] gh/yanbing-j/25/orig -> origin/gh/yanbing-j/25/orig 2025-08-14T21:43:29.2202184Z * [new branch] gh/yanbing-j/26/base -> origin/gh/yanbing-j/26/base 2025-08-14T21:43:29.2202705Z * [new branch] gh/yanbing-j/26/head -> origin/gh/yanbing-j/26/head 2025-08-14T21:43:29.2203229Z * [new branch] gh/yanbing-j/26/orig -> origin/gh/yanbing-j/26/orig 2025-08-14T21:43:29.2203755Z * [new branch] gh/yanbing-j/36/base -> origin/gh/yanbing-j/36/base 2025-08-14T21:43:29.2204402Z * [new branch] gh/yanbing-j/36/head -> origin/gh/yanbing-j/36/head 2025-08-14T21:43:29.2205013Z * [new branch] gh/yanbing-j/36/orig -> origin/gh/yanbing-j/36/orig 2025-08-14T21:43:29.2205623Z * [new branch] gh/yanbing-j/37/base -> origin/gh/yanbing-j/37/base 2025-08-14T21:43:29.2206139Z * [new branch] gh/yanbing-j/37/head -> origin/gh/yanbing-j/37/head 2025-08-14T21:43:29.2206671Z * [new branch] gh/yanbing-j/37/orig -> origin/gh/yanbing-j/37/orig 2025-08-14T21:43:29.2207192Z * [new branch] gh/yanbing-j/39/base -> origin/gh/yanbing-j/39/base 2025-08-14T21:43:29.2207702Z * [new branch] gh/yanbing-j/39/head -> origin/gh/yanbing-j/39/head 2025-08-14T21:43:29.2208223Z * [new branch] gh/yanbing-j/39/orig -> origin/gh/yanbing-j/39/orig 2025-08-14T21:43:29.2208747Z * [new branch] gh/yangw-dev/1/base -> origin/gh/yangw-dev/1/base 2025-08-14T21:43:29.2209273Z * [new branch] gh/yangw-dev/10/base -> origin/gh/yangw-dev/10/base 2025-08-14T21:43:29.2209798Z * [new branch] gh/yangw-dev/10/head -> origin/gh/yangw-dev/10/head 2025-08-14T21:43:29.2210314Z * [new branch] gh/yangw-dev/10/orig -> origin/gh/yangw-dev/10/orig 2025-08-14T21:43:29.2210839Z * [new branch] gh/yangw-dev/11/base -> origin/gh/yangw-dev/11/base 2025-08-14T21:43:29.2211460Z * [new branch] gh/yangw-dev/11/head -> origin/gh/yangw-dev/11/head 2025-08-14T21:43:29.2212078Z * [new branch] gh/yangw-dev/11/orig -> origin/gh/yangw-dev/11/orig 2025-08-14T21:43:29.2710715Z * [new branch] gh/yangw-dev/12/base -> origin/gh/yangw-dev/12/base 2025-08-14T21:43:29.2711395Z * [new branch] gh/yangw-dev/12/head -> origin/gh/yangw-dev/12/head 2025-08-14T21:43:29.2712057Z * [new branch] gh/yangw-dev/12/orig -> origin/gh/yangw-dev/12/orig 2025-08-14T21:43:29.2712578Z * [new branch] gh/yangw-dev/13/base -> origin/gh/yangw-dev/13/base 2025-08-14T21:43:29.2713102Z * [new branch] gh/yangw-dev/13/head -> origin/gh/yangw-dev/13/head 2025-08-14T21:43:29.2713624Z * [new branch] gh/yangw-dev/13/orig -> origin/gh/yangw-dev/13/orig 2025-08-14T21:43:29.2714137Z * [new branch] gh/yangw-dev/14/base -> origin/gh/yangw-dev/14/base 2025-08-14T21:43:29.2714832Z * [new branch] gh/yangw-dev/14/head -> origin/gh/yangw-dev/14/head 2025-08-14T21:43:29.2715352Z * [new branch] gh/yangw-dev/14/orig -> origin/gh/yangw-dev/14/orig 2025-08-14T21:43:29.2715876Z * [new branch] gh/yangw-dev/15/base -> origin/gh/yangw-dev/15/base 2025-08-14T21:43:29.2716392Z * [new branch] gh/yangw-dev/15/head -> origin/gh/yangw-dev/15/head 2025-08-14T21:43:29.2716925Z * [new branch] gh/yangw-dev/15/orig -> origin/gh/yangw-dev/15/orig 2025-08-14T21:43:29.2717537Z * [new branch] gh/yangw-dev/16/base -> origin/gh/yangw-dev/16/base 2025-08-14T21:43:29.2718068Z * [new branch] gh/yangw-dev/16/head -> origin/gh/yangw-dev/16/head 2025-08-14T21:43:29.2718686Z * [new branch] gh/yangw-dev/16/orig -> origin/gh/yangw-dev/16/orig 2025-08-14T21:43:29.2719215Z * [new branch] gh/yangw-dev/17/base -> origin/gh/yangw-dev/17/base 2025-08-14T21:43:29.2719732Z * [new branch] gh/yangw-dev/17/head -> origin/gh/yangw-dev/17/head 2025-08-14T21:43:29.2720246Z * [new branch] gh/yangw-dev/17/orig -> origin/gh/yangw-dev/17/orig 2025-08-14T21:43:29.2720767Z * [new branch] gh/yangw-dev/18/base -> origin/gh/yangw-dev/18/base 2025-08-14T21:43:29.2721288Z * [new branch] gh/yangw-dev/18/head -> origin/gh/yangw-dev/18/head 2025-08-14T21:43:29.2721931Z * [new branch] gh/yangw-dev/18/orig -> origin/gh/yangw-dev/18/orig 2025-08-14T21:43:29.2722444Z * [new branch] gh/yangw-dev/19/base -> origin/gh/yangw-dev/19/base 2025-08-14T21:43:29.2722977Z * [new branch] gh/yangw-dev/19/head -> origin/gh/yangw-dev/19/head 2025-08-14T21:43:29.2723486Z * [new branch] gh/yangw-dev/19/orig -> origin/gh/yangw-dev/19/orig 2025-08-14T21:43:29.2724114Z * [new branch] gh/yangw-dev/2/base -> origin/gh/yangw-dev/2/base 2025-08-14T21:43:29.2724647Z * [new branch] gh/yangw-dev/2/head -> origin/gh/yangw-dev/2/head 2025-08-14T21:43:29.2725251Z * [new branch] gh/yangw-dev/3/base -> origin/gh/yangw-dev/3/base 2025-08-14T21:43:29.2725771Z * [new branch] gh/yangw-dev/3/head -> origin/gh/yangw-dev/3/head 2025-08-14T21:43:29.2726289Z * [new branch] gh/yangw-dev/4/base -> origin/gh/yangw-dev/4/base 2025-08-14T21:43:29.2726803Z * [new branch] gh/yangw-dev/4/head -> origin/gh/yangw-dev/4/head 2025-08-14T21:43:29.2727315Z * [new branch] gh/yangw-dev/5/base -> origin/gh/yangw-dev/5/base 2025-08-14T21:43:29.2727829Z * [new branch] gh/yangw-dev/5/head -> origin/gh/yangw-dev/5/head 2025-08-14T21:43:29.2728351Z * [new branch] gh/yangw-dev/6/base -> origin/gh/yangw-dev/6/base 2025-08-14T21:43:29.2728865Z * [new branch] gh/yangw-dev/6/head -> origin/gh/yangw-dev/6/head 2025-08-14T21:43:29.2729386Z * [new branch] gh/yangw-dev/7/base -> origin/gh/yangw-dev/7/base 2025-08-14T21:43:29.2729889Z * [new branch] gh/yangw-dev/7/head -> origin/gh/yangw-dev/7/head 2025-08-14T21:43:29.2730501Z * [new branch] gh/yangw-dev/8/base -> origin/gh/yangw-dev/8/base 2025-08-14T21:43:29.2731072Z * [new branch] gh/yangw-dev/8/head -> origin/gh/yangw-dev/8/head 2025-08-14T21:43:29.2731626Z * [new branch] gh/yangw-dev/8/orig -> origin/gh/yangw-dev/8/orig 2025-08-14T21:43:29.2732149Z * [new branch] gh/yangw-dev/9/base -> origin/gh/yangw-dev/9/base 2025-08-14T21:43:29.2732665Z * [new branch] gh/yangw-dev/9/head -> origin/gh/yangw-dev/9/head 2025-08-14T21:43:29.2733284Z * [new branch] gh/yangw-dev/9/orig -> origin/gh/yangw-dev/9/orig 2025-08-14T21:43:29.2733814Z * [new branch] gh/ydwu4/233/base -> origin/gh/ydwu4/233/base 2025-08-14T21:43:29.2734311Z * [new branch] gh/ydwu4/233/head -> origin/gh/ydwu4/233/head 2025-08-14T21:43:29.2734810Z * [new branch] gh/ydwu4/233/orig -> origin/gh/ydwu4/233/orig 2025-08-14T21:43:29.2735301Z * [new branch] gh/ydwu4/246/base -> origin/gh/ydwu4/246/base 2025-08-14T21:43:29.2735809Z * [new branch] gh/ydwu4/246/head -> origin/gh/ydwu4/246/head 2025-08-14T21:43:29.3236796Z * [new branch] gh/ydwu4/246/orig -> origin/gh/ydwu4/246/orig 2025-08-14T21:43:29.3237372Z * [new branch] gh/ydwu4/253/base -> origin/gh/ydwu4/253/base 2025-08-14T21:43:29.3237895Z * [new branch] gh/ydwu4/253/head -> origin/gh/ydwu4/253/head 2025-08-14T21:43:29.3238414Z * [new branch] gh/ydwu4/253/orig -> origin/gh/ydwu4/253/orig 2025-08-14T21:43:29.3238913Z * [new branch] gh/ydwu4/255/base -> origin/gh/ydwu4/255/base 2025-08-14T21:43:29.3239415Z * [new branch] gh/ydwu4/255/head -> origin/gh/ydwu4/255/head 2025-08-14T21:43:29.3239907Z * [new branch] gh/ydwu4/255/orig -> origin/gh/ydwu4/255/orig 2025-08-14T21:43:29.3240399Z * [new branch] gh/ydwu4/259/base -> origin/gh/ydwu4/259/base 2025-08-14T21:43:29.3242752Z * [new branch] gh/ydwu4/259/head -> origin/gh/ydwu4/259/head 2025-08-14T21:43:29.3243260Z * [new branch] gh/ydwu4/259/orig -> origin/gh/ydwu4/259/orig 2025-08-14T21:43:29.3243765Z * [new branch] gh/ydwu4/262/base -> origin/gh/ydwu4/262/base 2025-08-14T21:43:29.3244255Z * [new branch] gh/ydwu4/262/head -> origin/gh/ydwu4/262/head 2025-08-14T21:43:29.3244766Z * [new branch] gh/ydwu4/262/orig -> origin/gh/ydwu4/262/orig 2025-08-14T21:43:29.3245254Z * [new branch] gh/ydwu4/263/base -> origin/gh/ydwu4/263/base 2025-08-14T21:43:29.3245753Z * [new branch] gh/ydwu4/263/head -> origin/gh/ydwu4/263/head 2025-08-14T21:43:29.3246247Z * [new branch] gh/ydwu4/263/orig -> origin/gh/ydwu4/263/orig 2025-08-14T21:43:29.3246741Z * [new branch] gh/ydwu4/269/base -> origin/gh/ydwu4/269/base 2025-08-14T21:43:29.3248862Z * [new branch] gh/ydwu4/269/head -> origin/gh/ydwu4/269/head 2025-08-14T21:43:29.3249348Z * [new branch] gh/ydwu4/269/orig -> origin/gh/ydwu4/269/orig 2025-08-14T21:43:29.3249840Z * [new branch] gh/ydwu4/270/base -> origin/gh/ydwu4/270/base 2025-08-14T21:43:29.3250326Z * [new branch] gh/ydwu4/270/head -> origin/gh/ydwu4/270/head 2025-08-14T21:43:29.3250824Z * [new branch] gh/ydwu4/270/orig -> origin/gh/ydwu4/270/orig 2025-08-14T21:43:29.3251314Z * [new branch] gh/ydwu4/272/base -> origin/gh/ydwu4/272/base 2025-08-14T21:43:29.3251799Z * [new branch] gh/ydwu4/272/head -> origin/gh/ydwu4/272/head 2025-08-14T21:43:29.3252294Z * [new branch] gh/ydwu4/272/orig -> origin/gh/ydwu4/272/orig 2025-08-14T21:43:29.3252788Z * [new branch] gh/ydwu4/275/base -> origin/gh/ydwu4/275/base 2025-08-14T21:43:29.3254876Z * [new branch] gh/ydwu4/275/head -> origin/gh/ydwu4/275/head 2025-08-14T21:43:29.3255381Z * [new branch] gh/ydwu4/275/orig -> origin/gh/ydwu4/275/orig 2025-08-14T21:43:29.3255870Z * [new branch] gh/ydwu4/276/base -> origin/gh/ydwu4/276/base 2025-08-14T21:43:29.3256369Z * [new branch] gh/ydwu4/276/head -> origin/gh/ydwu4/276/head 2025-08-14T21:43:29.3257002Z * [new branch] gh/ydwu4/276/orig -> origin/gh/ydwu4/276/orig 2025-08-14T21:43:29.3257510Z * [new branch] gh/ydwu4/277/base -> origin/gh/ydwu4/277/base 2025-08-14T21:43:29.3257992Z * [new branch] gh/ydwu4/277/head -> origin/gh/ydwu4/277/head 2025-08-14T21:43:29.3258503Z * [new branch] gh/ydwu4/277/orig -> origin/gh/ydwu4/277/orig 2025-08-14T21:43:29.3259008Z * [new branch] gh/ydwu4/278/base -> origin/gh/ydwu4/278/base 2025-08-14T21:43:29.3260510Z * [new branch] gh/ydwu4/278/head -> origin/gh/ydwu4/278/head 2025-08-14T21:43:29.3261676Z * [new branch] gh/ydwu4/278/orig -> origin/gh/ydwu4/278/orig 2025-08-14T21:43:29.3262182Z * [new branch] gh/ydwu4/279/base -> origin/gh/ydwu4/279/base 2025-08-14T21:43:29.3262679Z * [new branch] gh/ydwu4/279/head -> origin/gh/ydwu4/279/head 2025-08-14T21:43:29.3263181Z * [new branch] gh/ydwu4/279/orig -> origin/gh/ydwu4/279/orig 2025-08-14T21:43:29.3263671Z * [new branch] gh/ydwu4/280/base -> origin/gh/ydwu4/280/base 2025-08-14T21:43:29.3264170Z * [new branch] gh/ydwu4/280/head -> origin/gh/ydwu4/280/head 2025-08-14T21:43:29.3264664Z * [new branch] gh/ydwu4/280/orig -> origin/gh/ydwu4/280/orig 2025-08-14T21:43:29.3265293Z * [new branch] gh/ydwu4/281/base -> origin/gh/ydwu4/281/base 2025-08-14T21:43:29.3266890Z * [new branch] gh/ydwu4/281/head -> origin/gh/ydwu4/281/head 2025-08-14T21:43:29.3267971Z * [new branch] gh/ydwu4/281/orig -> origin/gh/ydwu4/281/orig 2025-08-14T21:43:29.3268466Z * [new branch] gh/ydwu4/282/base -> origin/gh/ydwu4/282/base 2025-08-14T21:43:29.3268958Z * [new branch] gh/ydwu4/282/head -> origin/gh/ydwu4/282/head 2025-08-14T21:43:29.3728659Z * [new branch] gh/ydwu4/282/orig -> origin/gh/ydwu4/282/orig 2025-08-14T21:43:29.3729243Z * [new branch] gh/ydwu4/283/base -> origin/gh/ydwu4/283/base 2025-08-14T21:43:29.3729740Z * [new branch] gh/ydwu4/283/head -> origin/gh/ydwu4/283/head 2025-08-14T21:43:29.3730248Z * [new branch] gh/ydwu4/283/orig -> origin/gh/ydwu4/283/orig 2025-08-14T21:43:29.3730751Z * [new branch] gh/ydwu4/284/base -> origin/gh/ydwu4/284/base 2025-08-14T21:43:29.3731249Z * [new branch] gh/ydwu4/284/head -> origin/gh/ydwu4/284/head 2025-08-14T21:43:29.3731746Z * [new branch] gh/ydwu4/284/orig -> origin/gh/ydwu4/284/orig 2025-08-14T21:43:29.3732232Z * [new branch] gh/ydwu4/285/base -> origin/gh/ydwu4/285/base 2025-08-14T21:43:29.3732728Z * [new branch] gh/ydwu4/285/head -> origin/gh/ydwu4/285/head 2025-08-14T21:43:29.3733225Z * [new branch] gh/ydwu4/285/orig -> origin/gh/ydwu4/285/orig 2025-08-14T21:43:29.3733733Z * [new branch] gh/ydwu4/286/base -> origin/gh/ydwu4/286/base 2025-08-14T21:43:29.3734232Z * [new branch] gh/ydwu4/286/head -> origin/gh/ydwu4/286/head 2025-08-14T21:43:29.3734720Z * [new branch] gh/ydwu4/286/orig -> origin/gh/ydwu4/286/orig 2025-08-14T21:43:29.3735226Z * [new branch] gh/ydwu4/287/base -> origin/gh/ydwu4/287/base 2025-08-14T21:43:29.3735712Z * [new branch] gh/ydwu4/287/head -> origin/gh/ydwu4/287/head 2025-08-14T21:43:29.3736208Z * [new branch] gh/ydwu4/287/orig -> origin/gh/ydwu4/287/orig 2025-08-14T21:43:29.3736690Z * [new branch] gh/ydwu4/288/base -> origin/gh/ydwu4/288/base 2025-08-14T21:43:29.3737181Z * [new branch] gh/ydwu4/288/head -> origin/gh/ydwu4/288/head 2025-08-14T21:43:29.3737861Z * [new branch] gh/ydwu4/288/orig -> origin/gh/ydwu4/288/orig 2025-08-14T21:43:29.3738363Z * [new branch] gh/ydwu4/289/base -> origin/gh/ydwu4/289/base 2025-08-14T21:43:29.3738864Z * [new branch] gh/ydwu4/289/head -> origin/gh/ydwu4/289/head 2025-08-14T21:43:29.3739362Z * [new branch] gh/ydwu4/289/orig -> origin/gh/ydwu4/289/orig 2025-08-14T21:43:29.3739953Z * [new branch] gh/ydwu4/290/base -> origin/gh/ydwu4/290/base 2025-08-14T21:43:29.3740451Z * [new branch] gh/ydwu4/290/head -> origin/gh/ydwu4/290/head 2025-08-14T21:43:29.3740941Z * [new branch] gh/ydwu4/290/orig -> origin/gh/ydwu4/290/orig 2025-08-14T21:43:29.3741442Z * [new branch] gh/ydwu4/291/base -> origin/gh/ydwu4/291/base 2025-08-14T21:43:29.3741937Z * [new branch] gh/ydwu4/291/head -> origin/gh/ydwu4/291/head 2025-08-14T21:43:29.3742444Z * [new branch] gh/ydwu4/291/orig -> origin/gh/ydwu4/291/orig 2025-08-14T21:43:29.3742941Z * [new branch] gh/ydwu4/292/base -> origin/gh/ydwu4/292/base 2025-08-14T21:43:29.3743433Z * [new branch] gh/ydwu4/292/head -> origin/gh/ydwu4/292/head 2025-08-14T21:43:29.3743932Z * [new branch] gh/ydwu4/292/orig -> origin/gh/ydwu4/292/orig 2025-08-14T21:43:29.3744542Z * [new branch] gh/ydwu4/293/base -> origin/gh/ydwu4/293/base 2025-08-14T21:43:29.3745046Z * [new branch] gh/ydwu4/293/head -> origin/gh/ydwu4/293/head 2025-08-14T21:43:29.3745532Z * [new branch] gh/ydwu4/293/orig -> origin/gh/ydwu4/293/orig 2025-08-14T21:43:29.3746033Z * [new branch] gh/ydwu4/294/base -> origin/gh/ydwu4/294/base 2025-08-14T21:43:29.3746541Z * [new branch] gh/ydwu4/294/head -> origin/gh/ydwu4/294/head 2025-08-14T21:43:29.3747030Z * [new branch] gh/ydwu4/294/orig -> origin/gh/ydwu4/294/orig 2025-08-14T21:43:29.3747537Z * [new branch] gh/ydwu4/295/base -> origin/gh/ydwu4/295/base 2025-08-14T21:43:29.3748024Z * [new branch] gh/ydwu4/295/head -> origin/gh/ydwu4/295/head 2025-08-14T21:43:29.3748520Z * [new branch] gh/ydwu4/295/orig -> origin/gh/ydwu4/295/orig 2025-08-14T21:43:29.3749016Z * [new branch] gh/ydwu4/296/base -> origin/gh/ydwu4/296/base 2025-08-14T21:43:29.3749505Z * [new branch] gh/ydwu4/296/head -> origin/gh/ydwu4/296/head 2025-08-14T21:43:29.3750007Z * [new branch] gh/ydwu4/296/orig -> origin/gh/ydwu4/296/orig 2025-08-14T21:43:29.3750492Z * [new branch] gh/ydwu4/297/base -> origin/gh/ydwu4/297/base 2025-08-14T21:43:29.3750992Z * [new branch] gh/ydwu4/297/head -> origin/gh/ydwu4/297/head 2025-08-14T21:43:29.3751488Z * [new branch] gh/ydwu4/297/orig -> origin/gh/ydwu4/297/orig 2025-08-14T21:43:29.3751971Z * [new branch] gh/ydwu4/298/base -> origin/gh/ydwu4/298/base 2025-08-14T21:43:29.3752465Z * [new branch] gh/ydwu4/298/head -> origin/gh/ydwu4/298/head 2025-08-14T21:43:29.4249824Z * [new branch] gh/ydwu4/298/orig -> origin/gh/ydwu4/298/orig 2025-08-14T21:43:29.4250412Z * [new branch] gh/ydwu4/299/base -> origin/gh/ydwu4/299/base 2025-08-14T21:43:29.4250913Z * [new branch] gh/ydwu4/299/head -> origin/gh/ydwu4/299/head 2025-08-14T21:43:29.4251435Z * [new branch] gh/ydwu4/299/orig -> origin/gh/ydwu4/299/orig 2025-08-14T21:43:29.4251928Z * [new branch] gh/ydwu4/300/base -> origin/gh/ydwu4/300/base 2025-08-14T21:43:29.4252627Z * [new branch] gh/ydwu4/300/head -> origin/gh/ydwu4/300/head 2025-08-14T21:43:29.4253126Z * [new branch] gh/ydwu4/300/orig -> origin/gh/ydwu4/300/orig 2025-08-14T21:43:29.4253619Z * [new branch] gh/ydwu4/301/base -> origin/gh/ydwu4/301/base 2025-08-14T21:43:29.4254118Z * [new branch] gh/ydwu4/301/head -> origin/gh/ydwu4/301/head 2025-08-14T21:43:29.4254603Z * [new branch] gh/ydwu4/301/orig -> origin/gh/ydwu4/301/orig 2025-08-14T21:43:29.4255118Z * [new branch] gh/ydwu4/302/base -> origin/gh/ydwu4/302/base 2025-08-14T21:43:29.4255606Z * [new branch] gh/ydwu4/302/head -> origin/gh/ydwu4/302/head 2025-08-14T21:43:29.4256103Z * [new branch] gh/ydwu4/302/orig -> origin/gh/ydwu4/302/orig 2025-08-14T21:43:29.4256607Z * [new branch] gh/ydwu4/303/base -> origin/gh/ydwu4/303/base 2025-08-14T21:43:29.4257090Z * [new branch] gh/ydwu4/303/head -> origin/gh/ydwu4/303/head 2025-08-14T21:43:29.4257585Z * [new branch] gh/ydwu4/303/orig -> origin/gh/ydwu4/303/orig 2025-08-14T21:43:29.4258085Z * [new branch] gh/ydwu4/304/base -> origin/gh/ydwu4/304/base 2025-08-14T21:43:29.4258570Z * [new branch] gh/ydwu4/304/head -> origin/gh/ydwu4/304/head 2025-08-14T21:43:29.4259069Z * [new branch] gh/ydwu4/304/orig -> origin/gh/ydwu4/304/orig 2025-08-14T21:43:29.4259763Z * [new branch] gh/ydwu4/305/base -> origin/gh/ydwu4/305/base 2025-08-14T21:43:29.4260262Z * [new branch] gh/ydwu4/305/head -> origin/gh/ydwu4/305/head 2025-08-14T21:43:29.4260768Z * [new branch] gh/ydwu4/305/orig -> origin/gh/ydwu4/305/orig 2025-08-14T21:43:29.4267971Z * [new branch] gh/ydwu4/306/base -> origin/gh/ydwu4/306/base 2025-08-14T21:43:29.4268639Z * [new branch] gh/ydwu4/306/head -> origin/gh/ydwu4/306/head 2025-08-14T21:43:29.4269143Z * [new branch] gh/ydwu4/306/orig -> origin/gh/ydwu4/306/orig 2025-08-14T21:43:29.4269648Z * [new branch] gh/ydwu4/307/base -> origin/gh/ydwu4/307/base 2025-08-14T21:43:29.4270147Z * [new branch] gh/ydwu4/307/head -> origin/gh/ydwu4/307/head 2025-08-14T21:43:29.4270767Z * [new branch] gh/ydwu4/307/orig -> origin/gh/ydwu4/307/orig 2025-08-14T21:43:29.4271361Z * [new branch] gh/ydwu4/308/base -> origin/gh/ydwu4/308/base 2025-08-14T21:43:29.4271865Z * [new branch] gh/ydwu4/308/head -> origin/gh/ydwu4/308/head 2025-08-14T21:43:29.4272368Z * [new branch] gh/ydwu4/308/orig -> origin/gh/ydwu4/308/orig 2025-08-14T21:43:29.4272868Z * [new branch] gh/ydwu4/309/base -> origin/gh/ydwu4/309/base 2025-08-14T21:43:29.4273371Z * [new branch] gh/ydwu4/309/head -> origin/gh/ydwu4/309/head 2025-08-14T21:43:29.4273884Z * [new branch] gh/ydwu4/309/orig -> origin/gh/ydwu4/309/orig 2025-08-14T21:43:29.4274375Z * [new branch] gh/ydwu4/310/base -> origin/gh/ydwu4/310/base 2025-08-14T21:43:29.4274868Z * [new branch] gh/ydwu4/310/head -> origin/gh/ydwu4/310/head 2025-08-14T21:43:29.4275364Z * [new branch] gh/ydwu4/310/orig -> origin/gh/ydwu4/310/orig 2025-08-14T21:43:29.4275866Z * [new branch] gh/ydwu4/311/base -> origin/gh/ydwu4/311/base 2025-08-14T21:43:29.4276368Z * [new branch] gh/ydwu4/311/head -> origin/gh/ydwu4/311/head 2025-08-14T21:43:29.4276909Z * [new branch] gh/ydwu4/311/orig -> origin/gh/ydwu4/311/orig 2025-08-14T21:43:29.4277463Z * [new branch] gh/yf225/133/base -> origin/gh/yf225/133/base 2025-08-14T21:43:29.4278217Z * [new branch] gh/yf225/133/head -> origin/gh/yf225/133/head 2025-08-14T21:43:29.4278732Z * [new branch] gh/yf225/171/base -> origin/gh/yf225/171/base 2025-08-14T21:43:29.4279250Z * [new branch] gh/yf225/171/head -> origin/gh/yf225/171/head 2025-08-14T21:43:29.4279741Z * [new branch] gh/yf225/171/orig -> origin/gh/yf225/171/orig 2025-08-14T21:43:29.4280251Z * [new branch] gh/yf225/172/base -> origin/gh/yf225/172/base 2025-08-14T21:43:29.4280738Z * [new branch] gh/yf225/172/head -> origin/gh/yf225/172/head 2025-08-14T21:43:29.4281227Z * [new branch] gh/yf225/172/orig -> origin/gh/yf225/172/orig 2025-08-14T21:43:29.4781142Z * [new branch] gh/yf225/93/base -> origin/gh/yf225/93/base 2025-08-14T21:43:29.4781678Z * [new branch] gh/yf225/93/head -> origin/gh/yf225/93/head 2025-08-14T21:43:29.4782314Z * [new branch] gh/yifuwang/152/base -> origin/gh/yifuwang/152/base 2025-08-14T21:43:29.4782851Z * [new branch] gh/yifuwang/152/head -> origin/gh/yifuwang/152/head 2025-08-14T21:43:29.4783489Z * [new branch] gh/yifuwang/152/orig -> origin/gh/yifuwang/152/orig 2025-08-14T21:43:29.4784027Z * [new branch] gh/yifuwang/195/base -> origin/gh/yifuwang/195/base 2025-08-14T21:43:29.4784733Z * [new branch] gh/yifuwang/195/head -> origin/gh/yifuwang/195/head 2025-08-14T21:43:29.4785263Z * [new branch] gh/yifuwang/195/orig -> origin/gh/yifuwang/195/orig 2025-08-14T21:43:29.4785792Z * [new branch] gh/yiming0416/1/base -> origin/gh/yiming0416/1/base 2025-08-14T21:43:29.4786323Z * [new branch] gh/yiming0416/1/head -> origin/gh/yiming0416/1/head 2025-08-14T21:43:29.4786854Z * [new branch] gh/yiming0416/2/base -> origin/gh/yiming0416/2/base 2025-08-14T21:43:29.4787385Z * [new branch] gh/yiming0416/2/head -> origin/gh/yiming0416/2/head 2025-08-14T21:43:29.4787920Z * [new branch] gh/ysiraichi/79/base -> origin/gh/ysiraichi/79/base 2025-08-14T21:43:29.4788445Z * [new branch] gh/ysiraichi/79/head -> origin/gh/ysiraichi/79/head 2025-08-14T21:43:29.4789076Z * [new branch] gh/ysiraichi/79/orig -> origin/gh/ysiraichi/79/orig 2025-08-14T21:43:29.4789691Z * [new branch] gh/ysiraichi/81/base -> origin/gh/ysiraichi/81/base 2025-08-14T21:43:29.4790234Z * [new branch] gh/ysiraichi/81/head -> origin/gh/ysiraichi/81/head 2025-08-14T21:43:29.4790764Z * [new branch] gh/ysiraichi/81/orig -> origin/gh/ysiraichi/81/orig 2025-08-14T21:43:29.4791289Z * [new branch] gh/ysiraichi/84/base -> origin/gh/ysiraichi/84/base 2025-08-14T21:43:29.4791836Z * [new branch] gh/ysiraichi/84/head -> origin/gh/ysiraichi/84/head 2025-08-14T21:43:29.4792354Z * [new branch] gh/ysiraichi/84/orig -> origin/gh/ysiraichi/84/orig 2025-08-14T21:43:29.4792878Z * [new branch] gh/ysiraichi/85/base -> origin/gh/ysiraichi/85/base 2025-08-14T21:43:29.4793415Z * [new branch] gh/ysiraichi/85/head -> origin/gh/ysiraichi/85/head 2025-08-14T21:43:29.4793942Z * [new branch] gh/ysiraichi/85/orig -> origin/gh/ysiraichi/85/orig 2025-08-14T21:43:29.4794475Z * [new branch] gh/ysiraichi/86/base -> origin/gh/ysiraichi/86/base 2025-08-14T21:43:29.4795003Z * [new branch] gh/ysiraichi/86/head -> origin/gh/ysiraichi/86/head 2025-08-14T21:43:29.4795633Z * [new branch] gh/ysiraichi/86/orig -> origin/gh/ysiraichi/86/orig 2025-08-14T21:43:29.4796250Z * [new branch] gh/ysiraichi/87/base -> origin/gh/ysiraichi/87/base 2025-08-14T21:43:29.4796892Z * [new branch] gh/ysiraichi/87/head -> origin/gh/ysiraichi/87/head 2025-08-14T21:43:29.4797434Z * [new branch] gh/ysiraichi/87/orig -> origin/gh/ysiraichi/87/orig 2025-08-14T21:43:29.4797978Z * [new branch] gh/ysiraichi/88/base -> origin/gh/ysiraichi/88/base 2025-08-14T21:43:29.4798510Z * [new branch] gh/ysiraichi/88/head -> origin/gh/ysiraichi/88/head 2025-08-14T21:43:29.4799058Z * [new branch] gh/ysiraichi/88/orig -> origin/gh/ysiraichi/88/orig 2025-08-14T21:43:29.4799575Z * [new branch] gh/yuguo68/1/base -> origin/gh/yuguo68/1/base 2025-08-14T21:43:29.4800089Z * [new branch] gh/yuguo68/1/head -> origin/gh/yuguo68/1/head 2025-08-14T21:43:29.4800583Z * [new branch] gh/yuguo68/1/orig -> origin/gh/yuguo68/1/orig 2025-08-14T21:43:29.4801100Z * [new branch] gh/yuguo68/2/base -> origin/gh/yuguo68/2/base 2025-08-14T21:43:29.4801608Z * [new branch] gh/yuguo68/2/head -> origin/gh/yuguo68/2/head 2025-08-14T21:43:29.4802203Z * [new branch] gh/yuguo68/2/orig -> origin/gh/yuguo68/2/orig 2025-08-14T21:43:29.4802815Z * [new branch] gh/zhxchen17/25/base -> origin/gh/zhxchen17/25/base 2025-08-14T21:43:29.4803350Z * [new branch] gh/zhxchen17/25/head -> origin/gh/zhxchen17/25/head 2025-08-14T21:43:29.4803999Z * [new branch] gh/zhxchen17/25/orig -> origin/gh/zhxchen17/25/orig 2025-08-14T21:43:29.4804528Z * [new branch] gh/zhxchen17/31/base -> origin/gh/zhxchen17/31/base 2025-08-14T21:43:29.4805067Z * [new branch] gh/zhxchen17/31/head -> origin/gh/zhxchen17/31/head 2025-08-14T21:43:29.4805608Z * [new branch] gh/zhxchen17/31/orig -> origin/gh/zhxchen17/31/orig 2025-08-14T21:43:29.4806137Z * [new branch] gh/zhxchen17/33/base -> origin/gh/zhxchen17/33/base 2025-08-14T21:43:29.4806669Z * [new branch] gh/zhxchen17/33/head -> origin/gh/zhxchen17/33/head 2025-08-14T21:43:29.5304921Z * [new branch] gh/zhxchen17/33/orig -> origin/gh/zhxchen17/33/orig 2025-08-14T21:43:29.5305494Z * [new branch] gh/zhxchen17/34/base -> origin/gh/zhxchen17/34/base 2025-08-14T21:43:29.5306034Z * [new branch] gh/zhxchen17/34/head -> origin/gh/zhxchen17/34/head 2025-08-14T21:43:29.5306569Z * [new branch] gh/zhxchen17/35/base -> origin/gh/zhxchen17/35/base 2025-08-14T21:43:29.5307090Z * [new branch] gh/zhxchen17/35/head -> origin/gh/zhxchen17/35/head 2025-08-14T21:43:29.5307608Z * [new branch] gh/zhxchen17/36/base -> origin/gh/zhxchen17/36/base 2025-08-14T21:43:29.5308131Z * [new branch] gh/zhxchen17/36/head -> origin/gh/zhxchen17/36/head 2025-08-14T21:43:29.5308664Z * [new branch] gh/zhxchen17/36/orig -> origin/gh/zhxchen17/36/orig 2025-08-14T21:43:29.5309180Z * [new branch] gh/zklaus/1/base -> origin/gh/zklaus/1/base 2025-08-14T21:43:29.5309687Z * [new branch] gh/zklaus/1/head -> origin/gh/zklaus/1/head 2025-08-14T21:43:29.5310176Z * [new branch] gh/zklaus/1/orig -> origin/gh/zklaus/1/orig 2025-08-14T21:43:29.5310682Z * [new branch] gh/zklaus/10/base -> origin/gh/zklaus/10/base 2025-08-14T21:43:29.5311204Z * [new branch] gh/zklaus/10/head -> origin/gh/zklaus/10/head 2025-08-14T21:43:29.5311699Z * [new branch] gh/zklaus/10/orig -> origin/gh/zklaus/10/orig 2025-08-14T21:43:29.5312201Z * [new branch] gh/zklaus/11/base -> origin/gh/zklaus/11/base 2025-08-14T21:43:29.5312696Z * [new branch] gh/zklaus/11/head -> origin/gh/zklaus/11/head 2025-08-14T21:43:29.5313392Z * [new branch] gh/zklaus/11/orig -> origin/gh/zklaus/11/orig 2025-08-14T21:43:29.5313900Z * [new branch] gh/zklaus/12/base -> origin/gh/zklaus/12/base 2025-08-14T21:43:29.5314400Z * [new branch] gh/zklaus/12/head -> origin/gh/zklaus/12/head 2025-08-14T21:43:29.5314907Z * [new branch] gh/zklaus/12/orig -> origin/gh/zklaus/12/orig 2025-08-14T21:43:29.5315406Z * [new branch] gh/zklaus/14/base -> origin/gh/zklaus/14/base 2025-08-14T21:43:29.5315908Z * [new branch] gh/zklaus/14/head -> origin/gh/zklaus/14/head 2025-08-14T21:43:29.5316421Z * [new branch] gh/zklaus/14/orig -> origin/gh/zklaus/14/orig 2025-08-14T21:43:29.5316911Z * [new branch] gh/zklaus/15/base -> origin/gh/zklaus/15/base 2025-08-14T21:43:29.5317415Z * [new branch] gh/zklaus/15/head -> origin/gh/zklaus/15/head 2025-08-14T21:43:29.5317909Z * [new branch] gh/zklaus/15/orig -> origin/gh/zklaus/15/orig 2025-08-14T21:43:29.5318413Z * [new branch] gh/zklaus/16/base -> origin/gh/zklaus/16/base 2025-08-14T21:43:29.5318912Z * [new branch] gh/zklaus/16/head -> origin/gh/zklaus/16/head 2025-08-14T21:43:29.5319407Z * [new branch] gh/zklaus/16/orig -> origin/gh/zklaus/16/orig 2025-08-14T21:43:29.5320010Z * [new branch] gh/zklaus/17/base -> origin/gh/zklaus/17/base 2025-08-14T21:43:29.5320509Z * [new branch] gh/zklaus/17/head -> origin/gh/zklaus/17/head 2025-08-14T21:43:29.5321018Z * [new branch] gh/zklaus/17/orig -> origin/gh/zklaus/17/orig 2025-08-14T21:43:29.5321518Z * [new branch] gh/zklaus/18/base -> origin/gh/zklaus/18/base 2025-08-14T21:43:29.5322023Z * [new branch] gh/zklaus/18/head -> origin/gh/zklaus/18/head 2025-08-14T21:43:29.5322542Z * [new branch] gh/zklaus/18/orig -> origin/gh/zklaus/18/orig 2025-08-14T21:43:29.5323037Z * [new branch] gh/zklaus/19/base -> origin/gh/zklaus/19/base 2025-08-14T21:43:29.5323549Z * [new branch] gh/zklaus/19/head -> origin/gh/zklaus/19/head 2025-08-14T21:43:29.5324044Z * [new branch] gh/zklaus/19/orig -> origin/gh/zklaus/19/orig 2025-08-14T21:43:29.5324555Z * [new branch] gh/zklaus/7/base -> origin/gh/zklaus/7/base 2025-08-14T21:43:29.5325064Z * [new branch] gh/zklaus/7/head -> origin/gh/zklaus/7/head 2025-08-14T21:43:29.5325556Z * [new branch] gh/zklaus/7/orig -> origin/gh/zklaus/7/orig 2025-08-14T21:43:29.5326056Z * [new branch] gh/zklaus/9/base -> origin/gh/zklaus/9/base 2025-08-14T21:43:29.5326541Z * [new branch] gh/zklaus/9/head -> origin/gh/zklaus/9/head 2025-08-14T21:43:29.5327042Z * [new branch] gh/zklaus/9/orig -> origin/gh/zklaus/9/orig 2025-08-14T21:43:29.5327557Z * [new branch] gh/zou3519/1175/base -> origin/gh/zou3519/1175/base 2025-08-14T21:43:29.5328069Z * [new branch] gh/zou3519/1175/head -> origin/gh/zou3519/1175/head 2025-08-14T21:43:29.5328597Z * [new branch] gh/zou3519/1175/orig -> origin/gh/zou3519/1175/orig 2025-08-14T21:43:29.5329109Z * [new branch] gh/zou3519/1177/base -> origin/gh/zou3519/1177/base 2025-08-14T21:43:29.5838757Z * [new branch] gh/zou3519/1177/head -> origin/gh/zou3519/1177/head 2025-08-14T21:43:29.5839331Z * [new branch] gh/zou3519/1177/orig -> origin/gh/zou3519/1177/orig 2025-08-14T21:43:29.5839854Z * [new branch] gh/zou3519/1187/base -> origin/gh/zou3519/1187/base 2025-08-14T21:43:29.5840601Z * [new branch] gh/zou3519/1187/head -> origin/gh/zou3519/1187/head 2025-08-14T21:43:29.5841121Z * [new branch] gh/zou3519/1187/orig -> origin/gh/zou3519/1187/orig 2025-08-14T21:43:29.5841636Z * [new branch] gh/zou3519/1188/base -> origin/gh/zou3519/1188/base 2025-08-14T21:43:29.5842164Z * [new branch] gh/zou3519/1188/head -> origin/gh/zou3519/1188/head 2025-08-14T21:43:29.5842774Z * [new branch] gh/zou3519/1188/orig -> origin/gh/zou3519/1188/orig 2025-08-14T21:43:29.5843312Z * [new branch] gh/zou3519/1189/base -> origin/gh/zou3519/1189/base 2025-08-14T21:43:29.5843915Z * [new branch] gh/zou3519/1189/head -> origin/gh/zou3519/1189/head 2025-08-14T21:43:29.5844430Z * [new branch] gh/zou3519/1189/orig -> origin/gh/zou3519/1189/orig 2025-08-14T21:43:29.5844941Z * [new branch] gh/zou3519/1190/base -> origin/gh/zou3519/1190/base 2025-08-14T21:43:29.5845455Z * [new branch] gh/zou3519/1190/head -> origin/gh/zou3519/1190/head 2025-08-14T21:43:29.5845963Z * [new branch] gh/zou3519/1190/orig -> origin/gh/zou3519/1190/orig 2025-08-14T21:43:29.5846475Z * [new branch] gh/zou3519/1191/base -> origin/gh/zou3519/1191/base 2025-08-14T21:43:29.5847000Z * [new branch] gh/zou3519/1191/head -> origin/gh/zou3519/1191/head 2025-08-14T21:43:29.5847635Z * [new branch] gh/zou3519/1191/orig -> origin/gh/zou3519/1191/orig 2025-08-14T21:43:29.5848161Z * [new branch] gh/zpcore/1/base -> origin/gh/zpcore/1/base 2025-08-14T21:43:29.5848683Z * [new branch] gh/zpcore/1/head -> origin/gh/zpcore/1/head 2025-08-14T21:43:29.5849277Z * [new branch] gh/zpcore/10/base -> origin/gh/zpcore/10/base 2025-08-14T21:43:29.5849794Z * [new branch] gh/zpcore/10/head -> origin/gh/zpcore/10/head 2025-08-14T21:43:29.5850391Z * [new branch] gh/zpcore/10/orig -> origin/gh/zpcore/10/orig 2025-08-14T21:43:29.5850895Z * [new branch] gh/zpcore/11/base -> origin/gh/zpcore/11/base 2025-08-14T21:43:29.5851399Z * [new branch] gh/zpcore/11/head -> origin/gh/zpcore/11/head 2025-08-14T21:43:29.5851912Z * [new branch] gh/zpcore/11/orig -> origin/gh/zpcore/11/orig 2025-08-14T21:43:29.5852415Z * [new branch] gh/zpcore/12/base -> origin/gh/zpcore/12/base 2025-08-14T21:43:29.5852912Z * [new branch] gh/zpcore/12/head -> origin/gh/zpcore/12/head 2025-08-14T21:43:29.5853414Z * [new branch] gh/zpcore/12/orig -> origin/gh/zpcore/12/orig 2025-08-14T21:43:29.5853919Z * [new branch] gh/zpcore/2/base -> origin/gh/zpcore/2/base 2025-08-14T21:43:29.5854406Z * [new branch] gh/zpcore/2/head -> origin/gh/zpcore/2/head 2025-08-14T21:43:29.5854911Z * [new branch] gh/zpcore/3/base -> origin/gh/zpcore/3/base 2025-08-14T21:43:29.5855398Z * [new branch] gh/zpcore/3/head -> origin/gh/zpcore/3/head 2025-08-14T21:43:29.5855993Z * [new branch] gh/zpcore/4/base -> origin/gh/zpcore/4/base 2025-08-14T21:43:29.5856584Z * [new branch] gh/zpcore/4/head -> origin/gh/zpcore/4/head 2025-08-14T21:43:29.5857083Z * [new branch] gh/zpcore/5/base -> origin/gh/zpcore/5/base 2025-08-14T21:43:29.5857580Z * [new branch] gh/zpcore/5/head -> origin/gh/zpcore/5/head 2025-08-14T21:43:29.5858074Z * [new branch] gh/zpcore/6/base -> origin/gh/zpcore/6/base 2025-08-14T21:43:29.5858577Z * [new branch] gh/zpcore/6/head -> origin/gh/zpcore/6/head 2025-08-14T21:43:29.5859065Z * [new branch] gh/zpcore/7/base -> origin/gh/zpcore/7/base 2025-08-14T21:43:29.5859754Z * [new branch] gh/zpcore/7/head -> origin/gh/zpcore/7/head 2025-08-14T21:43:29.5860269Z * [new branch] gh/zpcore/8/base -> origin/gh/zpcore/8/base 2025-08-14T21:43:29.5860759Z * [new branch] gh/zpcore/8/head -> origin/gh/zpcore/8/head 2025-08-14T21:43:29.5861271Z * [new branch] gh/zpcore/9/head -> origin/gh/zpcore/9/head 2025-08-14T21:43:29.5861773Z * [new branch] gh/zpcore/9/orig -> origin/gh/zpcore/9/orig 2025-08-14T21:43:29.5862370Z * [new branch] google-main -> origin/google-main 2025-08-14T21:43:29.5862908Z * [new branch] guangyey/external_stream -> origin/guangyey/external_stream 2025-08-14T21:43:29.5863563Z * [new branch] guangyey/host_alloc -> origin/guangyey/host_alloc 2025-08-14T21:43:29.5864098Z * [new branch] guangyey/test_2025 -> origin/guangyey/test_2025 2025-08-14T21:43:29.6317636Z * [new branch] guilhermeleobas/cherry-pick-55d87d9dfd9 -> origin/guilhermeleobas/cherry-pick-55d87d9dfd9 2025-08-14T21:43:29.6318443Z * [new branch] haozhe/bf16-dynamic-shape -> origin/haozhe/bf16-dynamic-shape 2025-08-14T21:43:29.6318985Z * [new branch] hc_baseline -> origin/hc_baseline 2025-08-14T21:43:29.6319502Z * [new branch] headeronlyScalarType -> origin/headeronlyScalarType 2025-08-14T21:43:29.6320722Z * [new branch] hf_update -> origin/hf_update 2025-08-14T21:43:29.6321200Z * [new branch] hhh_decomp_mul -> origin/hhh_decomp_mul 2025-08-14T21:43:29.6321657Z * [new branch] hhh_rand -> origin/hhh_rand 2025-08-14T21:43:29.6322117Z * [new branch] hoy/mmsplitk -> origin/hoy/mmsplitk 2025-08-14T21:43:29.6322611Z * [new branch] hoy/triton-PR3973 -> origin/hoy/triton-PR3973 2025-08-14T21:43:29.6323226Z * [new branch] hoy/triton-coalescing-baseline -> origin/hoy/triton-coalescing-baseline 2025-08-14T21:43:29.6323884Z * [new branch] hoy/triton-coalescing-min -> origin/hoy/triton-coalescing-min 2025-08-14T21:43:29.6324502Z * [new branch] hoy/triton-coalescing-new -> origin/hoy/triton-coalescing-new 2025-08-14T21:43:29.6325108Z * [new branch] hoy/triton-coalescing-vec -> origin/hoy/triton-coalescing-vec 2025-08-14T21:43:29.6325668Z * [new branch] inductordecompfix -> origin/inductordecompfix 2025-08-14T21:43:29.6326165Z * [new branch] inline -> origin/inline 2025-08-14T21:43:29.6326598Z * [new branch] inlining -> origin/inlining 2025-08-14T21:43:29.6327076Z * [new branch] inlining-ezyang -> origin/inlining-ezyang 2025-08-14T21:43:29.6327555Z * [new branch] int8_sdpa -> origin/int8_sdpa 2025-08-14T21:43:29.6328023Z * [new branch] invoke-subgraph -> origin/invoke-subgraph 2025-08-14T21:43:29.6328504Z * [new branch] issue#58739 -> origin/issue#58739 2025-08-14T21:43:29.6328954Z * [new branch] issue-154849 -> origin/issue-154849 2025-08-14T21:43:29.6329523Z * [new branch] ivanov/cherry-pick-ckpt-fixes -> origin/ivanov/cherry-pick-ckpt-fixes 2025-08-14T21:43:29.6330249Z * [new branch] jcaip/test-cusparselt-version-0.6.2 -> origin/jcaip/test-cusparselt-version-0.6.2 2025-08-14T21:43:29.6330987Z * [new branch] jcaip/update-cusparselt-0.6.2 -> origin/jcaip/update-cusparselt-0.6.2 2025-08-14T21:43:29.6331614Z * [new branch] jithunnair-amd-patch-1 -> origin/jithunnair-amd-patch-1 2025-08-14T21:43:29.6332225Z * [new branch] justinchu/attention-tests -> origin/justinchu/attention-tests 2025-08-14T21:43:29.6332957Z * [new branch] justinchu/native-qdq -> origin/justinchu/native-qdq 2025-08-14T21:43:29.6333544Z * [new branch] justinchuby/JitScalarType -> origin/justinchuby/JitScalarType 2025-08-14T21:43:29.6334135Z * [new branch] justinchuby/dynamo-true -> origin/justinchuby/dynamo-true 2025-08-14T21:43:29.6334714Z * [new branch] justinchuby/opset-20 -> origin/justinchuby/opset-20 2025-08-14T21:43:29.6335255Z * [new branch] kainan666/xlf_debug -> origin/kainan666/xlf_debug 2025-08-14T21:43:29.6335761Z * [new branch] kainan_test -> origin/kainan_test 2025-08-14T21:43:29.6336335Z * [new branch] leslie/enable_poc_reduction_fusion -> origin/leslie/enable_poc_reduction_fusion 2025-08-14T21:43:29.6337035Z * [new branch] leslie/test_group_gemm_epilogues -> origin/leslie/test_group_gemm_epilogues 2025-08-14T21:43:29.6337724Z * [new branch] lessw2020/fix_cutlass_cache_error -> origin/lessw2020/fix_cutlass_cache_error 2025-08-14T21:43:29.6338338Z * [new branch] liaoxuan/shm_all_reduce -> origin/liaoxuan/shm_all_reduce 2025-08-14T21:43:29.6338891Z * [new branch] liaoxuan/tags_issue -> origin/liaoxuan/tags_issue 2025-08-14T21:43:29.6339482Z * [new branch] liaoxuan/test_fa_disable_softmax -> origin/liaoxuan/test_fa_disable_softmax 2025-08-14T21:43:29.6340534Z * [new branch] liaoxuan/test_int8_sdpa -> origin/liaoxuan/test_int8_sdpa 2025-08-14T21:43:29.6341078Z * [new branch] lintbuilddocker -> origin/lintbuilddocker 2025-08-14T21:43:29.6341569Z * [new branch] llama4-stable -> origin/llama4-stable 2025-08-14T21:43:29.6342043Z * [new branch] logdetfix -> origin/logdetfix 2025-08-14T21:43:29.6342508Z * [new branch] lts/release/1.8 -> origin/lts/release/1.8 2025-08-14T21:43:29.6343019Z * [new branch] lucaskabela/#94773 -> origin/lucaskabela/#94773 2025-08-14T21:43:29.6343554Z * [new branch] lucaskabela/fix_157452 -> origin/lucaskabela/fix_157452 2025-08-14T21:43:29.6774253Z * [new branch] lucaskabela/fix_circular_import_158120 -> origin/lucaskabela/fix_circular_import_158120 2025-08-14T21:43:29.6775019Z * [new branch] lucaskabela/func_under_decomp -> origin/lucaskabela/func_under_decomp 2025-08-14T21:43:29.6775716Z * [new branch] lucaskabela/functional_in_dynamo -> origin/lucaskabela/functional_in_dynamo 2025-08-14T21:43:29.6776474Z * [new branch] lucaskabela/install_params_as_graph_attr -> origin/lucaskabela/install_params_as_graph_attr 2025-08-14T21:43:29.6777177Z * [new branch] lucaskabela/issue_120648 -> origin/lucaskabela/issue_120648 2025-08-14T21:43:29.6777846Z * [new branch] lucaskabela/parameters_as_graph_attr -> origin/lucaskabela/parameters_as_graph_attr 2025-08-14T21:43:29.6778520Z * [new branch] lucaskabela/registry_fix -> origin/lucaskabela/registry_fix 2025-08-14T21:43:29.6779245Z * [new branch] lucaskabela/remove_aot_dispatcher_metadata -> origin/lucaskabela/remove_aot_dispatcher_metadata 2025-08-14T21:43:29.6780027Z * [new branch] lucaskabela/type_guards -> origin/lucaskabela/type_guards 2025-08-14T21:43:29.6780618Z * [new branch] lucaskabela/typing-misc -> origin/lucaskabela/typing-misc 2025-08-14T21:43:29.6781209Z * [new branch] lucaskabela/typing_backends -> origin/lucaskabela/typing_backends 2025-08-14T21:43:29.6781988Z * [new branch] lucaskabela/typing_bytecode_analysis_transform -> origin/lucaskabela/typing_bytecode_analysis_transform 2025-08-14T21:43:29.6782794Z * [new branch] lucaskabela/typing_cache_files -> origin/lucaskabela/typing_cache_files 2025-08-14T21:43:29.6784252Z * [new branch] lucaskabela/typing_compile_autograd -> origin/lucaskabela/typing_compile_autograd 2025-08-14T21:43:29.6785025Z * [new branch] lucaskabela/typing_debug_utils.py -> origin/lucaskabela/typing_debug_utils.py 2025-08-14T21:43:29.6785700Z * [new branch] lucaskabela/typing_decorators -> origin/lucaskabela/typing_decorators 2025-08-14T21:43:29.6786358Z * [new branch] lucaskabela/typing_eval_frame -> origin/lucaskabela/typing_eval_frame 2025-08-14T21:43:29.6787157Z * [new branch] lucaskabela/typing_for_codegen -> origin/lucaskabela/typing_for_codegen 2025-08-14T21:43:29.6787924Z * [new branch] lucaskabela/typing_output_graph -> origin/lucaskabela/typing_output_graph 2025-08-14T21:43:29.6788609Z * [new branch] lucaskabela/typing_side_effects -> origin/lucaskabela/typing_side_effects 2025-08-14T21:43:29.6789271Z * [new branch] lucaskabela/typing_source_guard -> origin/lucaskabela/typing_source_guard 2025-08-14T21:43:29.6789950Z * [new branch] lucaskabela/typing_trace_rules -> origin/lucaskabela/typing_trace_rules 2025-08-14T21:43:29.6790588Z * [new branch] lucaskabela/typing_utils.py -> origin/lucaskabela/typing_utils.py 2025-08-14T21:43:29.6791291Z * [new branch] lucaskabela/typing_utils_improvements -> origin/lucaskabela/typing_utils_improvements 2025-08-14T21:43:29.6791892Z * [new branch] main -> origin/main 2025-08-14T21:43:29.6792831Z * [new branch] main-enable-b200-distributed-tests -> origin/main-enable-b200-distributed-tests 2025-08-14T21:43:29.6793474Z * [new branch] malfet-patch-1 -> origin/malfet-patch-1 2025-08-14T21:43:29.6793991Z * [new branch] malfet-patch-10 -> origin/malfet-patch-10 2025-08-14T21:43:29.6794494Z * [new branch] malfet-patch-11 -> origin/malfet-patch-11 2025-08-14T21:43:29.6795002Z * [new branch] malfet-patch-13 -> origin/malfet-patch-13 2025-08-14T21:43:29.6795493Z * [new branch] malfet-patch-14 -> origin/malfet-patch-14 2025-08-14T21:43:29.6795994Z * [new branch] malfet-patch-2 -> origin/malfet-patch-2 2025-08-14T21:43:29.6796483Z * [new branch] malfet-patch-3 -> origin/malfet-patch-3 2025-08-14T21:43:29.6796967Z * [new branch] malfet-patch-4 -> origin/malfet-patch-4 2025-08-14T21:43:29.6797458Z * [new branch] malfet-patch-5 -> origin/malfet-patch-5 2025-08-14T21:43:29.6797931Z * [new branch] malfet-patch-6 -> origin/malfet-patch-6 2025-08-14T21:43:29.6798415Z * [new branch] malfet-patch-7 -> origin/malfet-patch-7 2025-08-14T21:43:29.6798885Z * [new branch] malfet-patch-8 -> origin/malfet-patch-8 2025-08-14T21:43:29.6799375Z * [new branch] malfet-patch-9 -> origin/malfet-patch-9 2025-08-14T21:43:29.6799940Z * [new branch] malfet/delete-upsteam-cuda -> origin/malfet/delete-upsteam-cuda 2025-08-14T21:43:29.6800565Z * [new branch] malfet/mps-implement-col2im -> origin/malfet/mps-implement-col2im 2025-08-14T21:43:29.6801249Z * [new branch] manuel/fix_multidim_boolean_indexing -> origin/manuel/fix_multidim_boolean_indexing 2025-08-14T21:43:29.6801907Z * [new branch] manuel/np_empty_ellipsis -> origin/manuel/np_empty_ellipsis 2025-08-14T21:43:29.7279989Z * [new branch] manuel/test-ops-common-allow-mps -> origin/manuel/test-ops-common-allow-mps 2025-08-14T21:43:29.7280728Z * [new branch] metascroy-patch-1 -> origin/metascroy-patch-1 2025-08-14T21:43:29.7281256Z * [new branch] mlazos/S429861-debug -> origin/mlazos/S429861-debug 2025-08-14T21:43:29.7281759Z * [new branch] mlazos/aa -> origin/mlazos/aa 2025-08-14T21:43:29.7282424Z * [new branch] mlazos/arg-renames -> origin/mlazos/arg-renames 2025-08-14T21:43:29.7282990Z * [new branch] mlazos/backup-test-branch -> origin/mlazos/backup-test-branch 2025-08-14T21:43:29.7283586Z * [new branch] mlazos/bad-cudagraphs -> origin/mlazos/bad-cudagraphs 2025-08-14T21:43:29.7284217Z * [new branch] mlazos/baseline -> origin/mlazos/baseline 2025-08-14T21:43:29.7284902Z * [new branch] mlazos/baseline-graph-breaks -> origin/mlazos/baseline-graph-breaks 2025-08-14T21:43:29.7285497Z * [new branch] mlazos/beta-tensor -> origin/mlazos/beta-tensor 2025-08-14T21:43:29.7285997Z * [new branch] mlazos/buffers -> origin/mlazos/buffers 2025-08-14T21:43:29.7286487Z * [new branch] mlazos/buffers2 -> origin/mlazos/buffers2 2025-08-14T21:43:29.7286978Z * [new branch] mlazos/buffers3 -> origin/mlazos/buffers3 2025-08-14T21:43:29.7287459Z * [new branch] mlazos/ck2 -> origin/mlazos/ck2 2025-08-14T21:43:29.7287950Z * [new branch] mlazos/combokernels -> origin/mlazos/combokernels 2025-08-14T21:43:29.7288481Z * [new branch] mlazos/ctx-cleanup -> origin/mlazos/ctx-cleanup 2025-08-14T21:43:29.7289038Z * [new branch] mlazos/cudagraph-tests -> origin/mlazos/cudagraph-tests 2025-08-14T21:43:29.7290076Z * [new branch] mlazos/cudagraphs-measurement -> origin/mlazos/cudagraphs-measurement 2025-08-14T21:43:29.7290798Z * [new branch] mlazos/cutlass-test -> origin/mlazos/cutlass-test 2025-08-14T21:43:29.7291451Z * [new branch] mlazos/cutlass-topo-bug -> origin/mlazos/cutlass-topo-bug 2025-08-14T21:43:29.7292014Z * [new branch] mlazos/data-gather -> origin/mlazos/data-gather 2025-08-14T21:43:29.7292552Z * [new branch] mlazos/data-ptrs2 -> origin/mlazos/data-ptrs2 2025-08-14T21:43:29.7293058Z * [new branch] mlazos/data-ptrs3 -> origin/mlazos/data-ptrs3 2025-08-14T21:43:29.7293613Z * [new branch] mlazos/dataclass-proxy -> origin/mlazos/dataclass-proxy 2025-08-14T21:43:29.7294143Z * [new branch] mlazos/dc-attrs -> origin/mlazos/dc-attrs 2025-08-14T21:43:29.7294647Z * [new branch] mlazos/dc-helion -> origin/mlazos/dc-helion 2025-08-14T21:43:29.7295144Z * [new branch] mlazos/dict-fix -> origin/mlazos/dict-fix 2025-08-14T21:43:29.7295677Z * [new branch] mlazos/disable-closures -> origin/mlazos/disable-closures 2025-08-14T21:43:29.7296233Z * [new branch] mlazos/disable-tf -> origin/mlazos/disable-tf 2025-08-14T21:43:29.7296837Z * [new branch] mlazos/dupe-fix -> origin/mlazos/dupe-fix 2025-08-14T21:43:29.7297438Z * [new branch] mlazos/dyn-batch -> origin/mlazos/dyn-batch 2025-08-14T21:43:29.7297911Z * [new branch] mlazos/evt -> origin/mlazos/evt 2025-08-14T21:43:29.7298397Z * [new branch] mlazos/exp_disable -> origin/mlazos/exp_disable 2025-08-14T21:43:29.7298945Z * [new branch] mlazos/extract-examples -> origin/mlazos/extract-examples 2025-08-14T21:43:29.7299491Z * [new branch] mlazos/foreach-op -> origin/mlazos/foreach-op 2025-08-14T21:43:29.7300057Z * [new branch] mlazos/fp8 -> origin/mlazos/fp8 2025-08-14T21:43:29.7300523Z * [new branch] mlazos/fp8-bias -> origin/mlazos/fp8-bias 2025-08-14T21:43:29.7301053Z * [new branch] mlazos/fp8-bias-fusion -> origin/mlazos/fp8-bias-fusion 2025-08-14T21:43:29.7301582Z * [new branch] mlazos/freezing -> origin/mlazos/freezing 2025-08-14T21:43:29.7302176Z * [new branch] mlazos/h-comp -> origin/mlazos/h-comp 2025-08-14T21:43:29.7302761Z * [new branch] mlazos/h-comp2 -> origin/mlazos/h-comp2 2025-08-14T21:43:29.7303246Z * [new branch] mlazos/hash-hop -> origin/mlazos/hash-hop 2025-08-14T21:43:29.7303824Z * [new branch] mlazos/hc -> origin/mlazos/hc 2025-08-14T21:43:29.7304300Z * [new branch] mlazos/hc-cycles -> origin/mlazos/hc-cycles 2025-08-14T21:43:29.7304786Z * [new branch] mlazos/hc-fixes -> origin/mlazos/hc-fixes 2025-08-14T21:43:29.7305271Z * [new branch] mlazos/hc-fixes3 -> origin/mlazos/hc-fixes3 2025-08-14T21:43:29.7305759Z * [new branch] mlazos/hc-fixes4 -> origin/mlazos/hc-fixes4 2025-08-14T21:43:29.7306241Z * [new branch] mlazos/hc-hf -> origin/mlazos/hc-hf 2025-08-14T21:43:29.7796870Z * [new branch] mlazos/hc-mut -> origin/mlazos/hc-mut 2025-08-14T21:43:29.7797355Z * [new branch] mlazos/hc10 -> origin/mlazos/hc10 2025-08-14T21:43:29.7797821Z * [new branch] mlazos/hc11 -> origin/mlazos/hc11 2025-08-14T21:43:29.7798290Z * [new branch] mlazos/hc12 -> origin/mlazos/hc12 2025-08-14T21:43:29.7798734Z * [new branch] mlazos/hc13 -> origin/mlazos/hc13 2025-08-14T21:43:29.7799698Z * [new branch] mlazos/hc14 -> origin/mlazos/hc14 2025-08-14T21:43:29.7800137Z * [new branch] mlazos/hc15 -> origin/mlazos/hc15 2025-08-14T21:43:29.7800591Z * [new branch] mlazos/hc2 -> origin/mlazos/hc2 2025-08-14T21:43:29.7801043Z * [new branch] mlazos/hc4 -> origin/mlazos/hc4 2025-08-14T21:43:29.7801495Z * [new branch] mlazos/hc5 -> origin/mlazos/hc5 2025-08-14T21:43:29.7802064Z * [new branch] mlazos/hc6 -> origin/mlazos/hc6 2025-08-14T21:43:29.7802500Z * [new branch] mlazos/hc7 -> origin/mlazos/hc7 2025-08-14T21:43:29.7803046Z * [new branch] mlazos/hc8 -> origin/mlazos/hc8 2025-08-14T21:43:29.7803570Z * [new branch] mlazos/hc9 -> origin/mlazos/hc9 2025-08-14T21:43:29.7804062Z * [new branch] mlazos/hc_baseline2 -> origin/mlazos/hc_baseline2 2025-08-14T21:43:29.7804670Z * [new branch] mlazos/hop-modes -> origin/mlazos/hop-modes 2025-08-14T21:43:29.7805301Z * [new branch] mlazos/init-per-param -> origin/mlazos/init-per-param 2025-08-14T21:43:29.7805949Z * [new branch] mlazos/init_per_param -> origin/mlazos/init_per_param 2025-08-14T21:43:29.7806572Z * [new branch] mlazos/less-guards -> origin/mlazos/less-guards 2025-08-14T21:43:29.7807223Z * [new branch] mlazos/lr-composibility -> origin/mlazos/lr-composibility 2025-08-14T21:43:29.7807734Z * [new branch] mlazos/main -> origin/mlazos/main 2025-08-14T21:43:29.7808365Z * [new branch] mlazos/main-test-enablement -> origin/mlazos/main-test-enablement 2025-08-14T21:43:29.7809005Z * [new branch] mlazos/main2 -> origin/mlazos/main2 2025-08-14T21:43:29.7809562Z * [new branch] mlazos/mcg -> origin/mlazos/mcg 2025-08-14T21:43:29.7810012Z * [new branch] mlazos/mcg2 -> origin/mlazos/mcg2 2025-08-14T21:43:29.7810588Z * [new branch] mlazos/meta-guards -> origin/mlazos/meta-guards 2025-08-14T21:43:29.7811195Z * [new branch] mlazos/mlazos/ck2 -> origin/mlazos/mlazos/ck2 2025-08-14T21:43:29.7812007Z * [new branch] mlazos/mlazos/foreach-map-adam -> origin/mlazos/mlazos/foreach-map-adam 2025-08-14T21:43:29.7812757Z * [new branch] mlazos/mlazos/tf-mode-backup -> origin/mlazos/mlazos/tf-mode-backup 2025-08-14T21:43:29.7813413Z * [new branch] mlazos/mod-fix -> origin/mlazos/mod-fix 2025-08-14T21:43:29.7813988Z * [new branch] mlazos/mode-fix -> origin/mlazos/mode-fix 2025-08-14T21:43:29.7814504Z * [new branch] mlazos/more-tests -> origin/mlazos/more-tests 2025-08-14T21:43:29.7815100Z * [new branch] mlazos/nested-dc -> origin/mlazos/nested-dc 2025-08-14T21:43:29.7815691Z * [new branch] mlazos/no-cpp -> origin/mlazos/no-cpp 2025-08-14T21:43:29.7816367Z * [new branch] mlazos/no-init-group-handling -> origin/mlazos/no-init-group-handling 2025-08-14T21:43:29.7817025Z * [new branch] mlazos/offsets -> origin/mlazos/offsets 2025-08-14T21:43:29.7817606Z * [new branch] mlazos/opt-bench-exp2 -> origin/mlazos/opt-bench-exp2 2025-08-14T21:43:29.7818176Z * [new branch] mlazos/opt-incr -> origin/mlazos/opt-incr 2025-08-14T21:43:29.7818794Z * [new branch] mlazos/proxy-ctors -> origin/mlazos/proxy-ctors 2025-08-14T21:43:29.7819412Z * [new branch] mlazos/proxy-opt -> origin/mlazos/proxy-opt 2025-08-14T21:43:29.7820534Z * [new branch] mlazos/quant-fix -> origin/mlazos/quant-fix 2025-08-14T21:43:29.7821146Z * [new branch] mlazos/rm-buf-names -> origin/mlazos/rm-buf-names 2025-08-14T21:43:29.7821739Z * [new branch] mlazos/rm-spam -> origin/mlazos/rm-spam 2025-08-14T21:43:29.7822303Z * [new branch] mlazos/rtp -> origin/mlazos/rtp 2025-08-14T21:43:29.7822816Z * [new branch] mlazos/static-idx-dbg -> origin/mlazos/static-idx-dbg 2025-08-14T21:43:29.7823495Z * [new branch] mlazos/static-inputs-log -> origin/mlazos/static-inputs-log 2025-08-14T21:43:29.7824169Z * [new branch] mlazos/sub-param-fix -> origin/mlazos/sub-param-fix 2025-08-14T21:43:29.7824778Z * [new branch] mlazos/td-fix2 -> origin/mlazos/td-fix2 2025-08-14T21:43:29.7825478Z * [new branch] mlazos/tensor-hasattr2 -> origin/mlazos/tensor-hasattr2 2025-08-14T21:43:29.8252339Z * [new branch] mlazos/test -> origin/mlazos/test 2025-08-14T21:43:29.8252879Z * [new branch] mlazos/tf-mode -> origin/mlazos/tf-mode 2025-08-14T21:43:29.8253424Z * [new branch] mlazos/tf-mode-backup2 -> origin/mlazos/tf-mode-backup2 2025-08-14T21:43:29.8253974Z * [new branch] mlazos/tf-mode-reland -> origin/mlazos/tf-mode-reland 2025-08-14T21:43:29.8254527Z * [new branch] mlazos/tf-mode-reland2 -> origin/mlazos/tf-mode-reland2 2025-08-14T21:43:29.8255105Z * [new branch] mlazos/tf-mode-reland3 -> origin/mlazos/tf-mode-reland3 2025-08-14T21:43:29.8255623Z * [new branch] mlazos/topo-fix -> origin/mlazos/topo-fix 2025-08-14T21:43:29.8256149Z * [new branch] mlazos/triton-no-epi -> origin/mlazos/triton-no-epi 2025-08-14T21:43:29.8256675Z * [new branch] mlazos/tune-proto -> origin/mlazos/tune-proto 2025-08-14T21:43:29.8257209Z * [new branch] mlazos/tuple-fixes -> origin/mlazos/tuple-fixes 2025-08-14T21:43:29.8257743Z * [new branch] mlazos/tuple-fixes2 -> origin/mlazos/tuple-fixes2 2025-08-14T21:43:29.8258279Z * [new branch] mlazos/tuple-handling -> origin/mlazos/tuple-handling 2025-08-14T21:43:29.8258829Z * [new branch] mlazos/user-streams -> origin/mlazos/user-streams 2025-08-14T21:43:29.8259337Z * [new branch] mlazos/vary-beta -> origin/mlazos/vary-beta 2025-08-14T21:43:29.8260089Z * [new branch] mlazos/vary-beta2 -> origin/mlazos/vary-beta2 2025-08-14T21:43:29.8260616Z * [new branch] mlazos/weird-perf1 -> origin/mlazos/weird-perf1 2025-08-14T21:43:29.8261126Z * [new branch] mm_out_dtype_compile -> origin/mm_out_dtype_compile 2025-08-14T21:43:29.8261651Z * [new branch] modify-setupvllm -> origin/modify-setupvllm 2025-08-14T21:43:29.8262189Z * [new branch] move-theme-out-docker -> origin/move-theme-out-docker 2025-08-14T21:43:29.8262716Z * [new branch] mps-linear-1d -> origin/mps-linear-1d 2025-08-14T21:43:29.8263191Z * [new branch] msaroufim/be1 -> origin/msaroufim/be1 2025-08-14T21:43:29.8263685Z * [new branch] msaroufim/cn_path -> origin/msaroufim/cn_path 2025-08-14T21:43:29.8264263Z * [new branch] msaroufim/dtensorfusedadam -> origin/msaroufim/dtensorfusedadam 2025-08-14T21:43:29.8264826Z * [new branch] msaroufim/reduce -> origin/msaroufim/reduce 2025-08-14T21:43:29.8265334Z * [new branch] mtia/basic-cmake -> origin/mtia/basic-cmake 2025-08-14T21:43:29.8265795Z * [new branch] muon_dev -> origin/muon_dev 2025-08-14T21:43:29.8266301Z * [new branch] new-modifiy-setupvllm -> origin/new-modifiy-setupvllm 2025-08-14T21:43:29.8267323Z * [new branch] new-setupvllm -> origin/new-setupvllm 2025-08-14T21:43:29.8267791Z * [new branch] newtest-base -> origin/newtest-base 2025-08-14T21:43:29.8268282Z * [new branch] ngimel/cat_perf -> origin/ngimel/cat_perf 2025-08-14T21:43:29.8268813Z * [new branch] ngimel/cudamoduleload -> origin/ngimel/cudamoduleload 2025-08-14T21:43:29.8269423Z * [new branch] ngimel/fabric_driver_version -> origin/ngimel/fabric_driver_version 2025-08-14T21:43:29.8270004Z * [new branch] ngimel/fabric_symm -> origin/ngimel/fabric_symm 2025-08-14T21:43:29.8270492Z * [new branch] ngimel/gg_new -> origin/ngimel/gg_new 2025-08-14T21:43:29.8271029Z * [new branch] ngimel/grouped_mm_checks -> origin/ngimel/grouped_mm_checks 2025-08-14T21:43:29.8271575Z * [new branch] ngimel/guardfabric -> origin/ngimel/guardfabric 2025-08-14T21:43:29.8272104Z * [new branch] ngimel/index_None -> origin/ngimel/index_None 2025-08-14T21:43:29.8272605Z * [new branch] ngimel/modeguard -> origin/ngimel/modeguard 2025-08-14T21:43:29.8273132Z * [new branch] ngimel/multicast_fix -> origin/ngimel/multicast_fix 2025-08-14T21:43:29.8273687Z * [new branch] ngimel/unbind_multimem -> origin/ngimel/unbind_multimem 2025-08-14T21:43:29.8274187Z * [new branch] nightly -> origin/nightly 2025-08-14T21:43:29.8274688Z * [new branch] nmacchioni-patch-10 -> origin/nmacchioni-patch-10 2025-08-14T21:43:29.8275229Z * [new branch] nmacchioni-patch-7 -> origin/nmacchioni-patch-7 2025-08-14T21:43:29.8275766Z * [new branch] nmacchioni-patch-8 -> origin/nmacchioni-patch-8 2025-08-14T21:43:29.8276299Z * [new branch] nmacchioni-patch-9 -> origin/nmacchioni-patch-9 2025-08-14T21:43:29.8276828Z * [new branch] nullplay_fuse_matmul -> origin/nullplay_fuse_matmul 2025-08-14T21:43:29.8277531Z * [new branch] nweidia/enable-B200-inductor-nightly-ci -> origin/nweidia/enable-B200-inductor-nightly-ci 2025-08-14T21:43:29.8703308Z * [new branch] one-off -> origin/one-off 2025-08-14T21:43:29.8703927Z * [new branch] orig/release/1.10 -> origin/orig/release/1.10 2025-08-14T21:43:29.8706254Z * [new branch] orig/release/1.11 -> origin/orig/release/1.11 2025-08-14T21:43:29.8706787Z * [new branch] orig/release/1.12 -> origin/orig/release/1.12 2025-08-14T21:43:29.8707292Z * [new branch] orig/release/1.13 -> origin/orig/release/1.13 2025-08-14T21:43:29.8707799Z * [new branch] orig/release/1.6 -> origin/orig/release/1.6 2025-08-14T21:43:29.8708305Z * [new branch] orig/release/1.7 -> origin/orig/release/1.7 2025-08-14T21:43:29.8708801Z * [new branch] orig/release/1.8 -> origin/orig/release/1.8 2025-08-14T21:43:29.8709278Z * [new branch] orig/release/1.9 -> origin/orig/release/1.9 2025-08-14T21:43:29.8709764Z * [new branch] orig/release/2.0 -> origin/orig/release/2.0 2025-08-14T21:43:29.8710246Z * [new branch] orig/release/2.1 -> origin/orig/release/2.1 2025-08-14T21:43:29.8712327Z * [new branch] orig/release/2.2 -> origin/orig/release/2.2 2025-08-14T21:43:29.8712860Z * [new branch] orig/release/2.3 -> origin/orig/release/2.3 2025-08-14T21:43:29.8713344Z * [new branch] orig/release/2.4 -> origin/orig/release/2.4 2025-08-14T21:43:29.8713834Z * [new branch] orig/release/2.5 -> origin/orig/release/2.5 2025-08-14T21:43:29.8714838Z * [new branch] orig/release/2.6 -> origin/orig/release/2.6 2025-08-14T21:43:29.8715330Z * [new branch] orig/release/2.7 -> origin/orig/release/2.7 2025-08-14T21:43:29.8715828Z * [new branch] orig/release/2.8 -> origin/orig/release/2.8 2025-08-14T21:43:29.8716317Z * [new branch] oulgen/fx_graph -> origin/oulgen/fx_graph 2025-08-14T21:43:29.8716811Z * [new branch] padded-tensor -> origin/padded-tensor 2025-08-14T21:43:29.8719014Z * [new branch] parallel_cat -> origin/parallel_cat 2025-08-14T21:43:29.8719469Z * [new branch] pca2 -> origin/pca2 2025-08-14T21:43:29.8719931Z * [new branch] pianpwk-patch-1 -> origin/pianpwk-patch-1 2025-08-14T21:43:29.8720572Z * [new branch] pianpwk/backed_size_oblivious_export -> origin/pianpwk/backed_size_oblivious_export 2025-08-14T21:43:29.8721251Z * [new branch] pianpwk/dde_repeat_cat -> origin/pianpwk/dde_repeat_cat 2025-08-14T21:43:29.8721864Z * [new branch] pianpwk/draft_export_normalize -> origin/pianpwk/draft_export_normalize 2025-08-14T21:43:29.8722501Z * [new branch] pianpwk/dynamic_source_dim -> origin/pianpwk/dynamic_source_dim 2025-08-14T21:43:29.8723122Z * [new branch] pianpwk/invalidate_fake_memo -> origin/pianpwk/invalidate_fake_memo 2025-08-14T21:43:29.8725379Z * [new branch] pianpwk/lru_cache_bound_sympy -> origin/pianpwk/lru_cache_bound_sympy 2025-08-14T21:43:29.8725965Z * [new branch] pianpwk/max_1_strides -> origin/pianpwk/max_1_strides 2025-08-14T21:43:29.8726504Z * [new branch] pianpwk/nonzero_memo -> origin/pianpwk/nonzero_memo 2025-08-14T21:43:29.8727162Z * [new branch] pianpwk/oblivious_reshape_view_better -> origin/pianpwk/oblivious_reshape_view_better 2025-08-14T21:43:29.8727873Z * [new branch] pianpwk/oblivious_should_swap -> origin/pianpwk/oblivious_should_swap 2025-08-14T21:43:29.8728543Z * [new branch] pianpwk/oblivious_slice_forward -> origin/pianpwk/oblivious_slice_forward 2025-08-14T21:43:29.8729176Z * [new branch] pianpwk/oblivious_where -> origin/pianpwk/oblivious_where 2025-08-14T21:43:29.8731363Z * [new branch] pianpwk/param_static_pgo -> origin/pianpwk/param_static_pgo 2025-08-14T21:43:29.8732082Z * [new branch] pianpwk/pre_forward_hook -> origin/pianpwk/pre_forward_hook 2025-08-14T21:43:29.8732707Z * [new branch] pianpwk/remove_guard_fail_break -> origin/pianpwk/remove_guard_fail_break 2025-08-14T21:43:29.8733345Z * [new branch] pianpwk/slice_fresh_symbols -> origin/pianpwk/slice_fresh_symbols 2025-08-14T21:43:29.8733902Z * [new branch] pianpwk/sym_sym -> origin/pianpwk/sym_sym 2025-08-14T21:43:29.8734464Z * [new branch] pianpwk/test_slice_fake_impl -> origin/pianpwk/test_slice_fake_impl 2025-08-14T21:43:29.8735113Z * [new branch] pianpwk/unbacked_channels_last -> origin/pianpwk/unbacked_channels_last 2025-08-14T21:43:29.8737321Z * [new branch] pianpwk/unbacked_safe_conv1d -> origin/pianpwk/unbacked_safe_conv1d 2025-08-14T21:43:29.8737989Z * [new branch] pianpwk/unbacked_sdpa_flash -> origin/pianpwk/unbacked_sdpa_flash 2025-08-14T21:43:29.8738612Z * [new branch] pianpwk/unbacked_should_swap -> origin/pianpwk/unbacked_should_swap 2025-08-14T21:43:29.9172735Z * [new branch] pianpwk/unbacked_should_swap_2 -> origin/pianpwk/unbacked_should_swap_2 2025-08-14T21:43:29.9173439Z * [new branch] pianpwk/unbacked_slice_binding -> origin/pianpwk/unbacked_slice_binding 2025-08-14T21:43:29.9174101Z * [new branch] pianpwk/unbacked_slice_forward -> origin/pianpwk/unbacked_slice_forward 2025-08-14T21:43:29.9175323Z * [new branch] pianpwk/verbose_tensor_guards -> origin/pianpwk/verbose_tensor_guards 2025-08-14T21:43:29.9175914Z * [new branch] pianpwk/wan21_reshape -> origin/pianpwk/wan21_reshape 2025-08-14T21:43:29.9176510Z * [new branch] pianpwk/whitelist_optimizer -> origin/pianpwk/whitelist_optimizer 2025-08-14T21:43:29.9177068Z * [new branch] pin-torchao -> origin/pin-torchao 2025-08-14T21:43:29.9177590Z * [new branch] piz/fall_back_missing_0705 -> origin/piz/fall_back_missing_0705 2025-08-14T21:43:29.9178168Z * [new branch] piz/fall_back_missing_0716 -> origin/piz/fall_back_missing_0716 2025-08-14T21:43:29.9178727Z * [new branch] piz/fill_dist_cost_0702-3 -> origin/piz/fill_dist_cost_0702-3 2025-08-14T21:43:29.9179283Z * [new branch] piz/fill_dist_cost_0702-4 -> origin/piz/fill_dist_cost_0702-4 2025-08-14T21:43:29.9179925Z * [new branch] piz/fill_dist_cost_0702-5 -> origin/piz/fill_dist_cost_0702-5 2025-08-14T21:43:29.9180441Z * [new branch] piz/fix_sort_ -> origin/piz/fix_sort_ 2025-08-14T21:43:29.9180972Z * [new branch] piz/improve_scatter_0808 -> origin/piz/improve_scatter_0808 2025-08-14T21:43:29.9181500Z * [new branch] pool-separate -> origin/pool-separate 2025-08-14T21:43:29.9181980Z * [new branch] pr-156087 -> origin/pr-156087 2025-08-14T21:43:29.9182430Z * [new branch] pr/131860 -> origin/pr/131860 2025-08-14T21:43:29.9182892Z * [new branch] predispatch_to -> origin/predispatch_to 2025-08-14T21:43:29.9183396Z * [new branch] pt-opt-cuda3 -> origin/pt-opt-cuda3 2025-08-14T21:43:29.9183912Z * [new branch] pt2e-cache-model-device -> origin/pt2e-cache-model-device 2025-08-14T21:43:29.9184465Z * [new branch] pull-latest-theme -> origin/pull-latest-theme 2025-08-14T21:43:29.9184976Z * [new branch] pyobjectslot -> origin/pyobjectslot 2025-08-14T21:43:29.9185495Z * [new branch] python_compiled_autograd -> origin/python_compiled_autograd 2025-08-14T21:43:29.9186066Z * [new branch] qchip/export-D54134695 -> origin/qchip/export-D54134695 2025-08-14T21:43:29.9186577Z * [new branch] quint-bits -> origin/quint-bits 2025-08-14T21:43:29.9187154Z * [new branch] release/1.10 -> origin/release/1.10 2025-08-14T21:43:29.9187625Z * [new branch] release/1.11 -> origin/release/1.11 2025-08-14T21:43:29.9188079Z * [new branch] release/1.12 -> origin/release/1.12 2025-08-14T21:43:29.9188541Z * [new branch] release/1.13 -> origin/release/1.13 2025-08-14T21:43:29.9188995Z * [new branch] release/1.4 -> origin/release/1.4 2025-08-14T21:43:29.9189468Z * [new branch] release/1.4.1 -> origin/release/1.4.1 2025-08-14T21:43:29.9189918Z * [new branch] release/1.5 -> origin/release/1.5 2025-08-14T21:43:29.9190370Z * [new branch] release/1.6 -> origin/release/1.6 2025-08-14T21:43:29.9190812Z * [new branch] release/1.7 -> origin/release/1.7 2025-08-14T21:43:29.9191251Z * [new branch] release/1.8 -> origin/release/1.8 2025-08-14T21:43:29.9191841Z * [new branch] release/1.9 -> origin/release/1.9 2025-08-14T21:43:29.9192290Z * [new branch] release/2.0 -> origin/release/2.0 2025-08-14T21:43:29.9192836Z * [new branch] release/2.1 -> origin/release/2.1 2025-08-14T21:43:29.9193291Z * [new branch] release/2.2 -> origin/release/2.2 2025-08-14T21:43:29.9194128Z * [new branch] release/2.3 -> origin/release/2.3 2025-08-14T21:43:29.9194585Z * [new branch] release/2.4 -> origin/release/2.4 2025-08-14T21:43:29.9195025Z * [new branch] release/2.5 -> origin/release/2.5 2025-08-14T21:43:29.9195477Z * [new branch] release/2.6 -> origin/release/2.6 2025-08-14T21:43:29.9195921Z * [new branch] release/2.7 -> origin/release/2.7 2025-08-14T21:43:29.9196374Z * [new branch] release/2.8 -> origin/release/2.8 2025-08-14T21:43:29.9196831Z * [new branch] release_notes -> origin/release_notes 2025-08-14T21:43:29.9197359Z * [new branch] remove-actionable-label -> origin/remove-actionable-label 2025-08-14T21:43:29.9197882Z * [new branch] remove-ao -> origin/remove-ao 2025-08-14T21:43:29.9198608Z * [new branch] replace-pytorch-labs-20250812-195836 -> origin/replace-pytorch-labs-20250812-195836 2025-08-14T21:43:29.9629682Z * [new branch] replace-pytorch-labs-20250812-200248 -> origin/replace-pytorch-labs-20250812-200248 2025-08-14T21:43:29.9630604Z * [new branch] replace-pytorch-labs-20250812-200324 -> origin/replace-pytorch-labs-20250812-200324 2025-08-14T21:43:29.9631381Z * [new branch] replace-pytorch-labs-20250812-204020 -> origin/replace-pytorch-labs-20250812-204020 2025-08-14T21:43:29.9632192Z * [new branch] replace-pytorch-labs-20250812-204125 -> origin/replace-pytorch-labs-20250812-204125 2025-08-14T21:43:29.9632975Z * [new branch] replace-pytorch-labs-20250812-205624 -> origin/replace-pytorch-labs-20250812-205624 2025-08-14T21:43:29.9633785Z * [new branch] revert-131069-gh/krzysztofjordan/1/head -> origin/revert-131069-gh/krzysztofjordan/1/head 2025-08-14T21:43:29.9634564Z * [new branch] revert-131469-gh/andrewor14/51/head -> origin/revert-131469-gh/andrewor14/51/head 2025-08-14T21:43:29.9635273Z * [new branch] revert-156870-gh/skarjala/3/head -> origin/revert-156870-gh/skarjala/3/head 2025-08-14T21:43:29.9636150Z * [new branch] revert-157914-cherry-pick-157503-by-pytorch_bot_bot_ -> origin/revert-157914-cherry-pick-157503-by-pytorch_bot_bot_ 2025-08-14T21:43:29.9636973Z * [new branch] revert-direct-updates -> origin/revert-direct-updates 2025-08-14T21:43:29.9637666Z * [new branch] rocm-monitoring -> origin/rocm-monitoring 2025-08-14T21:43:29.9638399Z * [new branch] ryanguo99/cleanup-dynamo-expected-failures -> origin/ryanguo99/cleanup-dynamo-expected-failures 2025-08-14T21:43:29.9639159Z * [new branch] ryanguo99/fix-closure-var -> origin/ryanguo99/fix-closure-var 2025-08-14T21:43:29.9639744Z * [new branch] rzou/faketensor_bench -> origin/rzou/faketensor_bench 2025-08-14T21:43:29.9640254Z * [new branch] rzou/njt -> origin/rzou/njt 2025-08-14T21:43:29.9640714Z * [new branch] rzou/operator -> origin/rzou/operator 2025-08-14T21:43:29.9641181Z * [new branch] rzou/pca -> origin/rzou/pca 2025-08-14T21:43:29.9641641Z * [new branch] rzou/pipe_split -> origin/rzou/pipe_split 2025-08-14T21:43:29.9642120Z * [new branch] rzou/realprop -> origin/rzou/realprop 2025-08-14T21:43:29.9642625Z * [new branch] rzou/setup_context -> origin/rzou/setup_context 2025-08-14T21:43:29.9643282Z * [new branch] sanchitintel/refactor_aten_int8_woq_gemm -> origin/sanchitintel/refactor_aten_int8_woq_gemm 2025-08-14T21:43:29.9644224Z * [new branch] sanchitintel/weird_thing_with_test_cpu_select_algorithm -> origin/sanchitintel/weird_thing_with_test_cpu_select_algorithm 2025-08-14T21:43:29.9645463Z * [new branch] sapling-pr-archive-SS-JIA -> origin/sapling-pr-archive-SS-JIA 2025-08-14T21:43:29.9645998Z * [new branch] save -> origin/save 2025-08-14T21:43:29.9646444Z * [new branch] sdym/2.5.1 -> origin/sdym/2.5.1 2025-08-14T21:43:29.9646936Z * [new branch] seemethere-patch-1 -> origin/seemethere-patch-1 2025-08-14T21:43:29.9647453Z * [new branch] setup-torchci -> origin/setup-torchci 2025-08-14T21:43:29.9647913Z * [new branch] setupvllm -> origin/setupvllm 2025-08-14T21:43:29.9648399Z * [new branch] share_and_pin_fork -> origin/share_and_pin_fork 2025-08-14T21:43:29.9648926Z * [new branch] shengf/fx-xform-perf -> origin/shengf/fx-xform-perf 2025-08-14T21:43:29.9649464Z * [new branch] shikaili_fp8_allgather -> origin/shikaili_fp8_allgather 2025-08-14T21:43:29.9650020Z * [new branch] shoumikhin-patch-12 -> origin/shoumikhin-patch-12 2025-08-14T21:43:29.9650585Z * [new branch] simplify-fq-per-channel -> origin/simplify-fq-per-channel 2025-08-14T21:43:29.9651147Z * [new branch] solve-accuracy-fix -> origin/solve-accuracy-fix 2025-08-14T21:43:29.9651653Z * [new branch] sqzhang/flight4 -> origin/sqzhang/flight4 2025-08-14T21:43:29.9652168Z * [new branch] sqzhang/flight4plus -> origin/sqzhang/flight4plus 2025-08-14T21:43:29.9652751Z * [new branch] sraikund/record_funct_test -> origin/sraikund/record_funct_test 2025-08-14T21:43:29.9653300Z * [new branch] sraikund16/test -> origin/sraikund16/test 2025-08-14T21:43:29.9653868Z * [new branch] stablize-compilation-time -> origin/stablize-compilation-time 2025-08-14T21:43:29.9654456Z * [new branch] standalone-templates -> origin/standalone-templates 2025-08-14T21:43:29.9655053Z * [new branch] standalone_package_weights -> origin/standalone_package_weights 2025-08-14T21:43:29.9655622Z * [new branch] starterTaskUpdate -> origin/starterTaskUpdate 2025-08-14T21:43:29.9656137Z * [new branch] step2vllmsetup -> origin/step2vllmsetup 2025-08-14T21:43:30.0025620Z * [new branch] subgraph_fuse -> origin/subgraph_fuse 2025-08-14T21:43:30.0026210Z * [new branch] support-uv-in-collect_env -> origin/support-uv-in-collect_env 2025-08-14T21:43:30.0026996Z * [new branch] suryasub/fix-nccl-hang -> origin/suryasub/fix-nccl-hang 2025-08-14T21:43:30.0027529Z * [new branch] sve-poc -> origin/sve-poc 2025-08-14T21:43:30.0028003Z * [new branch] svekars-patch-1 -> origin/svekars-patch-1 2025-08-14T21:43:30.0028522Z * [new branch] svekars-patch-2 -> origin/svekars-patch-2 2025-08-14T21:43:30.0029001Z * [new branch] switch-bn -> origin/switch-bn 2025-08-14T21:43:30.0029531Z * [new branch] sympy-bottleneck-repro -> origin/sympy-bottleneck-repro 2025-08-14T21:43:30.0030148Z * [new branch] tenpercent/ck_inductor_gfx950 -> origin/tenpercent/ck_inductor_gfx950 2025-08-14T21:43:30.0030854Z * [new branch] tensordict_integration -> origin/tensordict_integration 2025-08-14T21:43:30.0031593Z * [new branch] test-half-migration-internally -> origin/test-half-migration-internally 2025-08-14T21:43:30.0032292Z * [new branch] test-internal-et -> origin/test-internal-et 2025-08-14T21:43:30.0032857Z * [new branch] test-move-conda-builds -> origin/test-move-conda-builds 2025-08-14T21:43:30.0033489Z * [new branch] test-myst-markdown-docstring -> origin/test-myst-markdown-docstring 2025-08-14T21:43:30.0034038Z * [new branch] test-old -> origin/test-old 2025-08-14T21:43:30.0035084Z * [new branch] test-vec-migration-internally -> origin/test-vec-migration-internally 2025-08-14T21:43:30.0035657Z * [new branch] test/bmm_heur -> origin/test/bmm_heur 2025-08-14T21:43:30.0036137Z * [new branch] test/inductor -> origin/test/inductor 2025-08-14T21:43:30.0036654Z * [new branch] tidy_performance_cyy -> origin/tidy_performance_cyy 2025-08-14T21:43:30.0037266Z * [new branch] torchtitan_ep -> origin/torchtitan_ep 2025-08-14T21:43:30.0037817Z * [new branch] trace_fsdp_torchtune_lora -> origin/trace_fsdp_torchtune_lora 2025-08-14T21:43:30.0038486Z * [new branch] traceable_fsdp_unit_tests -> origin/traceable_fsdp_unit_tests 2025-08-14T21:43:30.0039113Z * [new branch] trackMonitor -> origin/trackMonitor 2025-08-14T21:43:30.0039618Z * [new branch] tree_loop_vec_base -> origin/tree_loop_vec_base 2025-08-14T21:43:30.0040089Z * [new branch] tree_vec_base -> origin/tree_vec_base 2025-08-14T21:43:30.0040566Z * [new branch] triton-update -> origin/triton-update 2025-08-14T21:43:30.0041027Z * [new branch] triton_kernel -> origin/triton_kernel 2025-08-14T21:43:30.0041515Z * [new branch] triton_kernel_perf -> origin/triton_kernel_perf 2025-08-14T21:43:30.0042023Z * [new branch] try-runllm -> origin/try-runllm 2025-08-14T21:43:30.0042468Z * [new branch] type_dec -> origin/type_dec 2025-08-14T21:43:30.0042998Z * [new branch] udate-sphinx-dependancies -> origin/udate-sphinx-dependancies 2025-08-14T21:43:30.0043754Z * [new branch] update-audio-commit-hash/16307312222-1661-1 -> origin/update-audio-commit-hash/16307312222-1661-1 2025-08-14T21:43:30.0044718Z * [new branch] update-audio-commit-hash/16431348808-1673-1 -> origin/update-audio-commit-hash/16431348808-1673-1 2025-08-14T21:43:30.0045750Z * [new branch] update-audio-commit-hash/16510774365-1683-1 -> origin/update-audio-commit-hash/16510774365-1683-1 2025-08-14T21:43:30.0046665Z * [new branch] update-audio-commit-hash/16583472358-1693-1 -> origin/update-audio-commit-hash/16583472358-1693-1 2025-08-14T21:43:30.0048186Z * [new branch] update-audio-commit-hash/16663082088-1700-1 -> origin/update-audio-commit-hash/16663082088-1700-1 2025-08-14T21:43:30.0049612Z * [new branch] update-audio-commit-hash/16737365217-1704-1 -> origin/update-audio-commit-hash/16737365217-1704-1 2025-08-14T21:43:30.0051061Z * [new branch] update-audio-commit-hash/16791960928-1711-1 -> origin/update-audio-commit-hash/16791960928-1711-1 2025-08-14T21:43:30.0052498Z * [new branch] update-audio-commit-hash/16818882925-1712-1 -> origin/update-audio-commit-hash/16818882925-1712-1 2025-08-14T21:43:30.0053863Z * [new branch] update-audio-commit-hash/16895560422-1720-1 -> origin/update-audio-commit-hash/16895560422-1720-1 2025-08-14T21:43:30.0055165Z * [new branch] update-audio-commit-hash/16924174496-1738-1 -> origin/update-audio-commit-hash/16924174496-1738-1 2025-08-14T21:43:30.0059663Z * [new branch] update-dynamic-shapes-doc -> origin/update-dynamic-shapes-doc 2025-08-14T21:43:30.0430777Z * [new branch] update-executorch-commit-hash/15694981040-1626-1 -> origin/update-executorch-commit-hash/15694981040-1626-1 2025-08-14T21:43:30.0431765Z * [new branch] update-triton-commit-hash/13663274526-1487-2 -> origin/update-triton-commit-hash/13663274526-1487-2 2025-08-14T21:43:30.0432651Z * [new branch] update-vision-commit-hash/15336342773-1607-1 -> origin/update-vision-commit-hash/15336342773-1607-1 2025-08-14T21:43:30.0440527Z * [new branch] update-vllm-commit-hash/16431348808-1673-1 -> origin/update-vllm-commit-hash/16431348808-1673-1 2025-08-14T21:43:30.0441486Z * [new branch] update-vllm-commit-hash/16484773233-1682-1 -> origin/update-vllm-commit-hash/16484773233-1682-1 2025-08-14T21:43:30.0442333Z * [new branch] update-vllm-commit-hash/16510774365-1683-1 -> origin/update-vllm-commit-hash/16510774365-1683-1 2025-08-14T21:43:30.0443185Z * [new branch] update-vllm-commit-hash/16534031105-1684-1 -> origin/update-vllm-commit-hash/16534031105-1684-1 2025-08-14T21:43:30.0444007Z * [new branch] update-vllm-commit-hash/16545403308-1687-1 -> origin/update-vllm-commit-hash/16545403308-1687-1 2025-08-14T21:43:30.0444835Z * [new branch] update-vllm-commit-hash/16557202787-1688-1 -> origin/update-vllm-commit-hash/16557202787-1688-1 2025-08-14T21:43:30.0445661Z * [new branch] update-vllm-commit-hash/16583472358-1693-1 -> origin/update-vllm-commit-hash/16583472358-1693-1 2025-08-14T21:43:30.0446490Z * [new branch] update-vllm-commit-hash/16663082088-1700-1 -> origin/update-vllm-commit-hash/16663082088-1700-1 2025-08-14T21:43:30.0447321Z * [new branch] update-vllm-commit-hash/16737365217-1704-1 -> origin/update-vllm-commit-hash/16737365217-1704-1 2025-08-14T21:43:30.0448141Z * [new branch] update-vllm-commit-hash/16843157111-1713-1 -> origin/update-vllm-commit-hash/16843157111-1713-1 2025-08-14T21:43:30.0448974Z * [new branch] update-vllm-commit-hash/16855312394-1714-1 -> origin/update-vllm-commit-hash/16855312394-1714-1 2025-08-14T21:43:30.0449808Z * [new branch] update-vllm-commit-hash/16924174496-1738-1 -> origin/update-vllm-commit-hash/16924174496-1738-1 2025-08-14T21:43:30.0450636Z * [new branch] update-vllm-commit-hash/16952608705-1745-1 -> origin/update-vllm-commit-hash/16952608705-1745-1 2025-08-14T21:43:30.0451459Z * [new branch] update-xla-commit-hash/16260974441-194-1 -> origin/update-xla-commit-hash/16260974441-194-1 2025-08-14T21:43:30.0452256Z * [new branch] update-xla-commit-hash/16717126778-197-1 -> origin/update-xla-commit-hash/16717126778-197-1 2025-08-14T21:43:30.0453060Z * [new branch] update-xla-commit-hash/16873912760-198-1 -> origin/update-xla-commit-hash/16873912760-198-1 2025-08-14T21:43:30.0453888Z * [new branch] update_docs_torch_multinomial_issue#125388 -> origin/update_docs_torch_multinomial_issue#125388 2025-08-14T21:43:30.0454758Z * [new branch] update_executorch_pin -> origin/update_executorch_pin 2025-08-14T21:43:30.0455345Z * [new branch] update_slow_tests_1722488736 -> origin/update_slow_tests_1722488736 2025-08-14T21:43:30.0455930Z * [new branch] update_slow_tests_1722879173 -> origin/update_slow_tests_1722879173 2025-08-14T21:43:30.0456518Z * [new branch] update_slow_tests_1752478971 -> origin/update_slow_tests_1752478971 2025-08-14T21:43:30.0457111Z * [new branch] update_submodule_FBGEMM -> origin/update_submodule_FBGEMM 2025-08-14T21:43:30.0457674Z * [new branch] update_submodule_kineto -> origin/update_submodule_kineto 2025-08-14T21:43:30.0458282Z * [new branch] update_submodule_tensorpipe -> origin/update_submodule_tensorpipe 2025-08-14T21:43:30.0458803Z * [new branch] v0.1.2 -> origin/v0.1.2 2025-08-14T21:43:30.0459247Z * [new branch] v1.0.1 -> origin/v1.0.1 2025-08-14T21:43:30.0459774Z * [new branch] v1.0.3 -> origin/v1.0.3 2025-08-14T21:43:30.0460189Z * [new branch] v1.1.0 -> origin/v1.1.0 2025-08-14T21:43:30.0460608Z * [new branch] v1.2.0 -> origin/v1.2.0 2025-08-14T21:43:30.0461028Z * [new branch] v1.3.0 -> origin/v1.3.0 2025-08-14T21:43:30.0461557Z * [new branch] v1.3.1 -> origin/v1.3.1 2025-08-14T21:43:30.0462008Z * [new branch] validate_fn -> origin/validate_fn 2025-08-14T21:43:30.0462486Z * [new branch] validations_2.6 -> origin/validations_2.6 2025-08-14T21:43:30.0462992Z * [new branch] validations_2.8 -> origin/validations_2.8 2025-08-14T21:43:30.0463467Z * [new branch] viable/strict -> origin/viable/strict 2025-08-14T21:43:30.0463946Z * [new branch] vllmbuildci -> origin/vllmbuildci 2025-08-14T21:43:30.0464392Z * [new branch] vllmpin -> origin/vllmpin 2025-08-14T21:43:30.0914184Z * [new branch] vllmpintest -> origin/vllmpintest 2025-08-14T21:43:30.0914729Z * [new branch] wdvr-patch-1 -> origin/wdvr-patch-1 2025-08-14T21:43:30.0915204Z * [new branch] wdvr-patch-2 -> origin/wdvr-patch-2 2025-08-14T21:43:30.0915753Z * [new branch] wdvr/conda_devcontainer -> origin/wdvr/conda_devcontainer 2025-08-14T21:43:30.0916316Z * [new branch] wdvr/fix_logging_test -> origin/wdvr/fix_logging_test 2025-08-14T21:43:30.0916817Z * [new branch] wdvr/iss_145259 -> origin/wdvr/iss_145259 2025-08-14T21:43:30.0917326Z * [new branch] weight_sharing_cpp -> origin/weight_sharing_cpp 2025-08-14T21:43:30.0917832Z * [new branch] whc/flight -> origin/whc/flight 2025-08-14T21:43:30.0918295Z * [new branch] whc/flight4 -> origin/whc/flight4 2025-08-14T21:43:30.0918753Z * [new branch] whc/flight51 -> origin/whc/flight51 2025-08-14T21:43:30.0919213Z * [new branch] whc/flight53 -> origin/whc/flight53 2025-08-14T21:43:30.0919677Z * [new branch] whc/p2phang -> origin/whc/p2phang 2025-08-14T21:43:30.0920128Z * [new branch] whc/stage2 -> origin/whc/stage2 2025-08-14T21:43:30.0920588Z * [new branch] whc/uneven -> origin/whc/uneven 2025-08-14T21:43:30.0921055Z * [new branch] whc/uneven-merge -> origin/whc/uneven-merge 2025-08-14T21:43:30.0921541Z * [new branch] win_warnings -> origin/win_warnings 2025-08-14T21:43:30.0922198Z * [new branch] workonoldcommit -> origin/workonoldcommit 2025-08-14T21:43:30.0922774Z * [new branch] wwen/programming-model-2.8 -> origin/wwen/programming-model-2.8 2025-08-14T21:43:30.0923332Z * [new branch] xmfan/ca_0516 -> origin/xmfan/ca_0516 2025-08-14T21:43:30.0923813Z * [new branch] xmfan/ca_1051b93192 -> origin/xmfan/ca_1051b93192 2025-08-14T21:43:30.0924562Z * [new branch] xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 -> origin/xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 2025-08-14T21:43:30.0925313Z * [new branch] xmfan/ca_5a2be192d1 -> origin/xmfan/ca_5a2be192d1 2025-08-14T21:43:30.0925819Z * [new branch] xmfan/ca_9d59b516e9 -> origin/xmfan/ca_9d59b516e9 2025-08-14T21:43:30.0926304Z * [new branch] xmfan/ca_api -> origin/xmfan/ca_api 2025-08-14T21:43:30.0926764Z * [new branch] xmfan/ca_apr8 -> origin/xmfan/ca_apr8 2025-08-14T21:43:30.0927243Z * [new branch] xmfan/ca_base -> origin/xmfan/ca_base 2025-08-14T21:43:30.0927738Z * [new branch] xmfan/ca_cudagraphs -> origin/xmfan/ca_cudagraphs 2025-08-14T21:43:30.0928247Z * [new branch] xmfan/ca_dynamic -> origin/xmfan/ca_dynamic 2025-08-14T21:43:30.0928748Z * [new branch] xmfan/ca_fix_dyn -> origin/xmfan/ca_fix_dyn 2025-08-14T21:43:30.0929360Z * [new branch] xmfan/ca_fix_lowering -> origin/xmfan/ca_fix_lowering 2025-08-14T21:43:30.0929912Z * [new branch] xmfan/ca_fix_polyfills -> origin/xmfan/ca_fix_polyfills 2025-08-14T21:43:30.0930414Z * [new branch] xmfan/ca_jan3 -> origin/xmfan/ca_jan3 2025-08-14T21:43:30.0930897Z * [new branch] xmfan/ca_jun18 -> origin/xmfan/ca_jun18 2025-08-14T21:43:30.0931377Z * [new branch] xmfan/ca_jun24 -> origin/xmfan/ca_jun24 2025-08-14T21:43:30.0931861Z * [new branch] xmfan/ca_mem_base -> origin/xmfan/ca_mem_base 2025-08-14T21:43:30.0932359Z * [new branch] xmfan/ca_mem_fix -> origin/xmfan/ca_mem_fix 2025-08-14T21:43:30.0932849Z * [new branch] xmfan/ca_memory_fix -> origin/xmfan/ca_memory_fix 2025-08-14T21:43:30.0933397Z * [new branch] xmfan/ca_memory_fix_rebased -> origin/xmfan/ca_memory_fix_rebased 2025-08-14T21:43:30.0933990Z * [new branch] xmfan/ca_memory_fix_rebased2 -> origin/xmfan/ca_memory_fix_rebased2 2025-08-14T21:43:30.0934537Z * [new branch] xmfan/ca_move_to_cuda -> origin/xmfan/ca_move_to_cuda 2025-08-14T21:43:30.0935037Z * [new branch] xmfan/ca_nested -> origin/xmfan/ca_nested 2025-08-14T21:43:30.0935520Z * [new branch] xmfan/ca_overhead -> origin/xmfan/ca_overhead 2025-08-14T21:43:30.0936078Z * [new branch] xmfan/ca_overhead_0eba7e5451 -> origin/xmfan/ca_overhead_0eba7e5451 2025-08-14T21:43:30.0936631Z * [new branch] xmfan/ca_scalar -> origin/xmfan/ca_scalar 2025-08-14T21:43:30.0937155Z * [new branch] xmfan/ca_subclass_mem_fix -> origin/xmfan/ca_subclass_mem_fix 2025-08-14T21:43:30.0937683Z * [new branch] xmfan/ca_warm_mem -> origin/xmfan/ca_warm_mem 2025-08-14T21:43:30.0938192Z * [new branch] xmfan/ca_warm_mem_base -> origin/xmfan/ca_warm_mem_base 2025-08-14T21:43:30.0938710Z * [new branch] xmfan/cacu_jun18 -> origin/xmfan/cacu_jun18 2025-08-14T21:43:30.1385918Z * [new branch] xmfan/cacu_jun19 -> origin/xmfan/cacu_jun19 2025-08-14T21:43:30.1386452Z * [new branch] xmfan/cacu_jun4 -> origin/xmfan/cacu_jun4 2025-08-14T21:43:30.1387051Z * [new branch] xmfan/cacu_may27 -> origin/xmfan/cacu_may27 2025-08-14T21:43:30.1387868Z * [new branch] xmfan/circular_dep -> origin/xmfan/circular_dep 2025-08-14T21:43:30.1388482Z * [new branch] xmfan/compiled_autograd_feb_29 -> origin/xmfan/compiled_autograd_feb_29 2025-08-14T21:43:30.1389207Z * [new branch] xmfan/compiled_autograd_graph_breaks -> origin/xmfan/compiled_autograd_graph_breaks 2025-08-14T21:43:30.1389867Z * [new branch] xmfan/disable_duck_shape -> origin/xmfan/disable_duck_shape 2025-08-14T21:43:30.1390501Z * [new branch] xmfan/fca_cpp_node_passthrough -> origin/xmfan/fca_cpp_node_passthrough 2025-08-14T21:43:30.1391073Z * [new branch] xmfan/issue_123374 -> origin/xmfan/issue_123374 2025-08-14T21:43:30.1391831Z * [new branch] xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 2025-08-14T21:43:30.1392802Z * [new branch] xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 2025-08-14T21:43:30.1393648Z * [new branch] xmfan/segfault_test -> origin/xmfan/segfault_test 2025-08-14T21:43:30.1394268Z * [new branch] xmfan/single_step -> origin/xmfan/single_step 2025-08-14T21:43:30.1394756Z * [new branch] xmfan/sth_0829 -> origin/xmfan/sth_0829 2025-08-14T21:43:30.1395223Z * [new branch] xmfan/test -> origin/xmfan/test 2025-08-14T21:43:30.1395908Z * [new branch] y-do-we-have-7-build-systems -> origin/y-do-we-have-7-build-systems 2025-08-14T21:43:30.1396511Z * [new branch] yguo/debug-0226-constexpr -> origin/yguo/debug-0226-constexpr 2025-08-14T21:43:30.1397081Z * [new branch] yguo/new_latest_changes -> origin/yguo/new_latest_changes 2025-08-14T21:43:30.1397669Z * [new branch] yguo/patch_constexpr_changes -> origin/yguo/patch_constexpr_changes 2025-08-14T21:43:30.1398263Z * [new branch] yihan_quantization -> origin/yihan_quantization 2025-08-14T21:43:30.1398860Z * [new branch] yiming/add_nativert_benchmark -> origin/yiming/add_nativert_benchmark 2025-08-14T21:43:30.1399424Z * [new branch] yiming/bootcamp -> origin/yiming/bootcamp 2025-08-14T21:43:30.1400036Z * [new branch] zainr/canary-test -> origin/zainr/canary-test 2025-08-14T21:43:30.1400699Z * [new branch] zainr/cleanup-gh-runners -> origin/zainr/cleanup-gh-runners 2025-08-14T21:43:30.1401257Z * [new branch] zainr/fixlint -> origin/zainr/fixlint 2025-08-14T21:43:30.1401764Z * [new branch] zainr/git-push-v2 -> origin/zainr/git-push-v2 2025-08-14T21:43:30.1402272Z * [new branch] zainr/lint-py3.9 -> origin/zainr/lint-py3.9 2025-08-14T21:43:30.1402800Z * [new branch] zainr/mypy15-claude -> origin/zainr/mypy15-claude 2025-08-14T21:43:30.1403351Z * [new branch] zainr/pre-push-hooks -> origin/zainr/pre-push-hooks 2025-08-14T21:43:30.1403923Z * [new branch] zainr/pull-migration-c -> origin/zainr/pull-migration-c 2025-08-14T21:43:30.1404454Z * [new branch] zainr/test2 -> origin/zainr/test2 2025-08-14T21:43:30.1404925Z * [new branch] zainr/unstable -> origin/zainr/unstable 2025-08-14T21:43:30.1405448Z * [new branch] zainr/unstable-xla -> origin/zainr/unstable-xla 2025-08-14T21:43:30.1405964Z * [new branch] zainr/uv-pip-fix -> origin/zainr/uv-pip-fix 2025-08-14T21:43:30.1406568Z * [new branch] zainr/vs-aarch64 -> origin/zainr/vs-aarch64 2025-08-14T21:43:30.1407175Z * [new branch] zasdfgbnm-patch-3 -> origin/zasdfgbnm-patch-3 2025-08-14T21:43:30.1407673Z * [new branch] zb2p -> origin/zb2p 2025-08-14T21:43:30.1408242Z * [new branch] zdevito-patch-1 -> origin/zdevito-patch-1 2025-08-14T21:43:30.1408795Z * [new branch] zeros-and-scatter-part2 -> origin/zeros-and-scatter-part2 2025-08-14T21:43:30.1409375Z * [new branch] zhxchen17/nativert/0 -> origin/zhxchen17/nativert/0 2025-08-14T21:43:30.1409912Z * [new branch] zhxchen17/scratch/0 -> origin/zhxchen17/scratch/0 2025-08-14T21:43:30.1410461Z * [new branch] zhxhcen17/moodycamel -> origin/zhxhcen17/moodycamel 2025-08-14T21:43:30.1410971Z * [new branch] zxiiro/bazel -> origin/zxiiro/bazel 2025-08-14T21:43:30.1411461Z * [new branch] zxiiro/get-hardware -> origin/zxiiro/get-hardware 2025-08-14T21:43:30.1411965Z * [new branch] zxiiro/main -> origin/zxiiro/main 2025-08-14T21:43:30.1734202Z * [new branch] zxiiro/test -> origin/zxiiro/test 2025-08-14T21:43:30.1735077Z * [new tag] bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug -> bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug 2025-08-14T21:43:30.1735856Z * [new tag] ci/binaries/77164 -> ci/binaries/77164 2025-08-14T21:43:30.1738223Z * [new tag] ciflow/binaries/138996 -> ciflow/binaries/138996 2025-08-14T21:43:30.1738706Z * [new tag] ciflow/binaries/143959 -> ciflow/binaries/143959 2025-08-14T21:43:30.1739790Z * [new tag] ciflow/binaries/154595 -> ciflow/binaries/154595 2025-08-14T21:43:30.1740251Z * [new tag] ciflow/binaries/156049 -> ciflow/binaries/156049 2025-08-14T21:43:30.1740715Z * [new tag] ciflow/binaries/156712 -> ciflow/binaries/156712 2025-08-14T21:43:30.1741170Z * [new tag] ciflow/binaries/157432 -> ciflow/binaries/157432 2025-08-14T21:43:30.1741644Z * [new tag] ciflow/binaries/157685 -> ciflow/binaries/157685 2025-08-14T21:43:30.1742099Z * [new tag] ciflow/binaries/157689 -> ciflow/binaries/157689 2025-08-14T21:43:30.1743711Z * [new tag] ciflow/binaries/158104 -> ciflow/binaries/158104 2025-08-14T21:43:30.1744925Z * [new tag] ciflow/binaries/158623 -> ciflow/binaries/158623 2025-08-14T21:43:30.1745387Z * [new tag] ciflow/binaries/159827 -> ciflow/binaries/159827 2025-08-14T21:43:30.1745862Z * [new tag] ciflow/binaries/159869 -> ciflow/binaries/159869 2025-08-14T21:43:30.1746312Z * [new tag] ciflow/binaries/160593 -> ciflow/binaries/160593 2025-08-14T21:43:30.1746839Z * [new tag] ciflow/binaries_libtorch/143959 -> ciflow/binaries_libtorch/143959 2025-08-14T21:43:30.1747423Z * [new tag] ciflow/binaries_libtorch/156049 -> ciflow/binaries_libtorch/156049 2025-08-14T21:43:30.1747997Z * [new tag] ciflow/binaries_libtorch/157432 -> ciflow/binaries_libtorch/157432 2025-08-14T21:43:30.1748552Z * [new tag] ciflow/binaries_wheel/143959 -> ciflow/binaries_wheel/143959 2025-08-14T21:43:30.1750857Z * [new tag] ciflow/binaries_wheel/156049 -> ciflow/binaries_wheel/156049 2025-08-14T21:43:30.1751395Z * [new tag] ciflow/binaries_wheel/157432 -> ciflow/binaries_wheel/157432 2025-08-14T21:43:30.1751932Z * [new tag] ciflow/binaries_wheel/158733 -> ciflow/binaries_wheel/158733 2025-08-14T21:43:30.1752443Z * [new tag] ciflow/binaries_wheel/160301 -> ciflow/binaries_wheel/160301 2025-08-14T21:43:30.1752973Z * [new tag] ciflow/binaries_wheel/160496 -> ciflow/binaries_wheel/160496 2025-08-14T21:43:30.1753513Z * [new tag] ciflow/h100-distributed/156703 -> ciflow/h100-distributed/156703 2025-08-14T21:43:30.1754055Z * [new tag] ciflow/h100-symm-mem/151845 -> ciflow/h100-symm-mem/151845 2025-08-14T21:43:30.1754700Z * [new tag] ciflow/h100-symm-mem/155923 -> ciflow/h100-symm-mem/155923 2025-08-14T21:43:30.1756312Z * [new tag] ciflow/h100-symm-mem/157635 -> ciflow/h100-symm-mem/157635 2025-08-14T21:43:30.1757587Z * [new tag] ciflow/h100-symm-mem/159118 -> ciflow/h100-symm-mem/159118 2025-08-14T21:43:30.1758084Z * [new tag] ciflow/h100-symm-mem/159562 -> ciflow/h100-symm-mem/159562 2025-08-14T21:43:30.1758598Z * [new tag] ciflow/h100-symm-mem/159889 -> ciflow/h100-symm-mem/159889 2025-08-14T21:43:30.1759057Z * [new tag] ciflow/h100/159158 -> ciflow/h100/159158 2025-08-14T21:43:30.1759492Z * [new tag] ciflow/h100/160450 -> ciflow/h100/160450 2025-08-14T21:43:30.1759922Z * [new tag] ciflow/h100/160480 -> ciflow/h100/160480 2025-08-14T21:43:30.1760342Z * [new tag] ciflow/h100/160614 -> ciflow/h100/160614 2025-08-14T21:43:30.1761015Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/151845 -> ciflow/inductor-perf-test-nightly-rocm/151845 2025-08-14T21:43:30.1763754Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/160538 -> ciflow/inductor-perf-test-nightly-rocm/160538 2025-08-14T21:43:30.1764678Z * [new tag] ciflow/inductor-perf-test-nightly-x86-zen/156599 -> ciflow/inductor-perf-test-nightly-x86-zen/156599 2025-08-14T21:43:30.1765585Z * [new tag] ciflow/inductor-periodic/160406 -> ciflow/inductor-periodic/160406 2025-08-14T21:43:30.1766192Z * [new tag] ciflow/inductor-periodic/160538 -> ciflow/inductor-periodic/160538 2025-08-14T21:43:30.1766754Z * [new tag] ciflow/inductor-rocm/151845 -> ciflow/inductor-rocm/151845 2025-08-14T21:43:30.1767261Z * [new tag] ciflow/inductor-rocm/159158 -> ciflow/inductor-rocm/159158 2025-08-14T21:43:30.1767794Z * [new tag] ciflow/inductor-rocm/160073 -> ciflow/inductor-rocm/160073 2025-08-14T21:43:30.1770133Z * [new tag] ciflow/inductor-rocm/160538 -> ciflow/inductor-rocm/160538 2025-08-14T21:43:30.1770634Z * [new tag] ciflow/inductor/134881 -> ciflow/inductor/134881 2025-08-14T21:43:30.2081764Z * [new tag] ciflow/inductor/137400 -> ciflow/inductor/137400 2025-08-14T21:43:30.2082264Z * [new tag] ciflow/inductor/144516 -> ciflow/inductor/144516 2025-08-14T21:43:30.2082775Z * [new tag] ciflow/inductor/146506 -> ciflow/inductor/146506 2025-08-14T21:43:30.2083248Z * [new tag] ciflow/inductor/147360 -> ciflow/inductor/147360 2025-08-14T21:43:30.2083710Z * [new tag] ciflow/inductor/147990 -> ciflow/inductor/147990 2025-08-14T21:43:30.2084184Z * [new tag] ciflow/inductor/148180 -> ciflow/inductor/148180 2025-08-14T21:43:30.2084652Z * [new tag] ciflow/inductor/148328 -> ciflow/inductor/148328 2025-08-14T21:43:30.2085109Z * [new tag] ciflow/inductor/148484 -> ciflow/inductor/148484 2025-08-14T21:43:30.2085576Z * [new tag] ciflow/inductor/148492 -> ciflow/inductor/148492 2025-08-14T21:43:30.2086029Z * [new tag] ciflow/inductor/150302 -> ciflow/inductor/150302 2025-08-14T21:43:30.2086486Z * [new tag] ciflow/inductor/151845 -> ciflow/inductor/151845 2025-08-14T21:43:30.2089487Z * [new tag] ciflow/inductor/152198 -> ciflow/inductor/152198 2025-08-14T21:43:30.2089965Z * [new tag] ciflow/inductor/152624 -> ciflow/inductor/152624 2025-08-14T21:43:30.2090424Z * [new tag] ciflow/inductor/153966 -> ciflow/inductor/153966 2025-08-14T21:43:30.2090874Z * [new tag] ciflow/inductor/154193 -> ciflow/inductor/154193 2025-08-14T21:43:30.2092026Z * [new tag] ciflow/inductor/154650 -> ciflow/inductor/154650 2025-08-14T21:43:30.2092521Z * [new tag] ciflow/inductor/154694 -> ciflow/inductor/154694 2025-08-14T21:43:30.2092987Z * [new tag] ciflow/inductor/155072 -> ciflow/inductor/155072 2025-08-14T21:43:30.2093461Z * [new tag] ciflow/inductor/155152 -> ciflow/inductor/155152 2025-08-14T21:43:30.2093914Z * [new tag] ciflow/inductor/155153 -> ciflow/inductor/155153 2025-08-14T21:43:30.2094387Z * [new tag] ciflow/inductor/155154 -> ciflow/inductor/155154 2025-08-14T21:43:30.2094835Z * [new tag] ciflow/inductor/155501 -> ciflow/inductor/155501 2025-08-14T21:43:30.2095290Z * [new tag] ciflow/inductor/155502 -> ciflow/inductor/155502 2025-08-14T21:43:30.2095749Z * [new tag] ciflow/inductor/155503 -> ciflow/inductor/155503 2025-08-14T21:43:30.2096206Z * [new tag] ciflow/inductor/155504 -> ciflow/inductor/155504 2025-08-14T21:43:30.2096662Z * [new tag] ciflow/inductor/155557 -> ciflow/inductor/155557 2025-08-14T21:43:30.2097115Z * [new tag] ciflow/inductor/155608 -> ciflow/inductor/155608 2025-08-14T21:43:30.2097574Z * [new tag] ciflow/inductor/155923 -> ciflow/inductor/155923 2025-08-14T21:43:30.2098024Z * [new tag] ciflow/inductor/155928 -> ciflow/inductor/155928 2025-08-14T21:43:30.2098598Z * [new tag] ciflow/inductor/155958 -> ciflow/inductor/155958 2025-08-14T21:43:30.2099067Z * [new tag] ciflow/inductor/156049 -> ciflow/inductor/156049 2025-08-14T21:43:30.2099519Z * [new tag] ciflow/inductor/156851 -> ciflow/inductor/156851 2025-08-14T21:43:30.2100071Z * [new tag] ciflow/inductor/156967 -> ciflow/inductor/156967 2025-08-14T21:43:30.2100527Z * [new tag] ciflow/inductor/157148 -> ciflow/inductor/157148 2025-08-14T21:43:30.2100989Z * [new tag] ciflow/inductor/157149 -> ciflow/inductor/157149 2025-08-14T21:43:30.2101450Z * [new tag] ciflow/inductor/157152 -> ciflow/inductor/157152 2025-08-14T21:43:30.2101902Z * [new tag] ciflow/inductor/157542 -> ciflow/inductor/157542 2025-08-14T21:43:30.2102358Z * [new tag] ciflow/inductor/157572 -> ciflow/inductor/157572 2025-08-14T21:43:30.2102809Z * [new tag] ciflow/inductor/157635 -> ciflow/inductor/157635 2025-08-14T21:43:30.2103265Z * [new tag] ciflow/inductor/157685 -> ciflow/inductor/157685 2025-08-14T21:43:30.2103712Z * [new tag] ciflow/inductor/157686 -> ciflow/inductor/157686 2025-08-14T21:43:30.2104171Z * [new tag] ciflow/inductor/157689 -> ciflow/inductor/157689 2025-08-14T21:43:30.2104625Z * [new tag] ciflow/inductor/157699 -> ciflow/inductor/157699 2025-08-14T21:43:30.2105076Z * [new tag] ciflow/inductor/157743 -> ciflow/inductor/157743 2025-08-14T21:43:30.2105538Z * [new tag] ciflow/inductor/157944 -> ciflow/inductor/157944 2025-08-14T21:43:30.2105997Z * [new tag] ciflow/inductor/157971 -> ciflow/inductor/157971 2025-08-14T21:43:30.2106453Z * [new tag] ciflow/inductor/157994 -> ciflow/inductor/157994 2025-08-14T21:43:30.2106915Z * [new tag] ciflow/inductor/158061 -> ciflow/inductor/158061 2025-08-14T21:43:30.2107364Z * [new tag] ciflow/inductor/158091 -> ciflow/inductor/158091 2025-08-14T21:43:30.2420793Z * [new tag] ciflow/inductor/158097 -> ciflow/inductor/158097 2025-08-14T21:43:30.2421296Z * [new tag] ciflow/inductor/158098 -> ciflow/inductor/158098 2025-08-14T21:43:30.2423389Z * [new tag] ciflow/inductor/158104 -> ciflow/inductor/158104 2025-08-14T21:43:30.2424034Z * [new tag] ciflow/inductor/158168 -> ciflow/inductor/158168 2025-08-14T21:43:30.2424494Z * [new tag] ciflow/inductor/158250 -> ciflow/inductor/158250 2025-08-14T21:43:30.2424960Z * [new tag] ciflow/inductor/158321 -> ciflow/inductor/158321 2025-08-14T21:43:30.2425410Z * [new tag] ciflow/inductor/158609 -> ciflow/inductor/158609 2025-08-14T21:43:30.2425883Z * [new tag] ciflow/inductor/158647 -> ciflow/inductor/158647 2025-08-14T21:43:30.2426352Z * [new tag] ciflow/inductor/158914 -> ciflow/inductor/158914 2025-08-14T21:43:30.2426807Z * [new tag] ciflow/inductor/158932 -> ciflow/inductor/158932 2025-08-14T21:43:30.2427266Z * [new tag] ciflow/inductor/158987 -> ciflow/inductor/158987 2025-08-14T21:43:30.2428687Z * [new tag] ciflow/inductor/159009 -> ciflow/inductor/159009 2025-08-14T21:43:30.2429828Z * [new tag] ciflow/inductor/159010 -> ciflow/inductor/159010 2025-08-14T21:43:30.2430296Z * [new tag] ciflow/inductor/159093 -> ciflow/inductor/159093 2025-08-14T21:43:30.2430756Z * [new tag] ciflow/inductor/159158 -> ciflow/inductor/159158 2025-08-14T21:43:30.2431214Z * [new tag] ciflow/inductor/159197 -> ciflow/inductor/159197 2025-08-14T21:43:30.2431789Z * [new tag] ciflow/inductor/159274 -> ciflow/inductor/159274 2025-08-14T21:43:30.2432280Z * [new tag] ciflow/inductor/159281 -> ciflow/inductor/159281 2025-08-14T21:43:30.2432745Z * [new tag] ciflow/inductor/159329 -> ciflow/inductor/159329 2025-08-14T21:43:30.2433196Z * [new tag] ciflow/inductor/159361 -> ciflow/inductor/159361 2025-08-14T21:43:30.2433653Z * [new tag] ciflow/inductor/159365 -> ciflow/inductor/159365 2025-08-14T21:43:30.2435754Z * [new tag] ciflow/inductor/159366 -> ciflow/inductor/159366 2025-08-14T21:43:30.2436225Z * [new tag] ciflow/inductor/159367 -> ciflow/inductor/159367 2025-08-14T21:43:30.2436677Z * [new tag] ciflow/inductor/159368 -> ciflow/inductor/159368 2025-08-14T21:43:30.2437143Z * [new tag] ciflow/inductor/159473 -> ciflow/inductor/159473 2025-08-14T21:43:30.2437602Z * [new tag] ciflow/inductor/159483 -> ciflow/inductor/159483 2025-08-14T21:43:30.2438051Z * [new tag] ciflow/inductor/159508 -> ciflow/inductor/159508 2025-08-14T21:43:30.2438514Z * [new tag] ciflow/inductor/159523 -> ciflow/inductor/159523 2025-08-14T21:43:30.2438965Z * [new tag] ciflow/inductor/159678 -> ciflow/inductor/159678 2025-08-14T21:43:30.2439428Z * [new tag] ciflow/inductor/159691 -> ciflow/inductor/159691 2025-08-14T21:43:30.2439893Z * [new tag] ciflow/inductor/159778 -> ciflow/inductor/159778 2025-08-14T21:43:30.2441960Z * [new tag] ciflow/inductor/159786 -> ciflow/inductor/159786 2025-08-14T21:43:30.2442433Z * [new tag] ciflow/inductor/159817 -> ciflow/inductor/159817 2025-08-14T21:43:30.2442888Z * [new tag] ciflow/inductor/159842 -> ciflow/inductor/159842 2025-08-14T21:43:30.2443354Z * [new tag] ciflow/inductor/159864 -> ciflow/inductor/159864 2025-08-14T21:43:30.2443814Z * [new tag] ciflow/inductor/159865 -> ciflow/inductor/159865 2025-08-14T21:43:30.2444264Z * [new tag] ciflow/inductor/159869 -> ciflow/inductor/159869 2025-08-14T21:43:30.2444721Z * [new tag] ciflow/inductor/159875 -> ciflow/inductor/159875 2025-08-14T21:43:30.2445171Z * [new tag] ciflow/inductor/159889 -> ciflow/inductor/159889 2025-08-14T21:43:30.2445766Z * [new tag] ciflow/inductor/159902 -> ciflow/inductor/159902 2025-08-14T21:43:30.2446225Z * [new tag] ciflow/inductor/159923 -> ciflow/inductor/159923 2025-08-14T21:43:30.2448316Z * [new tag] ciflow/inductor/159944 -> ciflow/inductor/159944 2025-08-14T21:43:30.2448783Z * [new tag] ciflow/inductor/160004 -> ciflow/inductor/160004 2025-08-14T21:43:30.2449246Z * [new tag] ciflow/inductor/160080 -> ciflow/inductor/160080 2025-08-14T21:43:30.2449706Z * [new tag] ciflow/inductor/160108 -> ciflow/inductor/160108 2025-08-14T21:43:30.2450164Z * [new tag] ciflow/inductor/160109 -> ciflow/inductor/160109 2025-08-14T21:43:30.2450786Z * [new tag] ciflow/inductor/160111 -> ciflow/inductor/160111 2025-08-14T21:43:30.2451259Z * [new tag] ciflow/inductor/160113 -> ciflow/inductor/160113 2025-08-14T21:43:30.2451729Z * [new tag] ciflow/inductor/160127 -> ciflow/inductor/160127 2025-08-14T21:43:30.2804296Z * [new tag] ciflow/inductor/160131 -> ciflow/inductor/160131 2025-08-14T21:43:30.2804835Z * [new tag] ciflow/inductor/160132 -> ciflow/inductor/160132 2025-08-14T21:43:30.2805304Z * [new tag] ciflow/inductor/160136 -> ciflow/inductor/160136 2025-08-14T21:43:30.2805970Z * [new tag] ciflow/inductor/160138 -> ciflow/inductor/160138 2025-08-14T21:43:30.2806428Z * [new tag] ciflow/inductor/160151 -> ciflow/inductor/160151 2025-08-14T21:43:30.2806947Z * [new tag] ciflow/inductor/160152 -> ciflow/inductor/160152 2025-08-14T21:43:30.2807467Z * [new tag] ciflow/inductor/160154 -> ciflow/inductor/160154 2025-08-14T21:43:30.2807938Z * [new tag] ciflow/inductor/160156 -> ciflow/inductor/160156 2025-08-14T21:43:30.2808415Z * [new tag] ciflow/inductor/160161 -> ciflow/inductor/160161 2025-08-14T21:43:30.2808875Z * [new tag] ciflow/inductor/160166 -> ciflow/inductor/160166 2025-08-14T21:43:30.2809340Z * [new tag] ciflow/inductor/160168 -> ciflow/inductor/160168 2025-08-14T21:43:30.2809793Z * [new tag] ciflow/inductor/160174 -> ciflow/inductor/160174 2025-08-14T21:43:30.2810262Z * [new tag] ciflow/inductor/160181 -> ciflow/inductor/160181 2025-08-14T21:43:30.2810722Z * [new tag] ciflow/inductor/160183 -> ciflow/inductor/160183 2025-08-14T21:43:30.2811172Z * [new tag] ciflow/inductor/160190 -> ciflow/inductor/160190 2025-08-14T21:43:30.2811632Z * [new tag] ciflow/inductor/160198 -> ciflow/inductor/160198 2025-08-14T21:43:30.2812088Z * [new tag] ciflow/inductor/160201 -> ciflow/inductor/160201 2025-08-14T21:43:30.2812563Z * [new tag] ciflow/inductor/160209 -> ciflow/inductor/160209 2025-08-14T21:43:30.2813030Z * [new tag] ciflow/inductor/160218 -> ciflow/inductor/160218 2025-08-14T21:43:30.2813483Z * [new tag] ciflow/inductor/160239 -> ciflow/inductor/160239 2025-08-14T21:43:30.2813942Z * [new tag] ciflow/inductor/160250 -> ciflow/inductor/160250 2025-08-14T21:43:30.2814394Z * [new tag] ciflow/inductor/160253 -> ciflow/inductor/160253 2025-08-14T21:43:30.2814863Z * [new tag] ciflow/inductor/160266 -> ciflow/inductor/160266 2025-08-14T21:43:30.2815315Z * [new tag] ciflow/inductor/160282 -> ciflow/inductor/160282 2025-08-14T21:43:30.2815775Z * [new tag] ciflow/inductor/160298 -> ciflow/inductor/160298 2025-08-14T21:43:30.2816236Z * [new tag] ciflow/inductor/160301 -> ciflow/inductor/160301 2025-08-14T21:43:30.2816819Z * [new tag] ciflow/inductor/160310 -> ciflow/inductor/160310 2025-08-14T21:43:30.2817294Z * [new tag] ciflow/inductor/160323 -> ciflow/inductor/160323 2025-08-14T21:43:30.2817884Z * [new tag] ciflow/inductor/160324 -> ciflow/inductor/160324 2025-08-14T21:43:30.2818365Z * [new tag] ciflow/inductor/160325 -> ciflow/inductor/160325 2025-08-14T21:43:30.2818846Z * [new tag] ciflow/inductor/160326 -> ciflow/inductor/160326 2025-08-14T21:43:30.2819298Z * [new tag] ciflow/inductor/160327 -> ciflow/inductor/160327 2025-08-14T21:43:30.2819943Z * [new tag] ciflow/inductor/160328 -> ciflow/inductor/160328 2025-08-14T21:43:30.2820409Z * [new tag] ciflow/inductor/160329 -> ciflow/inductor/160329 2025-08-14T21:43:30.2820874Z * [new tag] ciflow/inductor/160351 -> ciflow/inductor/160351 2025-08-14T21:43:30.2821347Z * [new tag] ciflow/inductor/160353 -> ciflow/inductor/160353 2025-08-14T21:43:30.2821799Z * [new tag] ciflow/inductor/160362 -> ciflow/inductor/160362 2025-08-14T21:43:30.2822264Z * [new tag] ciflow/inductor/160363 -> ciflow/inductor/160363 2025-08-14T21:43:30.2822720Z * [new tag] ciflow/inductor/160364 -> ciflow/inductor/160364 2025-08-14T21:43:30.2823179Z * [new tag] ciflow/inductor/160365 -> ciflow/inductor/160365 2025-08-14T21:43:30.2823740Z * [new tag] ciflow/inductor/160366 -> ciflow/inductor/160366 2025-08-14T21:43:30.2824206Z * [new tag] ciflow/inductor/160367 -> ciflow/inductor/160367 2025-08-14T21:43:30.2824671Z * [new tag] ciflow/inductor/160368 -> ciflow/inductor/160368 2025-08-14T21:43:30.2825121Z * [new tag] ciflow/inductor/160369 -> ciflow/inductor/160369 2025-08-14T21:43:30.2825599Z * [new tag] ciflow/inductor/160371 -> ciflow/inductor/160371 2025-08-14T21:43:30.2826061Z * [new tag] ciflow/inductor/160374 -> ciflow/inductor/160374 2025-08-14T21:43:30.2826528Z * [new tag] ciflow/inductor/160375 -> ciflow/inductor/160375 2025-08-14T21:43:30.2827110Z * [new tag] ciflow/inductor/160377 -> ciflow/inductor/160377 2025-08-14T21:43:30.2827568Z * [new tag] ciflow/inductor/160380 -> ciflow/inductor/160380 2025-08-14T21:43:30.2828039Z * [new tag] ciflow/inductor/160381 -> ciflow/inductor/160381 2025-08-14T21:43:30.3162633Z * [new tag] ciflow/inductor/160383 -> ciflow/inductor/160383 2025-08-14T21:43:30.3163161Z * [new tag] ciflow/inductor/160394 -> ciflow/inductor/160394 2025-08-14T21:43:30.3163640Z * [new tag] ciflow/inductor/160401 -> ciflow/inductor/160401 2025-08-14T21:43:30.3164129Z * [new tag] ciflow/inductor/160402 -> ciflow/inductor/160402 2025-08-14T21:43:30.3164602Z * [new tag] ciflow/inductor/160403 -> ciflow/inductor/160403 2025-08-14T21:43:30.3165058Z * [new tag] ciflow/inductor/160424 -> ciflow/inductor/160424 2025-08-14T21:43:30.3165522Z * [new tag] ciflow/inductor/160426 -> ciflow/inductor/160426 2025-08-14T21:43:30.3165983Z * [new tag] ciflow/inductor/160431 -> ciflow/inductor/160431 2025-08-14T21:43:30.3166455Z * [new tag] ciflow/inductor/160448 -> ciflow/inductor/160448 2025-08-14T21:43:30.3166917Z * [new tag] ciflow/inductor/160450 -> ciflow/inductor/160450 2025-08-14T21:43:30.3167367Z * [new tag] ciflow/inductor/160455 -> ciflow/inductor/160455 2025-08-14T21:43:30.3167836Z * [new tag] ciflow/inductor/160456 -> ciflow/inductor/160456 2025-08-14T21:43:30.3168467Z * [new tag] ciflow/inductor/160461 -> ciflow/inductor/160461 2025-08-14T21:43:30.3168955Z * [new tag] ciflow/inductor/160462 -> ciflow/inductor/160462 2025-08-14T21:43:30.3169415Z * [new tag] ciflow/inductor/160467 -> ciflow/inductor/160467 2025-08-14T21:43:30.3169869Z * [new tag] ciflow/inductor/160470 -> ciflow/inductor/160470 2025-08-14T21:43:30.3170339Z * [new tag] ciflow/inductor/160473 -> ciflow/inductor/160473 2025-08-14T21:43:30.3170803Z * [new tag] ciflow/inductor/160476 -> ciflow/inductor/160476 2025-08-14T21:43:30.3171359Z * [new tag] ciflow/inductor/160480 -> ciflow/inductor/160480 2025-08-14T21:43:30.3171822Z * [new tag] ciflow/inductor/160481 -> ciflow/inductor/160481 2025-08-14T21:43:30.3172287Z * [new tag] ciflow/inductor/160482 -> ciflow/inductor/160482 2025-08-14T21:43:30.3172759Z * [new tag] ciflow/inductor/160483 -> ciflow/inductor/160483 2025-08-14T21:43:30.3173210Z * [new tag] ciflow/inductor/160485 -> ciflow/inductor/160485 2025-08-14T21:43:30.3173670Z * [new tag] ciflow/inductor/160486 -> ciflow/inductor/160486 2025-08-14T21:43:30.3174129Z * [new tag] ciflow/inductor/160503 -> ciflow/inductor/160503 2025-08-14T21:43:30.3174578Z * [new tag] ciflow/inductor/160510 -> ciflow/inductor/160510 2025-08-14T21:43:30.3175178Z * [new tag] ciflow/inductor/160527 -> ciflow/inductor/160527 2025-08-14T21:43:30.3175639Z * [new tag] ciflow/inductor/160530 -> ciflow/inductor/160530 2025-08-14T21:43:30.3176100Z * [new tag] ciflow/inductor/160531 -> ciflow/inductor/160531 2025-08-14T21:43:30.3176571Z * [new tag] ciflow/inductor/160538 -> ciflow/inductor/160538 2025-08-14T21:43:30.3177039Z * [new tag] ciflow/inductor/160539 -> ciflow/inductor/160539 2025-08-14T21:43:30.3177508Z * [new tag] ciflow/inductor/160540 -> ciflow/inductor/160540 2025-08-14T21:43:30.3178074Z * [new tag] ciflow/inductor/160548 -> ciflow/inductor/160548 2025-08-14T21:43:30.3178539Z * [new tag] ciflow/inductor/160552 -> ciflow/inductor/160552 2025-08-14T21:43:30.3178998Z * [new tag] ciflow/inductor/160561 -> ciflow/inductor/160561 2025-08-14T21:43:30.3179453Z * [new tag] ciflow/inductor/160576 -> ciflow/inductor/160576 2025-08-14T21:43:30.3180081Z * [new tag] ciflow/inductor/160578 -> ciflow/inductor/160578 2025-08-14T21:43:30.3180547Z * [new tag] ciflow/inductor/160580 -> ciflow/inductor/160580 2025-08-14T21:43:30.3181013Z * [new tag] ciflow/inductor/160583 -> ciflow/inductor/160583 2025-08-14T21:43:30.3187317Z * [new tag] ciflow/inductor/160589 -> ciflow/inductor/160589 2025-08-14T21:43:30.3187795Z * [new tag] ciflow/inductor/160590 -> ciflow/inductor/160590 2025-08-14T21:43:30.3188260Z * [new tag] ciflow/inductor/160592 -> ciflow/inductor/160592 2025-08-14T21:43:30.3188713Z * [new tag] ciflow/inductor/160596 -> ciflow/inductor/160596 2025-08-14T21:43:30.3189183Z * [new tag] ciflow/inductor/160601 -> ciflow/inductor/160601 2025-08-14T21:43:30.3189643Z * [new tag] ciflow/inductor/160607 -> ciflow/inductor/160607 2025-08-14T21:43:30.3190108Z * [new tag] ciflow/inductor/160608 -> ciflow/inductor/160608 2025-08-14T21:43:30.3190572Z * [new tag] ciflow/inductor/160611 -> ciflow/inductor/160611 2025-08-14T21:43:30.3191030Z * [new tag] ciflow/inductor/160614 -> ciflow/inductor/160614 2025-08-14T21:43:30.3191492Z * [new tag] ciflow/inductor/160616 -> ciflow/inductor/160616 2025-08-14T21:43:30.3602681Z * [new tag] ciflow/inductor/160619 -> ciflow/inductor/160619 2025-08-14T21:43:30.3603477Z * [new tag] ciflow/inductor/160625 -> ciflow/inductor/160625 2025-08-14T21:43:30.3603961Z * [new tag] ciflow/inductor/160635 -> ciflow/inductor/160635 2025-08-14T21:43:30.3604587Z * [new tag] ciflow/inductor/160649 -> ciflow/inductor/160649 2025-08-14T21:43:30.3605076Z * [new tag] ciflow/inductor/160658 -> ciflow/inductor/160658 2025-08-14T21:43:30.3605534Z * [new tag] ciflow/inductor/160662 -> ciflow/inductor/160662 2025-08-14T21:43:30.3606001Z * [new tag] ciflow/inductor/160668 -> ciflow/inductor/160668 2025-08-14T21:43:30.3606467Z * [new tag] ciflow/inductor/160669 -> ciflow/inductor/160669 2025-08-14T21:43:30.3606925Z * [new tag] ciflow/inductor/160670 -> ciflow/inductor/160670 2025-08-14T21:43:30.3607409Z * [new tag] ciflow/inductor/160671 -> ciflow/inductor/160671 2025-08-14T21:43:30.3607867Z * [new tag] ciflow/inductor/160677 -> ciflow/inductor/160677 2025-08-14T21:43:30.3608324Z * [new tag] ciflow/inductor/160679 -> ciflow/inductor/160679 2025-08-14T21:43:30.3608801Z * [new tag] ciflow/inductor/3b9a386 -> ciflow/inductor/3b9a386 2025-08-14T21:43:30.3609422Z * [new tag] ciflow/inductor/3d4b92b -> ciflow/inductor/3d4b92b 2025-08-14T21:43:30.3611923Z * [new tag] ciflow/inductor/d224ac7 -> ciflow/inductor/d224ac7 2025-08-14T21:43:30.3612434Z * [new tag] ciflow/linux-aarch64/147855 -> ciflow/linux-aarch64/147855 2025-08-14T21:43:30.3612951Z * [new tag] ciflow/linux-aarch64/157994 -> ciflow/linux-aarch64/157994 2025-08-14T21:43:30.3613464Z * [new tag] ciflow/linux-aarch64/159737 -> ciflow/linux-aarch64/159737 2025-08-14T21:43:30.3613969Z * [new tag] ciflow/linux-aarch64/160078 -> ciflow/linux-aarch64/160078 2025-08-14T21:43:30.3614478Z * [new tag] ciflow/linux-aarch64/160299 -> ciflow/linux-aarch64/160299 2025-08-14T21:43:30.3614976Z * [new tag] ciflow/linux-aarch64/160301 -> ciflow/linux-aarch64/160301 2025-08-14T21:43:30.3615453Z * [new tag] ciflow/mps/155923 -> ciflow/mps/155923 2025-08-14T21:43:30.3615888Z * [new tag] ciflow/mps/157553 -> ciflow/mps/157553 2025-08-14T21:43:30.3616302Z * [new tag] ciflow/mps/157635 -> ciflow/mps/157635 2025-08-14T21:43:30.3616722Z * [new tag] ciflow/mps/160541 -> ciflow/mps/160541 2025-08-14T21:43:30.3617153Z * [new tag] ciflow/nightly/156049 -> ciflow/nightly/156049 2025-08-14T21:43:30.3617612Z * [new tag] ciflow/nightly/158104 -> ciflow/nightly/158104 2025-08-14T21:43:30.3618096Z * [new tag] ciflow/op-benchmark/157994 -> ciflow/op-benchmark/157994 2025-08-14T21:43:30.3618666Z * [new tag] ciflow/periodic-rocm-mi300/139971 -> ciflow/periodic-rocm-mi300/139971 2025-08-14T21:43:30.3619296Z * [new tag] ciflow/periodic-rocm-mi300/160073 -> ciflow/periodic-rocm-mi300/160073 2025-08-14T21:43:30.3619983Z * [new tag] ciflow/periodic-rocm-mi300/160538 -> ciflow/periodic-rocm-mi300/160538 2025-08-14T21:43:30.3620558Z * [new tag] ciflow/periodic/054a2fd -> ciflow/periodic/054a2fd 2025-08-14T21:43:30.3621046Z * [new tag] ciflow/periodic/131296 -> ciflow/periodic/131296 2025-08-14T21:43:30.3623204Z * [new tag] ciflow/periodic/139971 -> ciflow/periodic/139971 2025-08-14T21:43:30.3623674Z * [new tag] ciflow/periodic/143959 -> ciflow/periodic/143959 2025-08-14T21:43:30.3624300Z * [new tag] ciflow/periodic/154595 -> ciflow/periodic/154595 2025-08-14T21:43:30.3624771Z * [new tag] ciflow/periodic/156703 -> ciflow/periodic/156703 2025-08-14T21:43:30.3625233Z * [new tag] ciflow/periodic/160201 -> ciflow/periodic/160201 2025-08-14T21:43:30.3625706Z * [new tag] ciflow/periodic/160424 -> ciflow/periodic/160424 2025-08-14T21:43:30.3626173Z * [new tag] ciflow/periodic/160538 -> ciflow/periodic/160538 2025-08-14T21:43:30.3626971Z * [new tag] ciflow/periodic/1febab2a89302464f6c7d69cfbef7a24c421ea65 -> ciflow/periodic/1febab2a89302464f6c7d69cfbef7a24c421ea65 2025-08-14T21:43:30.3627770Z * [new tag] ciflow/periodic/2a6d37d -> ciflow/periodic/2a6d37d 2025-08-14T21:43:30.3628548Z * [new tag] ciflow/periodic/2ee22e435131369a7e4f8cc4732579acc29a941b -> ciflow/periodic/2ee22e435131369a7e4f8cc4732579acc29a941b 2025-08-14T21:43:30.3629336Z * [new tag] ciflow/periodic/317eeb8 -> ciflow/periodic/317eeb8 2025-08-14T21:43:30.3629818Z * [new tag] ciflow/periodic/3c32 -> ciflow/periodic/3c32 2025-08-14T21:43:30.3630277Z * [new tag] ciflow/periodic/3e98831 -> ciflow/periodic/3e98831 2025-08-14T21:43:30.3970316Z * [new tag] ciflow/periodic/4a773e1e867f28a8ff0b15203e5cd9548f74fcee -> ciflow/periodic/4a773e1e867f28a8ff0b15203e5cd9548f74fcee 2025-08-14T21:43:30.3971661Z * [new tag] ciflow/periodic/5f5f508aa836a46dfe88857fb223049616b94e93 -> ciflow/periodic/5f5f508aa836a46dfe88857fb223049616b94e93 2025-08-14T21:43:30.3980367Z * [new tag] ciflow/periodic/94512-point -> ciflow/periodic/94512-point 2025-08-14T21:43:30.3995725Z * [new tag] ciflow/periodic/csl/test87519 -> ciflow/periodic/csl/test87519 2025-08-14T21:43:30.4010276Z * [new tag] ciflow/periodic/csltest88275 -> ciflow/periodic/csltest88275 2025-08-14T21:43:30.4024424Z * [new tag] ciflow/periodic/csltest88761 -> ciflow/periodic/csltest88761 2025-08-14T21:43:30.4045556Z * [new tag] ciflow/periodic/d7114f05b10de8e6de81ffc567d63944c3117d51 -> ciflow/periodic/d7114f05b10de8e6de81ffc567d63944c3117d51 2025-08-14T21:43:30.4047044Z * [new tag] ciflow/periodic/release_1.12 -> ciflow/periodic/release_1.12 2025-08-14T21:43:30.4047609Z * [new tag] ciflow/periodic/release_1.12.0 -> ciflow/periodic/release_1.12.0 2025-08-14T21:43:30.4048161Z * [new tag] ciflow/periodic/sha-ec5b83 -> ciflow/periodic/sha-ec5b83 2025-08-14T21:43:30.4048668Z * [new tag] ciflow/rocm-mi300/151360 -> ciflow/rocm-mi300/151360 2025-08-14T21:43:30.4049252Z * [new tag] ciflow/rocm-mi300/159158 -> ciflow/rocm-mi300/159158 2025-08-14T21:43:30.4049719Z * [new tag] ciflow/rocm-mi300/160073 -> ciflow/rocm-mi300/160073 2025-08-14T21:43:30.4050191Z * [new tag] ciflow/rocm-mi300/160468 -> ciflow/rocm-mi300/160468 2025-08-14T21:43:30.4050650Z * [new tag] ciflow/rocm-mi300/160538 -> ciflow/rocm-mi300/160538 2025-08-14T21:43:30.4053433Z * [new tag] ciflow/rocm-mi355/160215 -> ciflow/rocm-mi355/160215 2025-08-14T21:43:30.4053886Z * [new tag] ciflow/rocm/148492 -> ciflow/rocm/148492 2025-08-14T21:43:30.4054313Z * [new tag] ciflow/rocm/151360 -> ciflow/rocm/151360 2025-08-14T21:43:30.4054752Z * [new tag] ciflow/rocm/151845 -> ciflow/rocm/151845 2025-08-14T21:43:30.4055168Z * [new tag] ciflow/rocm/154864 -> ciflow/rocm/154864 2025-08-14T21:43:30.4055590Z * [new tag] ciflow/rocm/156491 -> ciflow/rocm/156491 2025-08-14T21:43:30.4056010Z * [new tag] ciflow/rocm/158219 -> ciflow/rocm/158219 2025-08-14T21:43:30.4056630Z * [new tag] ciflow/rocm/158220 -> ciflow/rocm/158220 2025-08-14T21:43:30.4057070Z * [new tag] ciflow/rocm/158224 -> ciflow/rocm/158224 2025-08-14T21:43:30.4057489Z * [new tag] ciflow/rocm/159158 -> ciflow/rocm/159158 2025-08-14T21:43:30.4060268Z * [new tag] ciflow/rocm/160215 -> ciflow/rocm/160215 2025-08-14T21:43:30.4060686Z * [new tag] ciflow/rocm/160468 -> ciflow/rocm/160468 2025-08-14T21:43:30.4061126Z * [new tag] ciflow/rocm/160538 -> ciflow/rocm/160538 2025-08-14T21:43:30.4061548Z * [new tag] ciflow/s390/143959 -> ciflow/s390/143959 2025-08-14T21:43:30.4061969Z * [new tag] ciflow/slow/01c7106 -> ciflow/slow/01c7106 2025-08-14T21:43:30.4062413Z * [new tag] ciflow/slow/0577043 -> ciflow/slow/0577043 2025-08-14T21:43:30.4063208Z * [new tag] ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym -> ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym 2025-08-14T21:43:30.4063998Z * [new tag] ciflow/slow/0e81104 -> ciflow/slow/0e81104 2025-08-14T21:43:30.4064444Z * [new tag] ciflow/slow/154595 -> ciflow/slow/154595 2025-08-14T21:43:30.4067132Z * [new tag] ciflow/slow/1732077 -> ciflow/slow/1732077 2025-08-14T21:43:30.4067568Z * [new tag] ciflow/slow/187eb7c -> ciflow/slow/187eb7c 2025-08-14T21:43:30.4068129Z * [new tag] ciflow/slow/1faef89 -> ciflow/slow/1faef89 2025-08-14T21:43:30.4068574Z * [new tag] ciflow/slow/3920ec1 -> ciflow/slow/3920ec1 2025-08-14T21:43:30.4069008Z * [new tag] ciflow/slow/3b7c6b2 -> ciflow/slow/3b7c6b2 2025-08-14T21:43:30.4069452Z * [new tag] ciflow/slow/59a3759 -> ciflow/slow/59a3759 2025-08-14T21:43:30.4069909Z * [new tag] ciflow/slow/70ef0bb -> ciflow/slow/70ef0bb 2025-08-14T21:43:30.4070336Z * [new tag] ciflow/slow/788ff06 -> ciflow/slow/788ff06 2025-08-14T21:43:30.4071089Z * [new tag] ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym -> ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym 2025-08-14T21:43:30.4071905Z * [new tag] ciflow/slow/9d85864 -> ciflow/slow/9d85864 2025-08-14T21:43:30.4072377Z * [new tag] ciflow/slow/9ffad5b -> ciflow/slow/9ffad5b 2025-08-14T21:43:30.4072823Z * [new tag] ciflow/slow/a206e8b -> ciflow/slow/a206e8b 2025-08-14T21:43:30.4073249Z * [new tag] ciflow/slow/a837609 -> ciflow/slow/a837609 2025-08-14T21:43:30.4337959Z * [new tag] ciflow/slow/af841f3 -> ciflow/slow/af841f3 2025-08-14T21:43:30.4338826Z * [new tag] ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym -> ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym 2025-08-14T21:43:30.4339684Z * [new tag] ciflow/trunk/131296 -> ciflow/trunk/131296 2025-08-14T21:43:30.4340126Z * [new tag] ciflow/trunk/137400 -> ciflow/trunk/137400 2025-08-14T21:43:30.4340552Z * [new tag] ciflow/trunk/138996 -> ciflow/trunk/138996 2025-08-14T21:43:30.4340992Z * [new tag] ciflow/trunk/139971 -> ciflow/trunk/139971 2025-08-14T21:43:30.4341429Z * [new tag] ciflow/trunk/147360 -> ciflow/trunk/147360 2025-08-14T21:43:30.4341850Z * [new tag] ciflow/trunk/147855 -> ciflow/trunk/147855 2025-08-14T21:43:30.4342275Z * [new tag] ciflow/trunk/148180 -> ciflow/trunk/148180 2025-08-14T21:43:30.4342694Z * [new tag] ciflow/trunk/148328 -> ciflow/trunk/148328 2025-08-14T21:43:30.4343122Z * [new tag] ciflow/trunk/148492 -> ciflow/trunk/148492 2025-08-14T21:43:30.4343711Z * [new tag] ciflow/trunk/150282 -> ciflow/trunk/150282 2025-08-14T21:43:30.4344154Z * [new tag] ciflow/trunk/150302 -> ciflow/trunk/150302 2025-08-14T21:43:30.4344583Z * [new tag] ciflow/trunk/151845 -> ciflow/trunk/151845 2025-08-14T21:43:30.4345003Z * [new tag] ciflow/trunk/152624 -> ciflow/trunk/152624 2025-08-14T21:43:30.4345440Z * [new tag] ciflow/trunk/154193 -> ciflow/trunk/154193 2025-08-14T21:43:30.4345862Z * [new tag] ciflow/trunk/154595 -> ciflow/trunk/154595 2025-08-14T21:43:30.4346291Z * [new tag] ciflow/trunk/154650 -> ciflow/trunk/154650 2025-08-14T21:43:30.4346718Z * [new tag] ciflow/trunk/154694 -> ciflow/trunk/154694 2025-08-14T21:43:30.4347141Z * [new tag] ciflow/trunk/155958 -> ciflow/trunk/155958 2025-08-14T21:43:30.4347574Z * [new tag] ciflow/trunk/156049 -> ciflow/trunk/156049 2025-08-14T21:43:30.4348147Z * [new tag] ciflow/trunk/156703 -> ciflow/trunk/156703 2025-08-14T21:43:30.4348582Z * [new tag] ciflow/trunk/156851 -> ciflow/trunk/156851 2025-08-14T21:43:30.4349001Z * [new tag] ciflow/trunk/157148 -> ciflow/trunk/157148 2025-08-14T21:43:30.4349432Z * [new tag] ciflow/trunk/157152 -> ciflow/trunk/157152 2025-08-14T21:43:30.4349978Z * [new tag] ciflow/trunk/157432 -> ciflow/trunk/157432 2025-08-14T21:43:30.4350409Z * [new tag] ciflow/trunk/157685 -> ciflow/trunk/157685 2025-08-14T21:43:30.4350842Z * [new tag] ciflow/trunk/157689 -> ciflow/trunk/157689 2025-08-14T21:43:30.4351268Z * [new tag] ciflow/trunk/157699 -> ciflow/trunk/157699 2025-08-14T21:43:30.4351709Z * [new tag] ciflow/trunk/157813 -> ciflow/trunk/157813 2025-08-14T21:43:30.4352144Z * [new tag] ciflow/trunk/157994 -> ciflow/trunk/157994 2025-08-14T21:43:30.4352568Z * [new tag] ciflow/trunk/158091 -> ciflow/trunk/158091 2025-08-14T21:43:30.4352992Z * [new tag] ciflow/trunk/158104 -> ciflow/trunk/158104 2025-08-14T21:43:30.4353534Z * [new tag] ciflow/trunk/158219 -> ciflow/trunk/158219 2025-08-14T21:43:30.4353967Z * [new tag] ciflow/trunk/158220 -> ciflow/trunk/158220 2025-08-14T21:43:30.4354388Z * [new tag] ciflow/trunk/158224 -> ciflow/trunk/158224 2025-08-14T21:43:30.4354817Z * [new tag] ciflow/trunk/158529 -> ciflow/trunk/158529 2025-08-14T21:43:30.4355247Z * [new tag] ciflow/trunk/158647 -> ciflow/trunk/158647 2025-08-14T21:43:30.4355669Z * [new tag] ciflow/trunk/158810 -> ciflow/trunk/158810 2025-08-14T21:43:30.4356097Z * [new tag] ciflow/trunk/158812 -> ciflow/trunk/158812 2025-08-14T21:43:30.4356519Z * [new tag] ciflow/trunk/158863 -> ciflow/trunk/158863 2025-08-14T21:43:30.4356959Z * [new tag] ciflow/trunk/158864 -> ciflow/trunk/158864 2025-08-14T21:43:30.4357395Z * [new tag] ciflow/trunk/158883 -> ciflow/trunk/158883 2025-08-14T21:43:30.4357821Z * [new tag] ciflow/trunk/158914 -> ciflow/trunk/158914 2025-08-14T21:43:30.4358250Z * [new tag] ciflow/trunk/158965 -> ciflow/trunk/158965 2025-08-14T21:43:30.4358668Z * [new tag] ciflow/trunk/158987 -> ciflow/trunk/158987 2025-08-14T21:43:30.4359090Z * [new tag] ciflow/trunk/159033 -> ciflow/trunk/159033 2025-08-14T21:43:30.4359513Z * [new tag] ciflow/trunk/159140 -> ciflow/trunk/159140 2025-08-14T21:43:30.4360152Z * [new tag] ciflow/trunk/159158 -> ciflow/trunk/159158 2025-08-14T21:43:30.4360605Z * [new tag] ciflow/trunk/159553 -> ciflow/trunk/159553 2025-08-14T21:43:30.4361030Z * [new tag] ciflow/trunk/159562 -> ciflow/trunk/159562 2025-08-14T21:43:30.4721382Z * [new tag] ciflow/trunk/159682 -> ciflow/trunk/159682 2025-08-14T21:43:30.4721913Z * [new tag] ciflow/trunk/159691 -> ciflow/trunk/159691 2025-08-14T21:43:30.4722377Z * [new tag] ciflow/trunk/159842 -> ciflow/trunk/159842 2025-08-14T21:43:30.4722813Z * [new tag] ciflow/trunk/159889 -> ciflow/trunk/159889 2025-08-14T21:43:30.4723237Z * [new tag] ciflow/trunk/159923 -> ciflow/trunk/159923 2025-08-14T21:43:30.4723666Z * [new tag] ciflow/trunk/160004 -> ciflow/trunk/160004 2025-08-14T21:43:30.4724104Z * [new tag] ciflow/trunk/160113 -> ciflow/trunk/160113 2025-08-14T21:43:30.4724524Z * [new tag] ciflow/trunk/160161 -> ciflow/trunk/160161 2025-08-14T21:43:30.4724951Z * [new tag] ciflow/trunk/160168 -> ciflow/trunk/160168 2025-08-14T21:43:30.4725464Z * [new tag] ciflow/trunk/160181 -> ciflow/trunk/160181 2025-08-14T21:43:30.4725899Z * [new tag] ciflow/trunk/160183 -> ciflow/trunk/160183 2025-08-14T21:43:30.4726510Z * [new tag] ciflow/trunk/160190 -> ciflow/trunk/160190 2025-08-14T21:43:30.4727024Z * [new tag] ciflow/trunk/160198 -> ciflow/trunk/160198 2025-08-14T21:43:30.4727484Z * [new tag] ciflow/trunk/160205 -> ciflow/trunk/160205 2025-08-14T21:43:30.4727899Z * [new tag] ciflow/trunk/160219 -> ciflow/trunk/160219 2025-08-14T21:43:30.4728326Z * [new tag] ciflow/trunk/160224 -> ciflow/trunk/160224 2025-08-14T21:43:30.4728754Z * [new tag] ciflow/trunk/160250 -> ciflow/trunk/160250 2025-08-14T21:43:30.4729191Z * [new tag] ciflow/trunk/160253 -> ciflow/trunk/160253 2025-08-14T21:43:30.4729621Z * [new tag] ciflow/trunk/160335 -> ciflow/trunk/160335 2025-08-14T21:43:30.4730045Z * [new tag] ciflow/trunk/160338 -> ciflow/trunk/160338 2025-08-14T21:43:30.4730481Z * [new tag] ciflow/trunk/160383 -> ciflow/trunk/160383 2025-08-14T21:43:30.4730904Z * [new tag] ciflow/trunk/160401 -> ciflow/trunk/160401 2025-08-14T21:43:30.4731330Z * [new tag] ciflow/trunk/160403 -> ciflow/trunk/160403 2025-08-14T21:43:30.4731755Z * [new tag] ciflow/trunk/160430 -> ciflow/trunk/160430 2025-08-14T21:43:30.4732180Z * [new tag] ciflow/trunk/160431 -> ciflow/trunk/160431 2025-08-14T21:43:30.4732612Z * [new tag] ciflow/trunk/160439 -> ciflow/trunk/160439 2025-08-14T21:43:30.4733035Z * [new tag] ciflow/trunk/160449 -> ciflow/trunk/160449 2025-08-14T21:43:30.4733472Z * [new tag] ciflow/trunk/160454 -> ciflow/trunk/160454 2025-08-14T21:43:30.4733892Z * [new tag] ciflow/trunk/160455 -> ciflow/trunk/160455 2025-08-14T21:43:30.4734328Z * [new tag] ciflow/trunk/160468 -> ciflow/trunk/160468 2025-08-14T21:43:30.4734831Z * [new tag] ciflow/trunk/160481 -> ciflow/trunk/160481 2025-08-14T21:43:30.4735263Z * [new tag] ciflow/trunk/160485 -> ciflow/trunk/160485 2025-08-14T21:43:30.4735691Z * [new tag] ciflow/trunk/160519 -> ciflow/trunk/160519 2025-08-14T21:43:30.4736112Z * [new tag] ciflow/trunk/160527 -> ciflow/trunk/160527 2025-08-14T21:43:30.4736692Z * [new tag] ciflow/trunk/160552 -> ciflow/trunk/160552 2025-08-14T21:43:30.4737119Z * [new tag] ciflow/trunk/160560 -> ciflow/trunk/160560 2025-08-14T21:43:30.4737558Z * [new tag] ciflow/trunk/160578 -> ciflow/trunk/160578 2025-08-14T21:43:30.4738157Z * [new tag] ciflow/trunk/160589 -> ciflow/trunk/160589 2025-08-14T21:43:30.4738585Z * [new tag] ciflow/trunk/160592 -> ciflow/trunk/160592 2025-08-14T21:43:30.4739025Z * [new tag] ciflow/trunk/160649 -> ciflow/trunk/160649 2025-08-14T21:43:30.4739448Z * [new tag] ciflow/trunk/160656 -> ciflow/trunk/160656 2025-08-14T21:43:30.4739950Z * [new tag] ciflow/trunk/160672 -> ciflow/trunk/160672 2025-08-14T21:43:30.4740464Z * [new tag] ciflow/trunk/160675 -> ciflow/trunk/160675 2025-08-14T21:43:30.4740900Z * [new tag] ciflow/unstable/123 -> ciflow/unstable/123 2025-08-14T21:43:30.4741340Z * [new tag] ciflow/vllm/160116 -> ciflow/vllm/160116 2025-08-14T21:43:30.4741760Z * [new tag] ciflow/vllm/160583 -> ciflow/vllm/160583 2025-08-14T21:43:30.4742211Z * [new tag] ciflow/vllm/160619 -> ciflow/vllm/160619 2025-08-14T21:43:30.4742628Z * [new tag] ciflow/vllm/160625 -> ciflow/vllm/160625 2025-08-14T21:43:30.4743200Z * [new tag] ciflow/vllm/160627 -> ciflow/vllm/160627 2025-08-14T21:43:30.4743659Z * [new tag] ciflow/win-arm64/156049 -> ciflow/win-arm64/156049 2025-08-14T21:43:30.4744115Z * [new tag] ciflow/win-arm64/158104 -> ciflow/win-arm64/158104 2025-08-14T21:43:30.6649924Z * [new tag] ciflow/win-arm64/159553 -> ciflow/win-arm64/159553 2025-08-14T21:43:30.6650459Z * [new tag] ciflow/win-arm64/159562 -> ciflow/win-arm64/159562 2025-08-14T21:43:30.6650954Z * [new tag] ciflow/win-arm64/159777 -> ciflow/win-arm64/159777 2025-08-14T21:43:30.6651419Z * [new tag] ciflow/win-arm64/159780 -> ciflow/win-arm64/159780 2025-08-14T21:43:30.6651868Z * [new tag] ciflow/win-arm64/159842 -> ciflow/win-arm64/159842 2025-08-14T21:43:30.6652321Z * [new tag] ciflow/win-arm64/160250 -> ciflow/win-arm64/160250 2025-08-14T21:43:30.6652780Z * [new tag] ciflow/win-arm64/160253 -> ciflow/win-arm64/160253 2025-08-14T21:43:30.6653240Z * [new tag] ciflow/win-arm64/160454 -> ciflow/win-arm64/160454 2025-08-14T21:43:30.6653700Z * [new tag] ciflow/win-arm64/160560 -> ciflow/win-arm64/160560 2025-08-14T21:43:30.6654142Z * [new tag] ciflow/xpu/138996 -> ciflow/xpu/138996 2025-08-14T21:43:30.6654579Z * [new tag] ciflow/xpu/139971 -> ciflow/xpu/139971 2025-08-14T21:43:30.6655000Z * [new tag] ciflow/xpu/140972 -> ciflow/xpu/140972 2025-08-14T21:43:30.6655416Z * [new tag] ciflow/xpu/143553 -> ciflow/xpu/143553 2025-08-14T21:43:30.6663162Z * [new tag] ciflow/xpu/156272 -> ciflow/xpu/156272 2025-08-14T21:43:30.6663747Z * [new tag] ciflow/xpu/156812 -> ciflow/xpu/156812 2025-08-14T21:43:30.6664215Z * [new tag] ciflow/xpu/157699 -> ciflow/xpu/157699 2025-08-14T21:43:30.6664632Z * [new tag] ciflow/xpu/157994 -> ciflow/xpu/157994 2025-08-14T21:43:30.6665056Z * [new tag] ciflow/xpu/158336 -> ciflow/xpu/158336 2025-08-14T21:43:30.6665483Z * [new tag] ciflow/xpu/158733 -> ciflow/xpu/158733 2025-08-14T21:43:30.6665890Z * [new tag] ciflow/xpu/159033 -> ciflow/xpu/159033 2025-08-14T21:43:30.6666540Z * [new tag] ciflow/xpu/159118 -> ciflow/xpu/159118 2025-08-14T21:43:30.6666979Z * [new tag] ciflow/xpu/159140 -> ciflow/xpu/159140 2025-08-14T21:43:30.6667406Z * [new tag] ciflow/xpu/159241 -> ciflow/xpu/159241 2025-08-14T21:43:30.6667826Z * [new tag] ciflow/xpu/159473 -> ciflow/xpu/159473 2025-08-14T21:43:30.6668240Z * [new tag] ciflow/xpu/159474 -> ciflow/xpu/159474 2025-08-14T21:43:30.6668675Z * [new tag] ciflow/xpu/159553 -> ciflow/xpu/159553 2025-08-14T21:43:30.6669086Z * [new tag] ciflow/xpu/159944 -> ciflow/xpu/159944 2025-08-14T21:43:30.6669507Z * [new tag] ciflow/xpu/160062 -> ciflow/xpu/160062 2025-08-14T21:43:30.6669930Z * [new tag] ciflow/xpu/160067 -> ciflow/xpu/160067 2025-08-14T21:43:30.6670344Z * [new tag] ciflow/xpu/160158 -> ciflow/xpu/160158 2025-08-14T21:43:30.6670768Z * [new tag] ciflow/xpu/160173 -> ciflow/xpu/160173 2025-08-14T21:43:30.6671182Z * [new tag] ciflow/xpu/160183 -> ciflow/xpu/160183 2025-08-14T21:43:30.6671602Z * [new tag] ciflow/xpu/160301 -> ciflow/xpu/160301 2025-08-14T21:43:30.6672021Z * [new tag] ciflow/xpu/160403 -> ciflow/xpu/160403 2025-08-14T21:43:30.6672569Z * [new tag] ciflow/xpu/160606 -> ciflow/xpu/160606 2025-08-14T21:43:30.6672984Z * [new tag] cslpull75 -> cslpull75 2025-08-14T21:43:30.6673365Z * [new tag] cslpull76 -> cslpull76 2025-08-14T21:43:30.6673756Z * [new tag] cslpull77 -> cslpull77 2025-08-14T21:43:30.6674134Z * [new tag] cslpull78 -> cslpull78 2025-08-14T21:43:30.6674515Z * [new tag] cslpull79 -> cslpull79 2025-08-14T21:43:30.6674904Z * [new tag] cslpull80 -> cslpull80 2025-08-14T21:43:30.6675276Z * [new tag] cslpull81 -> cslpull81 2025-08-14T21:43:30.6675660Z * [new tag] cslpull82 -> cslpull82 2025-08-14T21:43:30.6676037Z * [new tag] cslpull83 -> cslpull83 2025-08-14T21:43:30.6676423Z * [new tag] cslpull84 -> cslpull84 2025-08-14T21:43:30.6676800Z * [new tag] cslpull85 -> cslpull85 2025-08-14T21:43:30.6677197Z * [new tag] cslpull86 -> cslpull86 2025-08-14T21:43:30.6677589Z * [new tag] cslpull87 -> cslpull87 2025-08-14T21:43:30.6677965Z * [new tag] cslpull88 -> cslpull88 2025-08-14T21:43:30.6678355Z * [new tag] cslpull89 -> cslpull89 2025-08-14T21:43:30.6678734Z * [new tag] cslpull90 -> cslpull90 2025-08-14T21:43:30.6679126Z * [new tag] cslpull91 -> cslpull91 2025-08-14T21:43:30.6679500Z * [new tag] cslpull92 -> cslpull92 2025-08-14T21:43:30.6918030Z * [new tag] flight_5 -> flight_5 2025-08-14T21:43:30.6918476Z * [new tag] flight_5.1 -> flight_5.1 2025-08-14T21:43:30.6918890Z * [new tag] flight_5.2 -> flight_5.2 2025-08-14T21:43:30.6919291Z * [new tag] flight_5.3 -> flight_5.3 2025-08-14T21:43:30.6919711Z * [new tag] forpull1 -> forpull1 2025-08-14T21:43:30.6920121Z * [new tag] malfet/tag-2ef5611 -> malfet/tag-2ef5611 2025-08-14T21:43:30.6920569Z * [new tag] malfet/tag-317b1a0 -> malfet/tag-317b1a0 2025-08-14T21:43:30.6921201Z * [new tag] malfet/tag-ec6f767 -> malfet/tag-ec6f767 2025-08-14T21:43:30.6923317Z * [new tag] nightly-binary -> nightly-binary 2025-08-14T21:43:30.6923757Z * [new tag] sqzhang_flight4_plus -> sqzhang_flight4_plus 2025-08-14T21:43:30.6924208Z * [new tag] sqzhang_flight_3 -> sqzhang_flight_3 2025-08-14T21:43:30.6924861Z * [new tag] trunk/01584d2a7d029c9749eb73678cf1dc313cc35df6 -> trunk/01584d2a7d029c9749eb73678cf1dc313cc35df6 2025-08-14T21:43:30.6925730Z * [new tag] trunk/017259f9c65b6fad55fb9597d7077e2543eaae46 -> trunk/017259f9c65b6fad55fb9597d7077e2543eaae46 2025-08-14T21:43:30.6926608Z * [new tag] trunk/01bcf9a40dea937637d2cdd530bed2652510943d -> trunk/01bcf9a40dea937637d2cdd530bed2652510943d 2025-08-14T21:43:30.6927468Z * [new tag] trunk/01f66d08d93365015f4af005a252f439c4d4013a -> trunk/01f66d08d93365015f4af005a252f439c4d4013a 2025-08-14T21:43:30.6929955Z * [new tag] trunk/03b254e49f2d4c092e6ca712e5702cf2895aa47e -> trunk/03b254e49f2d4c092e6ca712e5702cf2895aa47e 2025-08-14T21:43:30.6930823Z * [new tag] trunk/05029ad1c30865d3f7e7fd13384db9d826e563eb -> trunk/05029ad1c30865d3f7e7fd13384db9d826e563eb 2025-08-14T21:43:30.6931681Z * [new tag] trunk/05c19d1acecc01b0d2512364183058a6885b9869 -> trunk/05c19d1acecc01b0d2512364183058a6885b9869 2025-08-14T21:43:30.6932696Z * [new tag] trunk/05c417715f791875fbf28cfc3fc86142de1a3206 -> trunk/05c417715f791875fbf28cfc3fc86142de1a3206 2025-08-14T21:43:30.6933548Z * [new tag] trunk/06824f3c7268bb807a422b663047cd0900ddd126 -> trunk/06824f3c7268bb807a422b663047cd0900ddd126 2025-08-14T21:43:30.6936027Z * [new tag] trunk/077cb389746a7d61cfc018aad2ba29a8aa195610 -> trunk/077cb389746a7d61cfc018aad2ba29a8aa195610 2025-08-14T21:43:30.6936922Z * [new tag] trunk/089c4a1ba007ed4abb3e5e0eafd97b7584566057 -> trunk/089c4a1ba007ed4abb3e5e0eafd97b7584566057 2025-08-14T21:43:30.6937961Z * [new tag] trunk/09381f5dacda7bbbfa361f5df76bde5cd309adc1 -> trunk/09381f5dacda7bbbfa361f5df76bde5cd309adc1 2025-08-14T21:43:30.6938864Z * [new tag] trunk/0bd3af4fb87445f4de3a1f9b823e399c8b3cefde -> trunk/0bd3af4fb87445f4de3a1f9b823e399c8b3cefde 2025-08-14T21:43:30.6939819Z * [new tag] trunk/0d3461bac0fb5177e35152d980b301ea3a0aa2c4 -> trunk/0d3461bac0fb5177e35152d980b301ea3a0aa2c4 2025-08-14T21:43:30.6942302Z * [new tag] trunk/0d40ff3b496e68193bc16d5391fa2e3623709f81 -> trunk/0d40ff3b496e68193bc16d5391fa2e3623709f81 2025-08-14T21:43:30.6943174Z * [new tag] trunk/0d71ca2c46753bb268bfdcf815c14415c122a289 -> trunk/0d71ca2c46753bb268bfdcf815c14415c122a289 2025-08-14T21:43:30.6944049Z * [new tag] trunk/0d88593dd826544c9e7bd4aa615ef86847a78d2b -> trunk/0d88593dd826544c9e7bd4aa615ef86847a78d2b 2025-08-14T21:43:30.6944916Z * [new tag] trunk/0e3e377bd5126cfcc69d70c4d77b352d3404cc11 -> trunk/0e3e377bd5126cfcc69d70c4d77b352d3404cc11 2025-08-14T21:43:30.6945801Z * [new tag] trunk/0f3b10b8eebe68e3c75d473d499b87dfe14a2eca -> trunk/0f3b10b8eebe68e3c75d473d499b87dfe14a2eca 2025-08-14T21:43:30.6948271Z * [new tag] trunk/101276f81b4d2a8c31bfd6796b986d4c1bfdf483 -> trunk/101276f81b4d2a8c31bfd6796b986d4c1bfdf483 2025-08-14T21:43:30.6949145Z * [new tag] trunk/1028c5e2d50e121865bf98307e7c035f549a24b2 -> trunk/1028c5e2d50e121865bf98307e7c035f549a24b2 2025-08-14T21:43:30.6950004Z * [new tag] trunk/10bc36fe840cb3510fab84d2ea22663b76702f1e -> trunk/10bc36fe840cb3510fab84d2ea22663b76702f1e 2025-08-14T21:43:30.6950866Z * [new tag] trunk/10e3514c962b58cbbee994257872a626ff76d51b -> trunk/10e3514c962b58cbbee994257872a626ff76d51b 2025-08-14T21:43:30.6951873Z * [new tag] trunk/1128f4c2a822cbe34a9d966306af15097179ffe1 -> trunk/1128f4c2a822cbe34a9d966306af15097179ffe1 2025-08-14T21:43:30.6953849Z * [new tag] trunk/114a6c40434bfb9cfa5abc30e9e34d81300d743e -> trunk/114a6c40434bfb9cfa5abc30e9e34d81300d743e 2025-08-14T21:43:30.6955273Z * [new tag] trunk/118bc97b14c24ac88a4b0c0750a9e7bf93154c76 -> trunk/118bc97b14c24ac88a4b0c0750a9e7bf93154c76 2025-08-14T21:43:30.7179131Z * [new tag] trunk/1196bb1c2e4d5a7edc09f2260e3034132f0c6c91 -> trunk/1196bb1c2e4d5a7edc09f2260e3034132f0c6c91 2025-08-14T21:43:30.7180140Z * [new tag] trunk/11a3565f1872bbad9c253a127e8d4ce7a1b40ec8 -> trunk/11a3565f1872bbad9c253a127e8d4ce7a1b40ec8 2025-08-14T21:43:30.7181022Z * [new tag] trunk/15e49f61643e4c0eef420f0981609709ef55b848 -> trunk/15e49f61643e4c0eef420f0981609709ef55b848 2025-08-14T21:43:30.7181893Z * [new tag] trunk/16d15445f8bd8740095b23de4af89d757af793ca -> trunk/16d15445f8bd8740095b23de4af89d757af793ca 2025-08-14T21:43:30.7182756Z * [new tag] trunk/178515d0ff6833c8e9221482b2a650ab31e00019 -> trunk/178515d0ff6833c8e9221482b2a650ab31e00019 2025-08-14T21:43:30.7183642Z * [new tag] trunk/182efe31dbe43376e7eef7338356aaf94d5bcabe -> trunk/182efe31dbe43376e7eef7338356aaf94d5bcabe 2025-08-14T21:43:30.7184542Z * [new tag] trunk/194fcfcfbdad0add1a1b695321e31a576058f4cf -> trunk/194fcfcfbdad0add1a1b695321e31a576058f4cf 2025-08-14T21:43:30.7185639Z * [new tag] trunk/195b5c2e27eb8f21cbc8ad1e90f42db5a8cfccca -> trunk/195b5c2e27eb8f21cbc8ad1e90f42db5a8cfccca 2025-08-14T21:43:30.7186539Z * [new tag] trunk/198b5fd2d47fa3d5110ceba6827a3b18e0064014 -> trunk/198b5fd2d47fa3d5110ceba6827a3b18e0064014 2025-08-14T21:43:30.7187414Z * [new tag] trunk/199e9abb6a366bbd27c39d1da7c3123b4eea9b5a -> trunk/199e9abb6a366bbd27c39d1da7c3123b4eea9b5a 2025-08-14T21:43:30.7190002Z * [new tag] trunk/19b4283884b2d9b3a0eb364da10b1540d14ab7a7 -> trunk/19b4283884b2d9b3a0eb364da10b1540d14ab7a7 2025-08-14T21:43:30.7190880Z * [new tag] trunk/1c2587119152cec3905647a47c65d3d26619c5a8 -> trunk/1c2587119152cec3905647a47c65d3d26619c5a8 2025-08-14T21:43:30.7191725Z * [new tag] trunk/1c26c53851c212a7c90a325549a72f0571613a8c -> trunk/1c26c53851c212a7c90a325549a72f0571613a8c 2025-08-14T21:43:30.7192606Z * [new tag] trunk/1c2cba17eab2b09d87142883da2bdbdbcf018613 -> trunk/1c2cba17eab2b09d87142883da2bdbdbcf018613 2025-08-14T21:43:30.7193499Z * [new tag] trunk/1d80d697a269234b47ec7ede192faf3bb9b159e3 -> trunk/1d80d697a269234b47ec7ede192faf3bb9b159e3 2025-08-14T21:43:30.7194373Z * [new tag] trunk/1ea688f9a2602fbcde32c0302b822526ca4219dc -> trunk/1ea688f9a2602fbcde32c0302b822526ca4219dc 2025-08-14T21:43:30.7195248Z * [new tag] trunk/1f4057c11ac941fb324386ca594d0a6882185aad -> trunk/1f4057c11ac941fb324386ca594d0a6882185aad 2025-08-14T21:43:30.7196109Z * [new tag] trunk/1fc683cf17c8c673044538d10266c00f92987be2 -> trunk/1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:43:30.7196991Z * [new tag] trunk/1febab2a89302464f6c7d69cfbef7a24c421ea65 -> trunk/1febab2a89302464f6c7d69cfbef7a24c421ea65 2025-08-14T21:43:30.7197865Z * [new tag] trunk/206c1eef6571f906c2792d899a09136b3fce9673 -> trunk/206c1eef6571f906c2792d899a09136b3fce9673 2025-08-14T21:43:30.7198736Z * [new tag] trunk/20bdabbb3c5d6b118a94b2e045c777662563d5bb -> trunk/20bdabbb3c5d6b118a94b2e045c777662563d5bb 2025-08-14T21:43:30.7199606Z * [new tag] trunk/21392c0e06ac2b2621950455975ca6332f0bf641 -> trunk/21392c0e06ac2b2621950455975ca6332f0bf641 2025-08-14T21:43:30.7200442Z * [new tag] trunk/2247aa6d1d43e256255f5c74a781c3190a4387b6 -> trunk/2247aa6d1d43e256255f5c74a781c3190a4387b6 2025-08-14T21:43:30.7201306Z * [new tag] trunk/2259dbed4e0d3f2a8174b5847fd0741aed42451d -> trunk/2259dbed4e0d3f2a8174b5847fd0741aed42451d 2025-08-14T21:43:30.7202300Z * [new tag] trunk/231c72240d80091f099c95e326d3600cba866eee -> trunk/231c72240d80091f099c95e326d3600cba866eee 2025-08-14T21:43:30.7203147Z * [new tag] trunk/24257f5bfaa37795f74d9f64c1b43584128d4b8c -> trunk/24257f5bfaa37795f74d9f64c1b43584128d4b8c 2025-08-14T21:43:30.7204038Z * [new tag] trunk/24f43d0da7ad9c6e95a09a2fee610387728cc1cd -> trunk/24f43d0da7ad9c6e95a09a2fee610387728cc1cd 2025-08-14T21:43:30.7204933Z * [new tag] trunk/2898d3f965e5cd9d02fc2ecdab7c580fd457fea9 -> trunk/2898d3f965e5cd9d02fc2ecdab7c580fd457fea9 2025-08-14T21:43:30.7205798Z * [new tag] trunk/28ccc9e7247798980fe00a11bcd64a8016b5f227 -> trunk/28ccc9e7247798980fe00a11bcd64a8016b5f227 2025-08-14T21:43:30.7206665Z * [new tag] trunk/29712314dd5cf500a8ea3d1c69483a3cb768ca72 -> trunk/29712314dd5cf500a8ea3d1c69483a3cb768ca72 2025-08-14T21:43:30.7207533Z * [new tag] trunk/29d20d49f0b7f4e362e1cefdcdc4b5659969312c -> trunk/29d20d49f0b7f4e362e1cefdcdc4b5659969312c 2025-08-14T21:43:30.7208422Z * [new tag] trunk/2c5e10a5fceb208b11c3d569ae02e348b5893b31 -> trunk/2c5e10a5fceb208b11c3d569ae02e348b5893b31 2025-08-14T21:43:30.7209320Z * [new tag] trunk/2d0cdee394bccadcd0abe19dd4623ed978a331ad -> trunk/2d0cdee394bccadcd0abe19dd4623ed978a331ad 2025-08-14T21:43:30.7417403Z * [new tag] trunk/2e4e5ab4be9e0aeffd9c49b5b2f9f820bd0895b1 -> trunk/2e4e5ab4be9e0aeffd9c49b5b2f9f820bd0895b1 2025-08-14T21:43:30.7420273Z * [new tag] trunk/2ea40fba841b3af8103f332ba62e54f350ba9a51 -> trunk/2ea40fba841b3af8103f332ba62e54f350ba9a51 2025-08-14T21:43:30.7422859Z * [new tag] trunk/2ee22e435131369a7e4f8cc4732579acc29a941b -> trunk/2ee22e435131369a7e4f8cc4732579acc29a941b 2025-08-14T21:43:30.7424944Z * [new tag] trunk/2f4c2226175512af787725c4d5ad7313c60d4db1 -> trunk/2f4c2226175512af787725c4d5ad7313c60d4db1 2025-08-14T21:43:30.7426216Z * [new tag] trunk/3008d985a8fc155eb89374afff50cb33a6bd10d5 -> trunk/3008d985a8fc155eb89374afff50cb33a6bd10d5 2025-08-14T21:43:30.7427088Z * [new tag] trunk/3028fa6ce9d9c96671722ab8213a1a30670d7cf2 -> trunk/3028fa6ce9d9c96671722ab8213a1a30670d7cf2 2025-08-14T21:43:30.7427942Z * [new tag] trunk/303c614f3df95ae2b659c5f6c1838b14e4776ce6 -> trunk/303c614f3df95ae2b659c5f6c1838b14e4776ce6 2025-08-14T21:43:30.7430489Z * [new tag] trunk/305fa2239365ad17ac9c534a68bba8a149c42d67 -> trunk/305fa2239365ad17ac9c534a68bba8a149c42d67 2025-08-14T21:43:30.7431366Z * [new tag] trunk/31c9ac4319c0cc2ed8c6be701c6ccf73f6cb4706 -> trunk/31c9ac4319c0cc2ed8c6be701c6ccf73f6cb4706 2025-08-14T21:43:30.7432249Z * [new tag] trunk/32099961d588fc19ead8afe805d6b5108de75669 -> trunk/32099961d588fc19ead8afe805d6b5108de75669 2025-08-14T21:43:30.7433126Z * [new tag] trunk/32e5e2f596d55bb9441d5d53f3c58bcb55828047 -> trunk/32e5e2f596d55bb9441d5d53f3c58bcb55828047 2025-08-14T21:43:30.7433977Z * [new tag] trunk/334b38ccc4427b1d14981c48a3a0b92180d58225 -> trunk/334b38ccc4427b1d14981c48a3a0b92180d58225 2025-08-14T21:43:30.7436450Z * [new tag] trunk/334ecbd4ffe11858cae7d23d1190ddb4777c2513 -> trunk/334ecbd4ffe11858cae7d23d1190ddb4777c2513 2025-08-14T21:43:30.7437306Z * [new tag] trunk/33d94018668951611b318b7515ae96f04e48eac0 -> trunk/33d94018668951611b318b7515ae96f04e48eac0 2025-08-14T21:43:30.7438166Z * [new tag] trunk/34358f335d95213d96b6cca6a83e7bf3af6a9fcb -> trunk/34358f335d95213d96b6cca6a83e7bf3af6a9fcb 2025-08-14T21:43:30.7439045Z * [new tag] trunk/34ec5ed275f8aa875c80daa97b3e82af0b06f673 -> trunk/34ec5ed275f8aa875c80daa97b3e82af0b06f673 2025-08-14T21:43:30.7439902Z * [new tag] trunk/355462e1278d818deb9ef4a184073d5b66074816 -> trunk/355462e1278d818deb9ef4a184073d5b66074816 2025-08-14T21:43:30.7442531Z * [new tag] trunk/3626ba711b34397d1fbf0a9b1979f85cbf68b919 -> trunk/3626ba711b34397d1fbf0a9b1979f85cbf68b919 2025-08-14T21:43:30.7443418Z * [new tag] trunk/36f46d082a4954921cb8493223f000f2aab79ed7 -> trunk/36f46d082a4954921cb8493223f000f2aab79ed7 2025-08-14T21:43:30.7444269Z * [new tag] trunk/39aa3d1471549b7829c207d634dfdc1d26e346a2 -> trunk/39aa3d1471549b7829c207d634dfdc1d26e346a2 2025-08-14T21:43:30.7445137Z * [new tag] trunk/3a562374401113187ce2566b87e3f1d87d7c53aa -> trunk/3a562374401113187ce2566b87e3f1d87d7c53aa 2025-08-14T21:43:30.7446000Z * [new tag] trunk/3ac86e728dfaa7383ff7f865e9e7d33486188dae -> trunk/3ac86e728dfaa7383ff7f865e9e7d33486188dae 2025-08-14T21:43:30.7447843Z * [new tag] trunk/3be70dc30e893b552fc0f23ca06cd8f7949b6d08 -> trunk/3be70dc30e893b552fc0f23ca06cd8f7949b6d08 2025-08-14T21:43:30.7449407Z * [new tag] trunk/3cec82a7e9aea040a34dd7a2587ae6d3bd65dba0 -> trunk/3cec82a7e9aea040a34dd7a2587ae6d3bd65dba0 2025-08-14T21:43:30.7450304Z * [new tag] trunk/3cf7b4024ef83e44e9ae223dbff7c7ab68240cb2 -> trunk/3cf7b4024ef83e44e9ae223dbff7c7ab68240cb2 2025-08-14T21:43:30.7451195Z * [new tag] trunk/3ef2e1ef769582a82c6ddf150e9d11bf4bf1c44f -> trunk/3ef2e1ef769582a82c6ddf150e9d11bf4bf1c44f 2025-08-14T21:43:30.7452075Z * [new tag] trunk/3f1636ebef9b45e8a3cb0eb20d327ee6acb74be0 -> trunk/3f1636ebef9b45e8a3cb0eb20d327ee6acb74be0 2025-08-14T21:43:30.7454017Z * [new tag] trunk/3faee0a6318afcbbbb48687009a459214910d820 -> trunk/3faee0a6318afcbbbb48687009a459214910d820 2025-08-14T21:43:30.7455572Z * [new tag] trunk/3fcd79e023da7156ac584992ebab29205d3b7881 -> trunk/3fcd79e023da7156ac584992ebab29205d3b7881 2025-08-14T21:43:30.7456447Z * [new tag] trunk/3fe19a7a0af3f4d692af30476c320be18c7e8ae6 -> trunk/3fe19a7a0af3f4d692af30476c320be18c7e8ae6 2025-08-14T21:43:30.7457329Z * [new tag] trunk/41673110cd7c5960824cc74a6fcaeda1a8bc7a23 -> trunk/41673110cd7c5960824cc74a6fcaeda1a8bc7a23 2025-08-14T21:43:30.7458195Z * [new tag] trunk/4183d4ff3dcc1d87400326a9a7998c3f9e966f60 -> trunk/4183d4ff3dcc1d87400326a9a7998c3f9e966f60 2025-08-14T21:43:30.7660650Z * [new tag] trunk/422bd6808bb98cbbac31d157d9c82ad11ba9732d -> trunk/422bd6808bb98cbbac31d157d9c82ad11ba9732d 2025-08-14T21:43:30.7661618Z * [new tag] trunk/42e51cd4b3973a053fcfa80878a3f346fd158e9f -> trunk/42e51cd4b3973a053fcfa80878a3f346fd158e9f 2025-08-14T21:43:30.7662492Z * [new tag] trunk/4416433c7c625127b7f975c92f8ec98ea4c67fd3 -> trunk/4416433c7c625127b7f975c92f8ec98ea4c67fd3 2025-08-14T21:43:30.7663343Z * [new tag] trunk/45ba7ecda876685b083cbbe932450560c566826b -> trunk/45ba7ecda876685b083cbbe932450560c566826b 2025-08-14T21:43:30.7664230Z * [new tag] trunk/47a1db823dfcdacdb99f317428fc3791a18c5812 -> trunk/47a1db823dfcdacdb99f317428fc3791a18c5812 2025-08-14T21:43:30.7665109Z * [new tag] trunk/4a773e1e867f28a8ff0b15203e5cd9548f74fcee -> trunk/4a773e1e867f28a8ff0b15203e5cd9548f74fcee 2025-08-14T21:43:30.7665984Z * [new tag] trunk/4a90dc0c1f68d1f98832b169f792ed1bb195a0f3 -> trunk/4a90dc0c1f68d1f98832b169f792ed1bb195a0f3 2025-08-14T21:43:30.7666882Z * [new tag] trunk/4cde0acc0e4e795e1a12cbdd9b93c8c04c1fa05d -> trunk/4cde0acc0e4e795e1a12cbdd9b93c8c04c1fa05d 2025-08-14T21:43:30.7667756Z * [new tag] trunk/4d419a74610c32b1372f8802dcc61893740a23cf -> trunk/4d419a74610c32b1372f8802dcc61893740a23cf 2025-08-14T21:43:30.7668625Z * [new tag] trunk/4d5b3f2d5af7c8e4f41da4ffca53fafe8bb86235 -> trunk/4d5b3f2d5af7c8e4f41da4ffca53fafe8bb86235 2025-08-14T21:43:30.7669530Z * [new tag] trunk/4e2ddb5db67617f9f5309c8bba0c17adc84cadbc -> trunk/4e2ddb5db67617f9f5309c8bba0c17adc84cadbc 2025-08-14T21:43:30.7671588Z * [new tag] trunk/50a8c118754a6c5a46968f5c8e215ccba6831d42 -> trunk/50a8c118754a6c5a46968f5c8e215ccba6831d42 2025-08-14T21:43:30.7672700Z * [new tag] trunk/50f23ff6f883db5021dd6bab4c146434f98dd15d -> trunk/50f23ff6f883db5021dd6bab4c146434f98dd15d 2025-08-14T21:43:30.7673591Z * [new tag] trunk/515cb70367e84fcbad23fcc5b39eb1d7706df2aa -> trunk/515cb70367e84fcbad23fcc5b39eb1d7706df2aa 2025-08-14T21:43:30.7674452Z * [new tag] trunk/53e39494958b7e2278cc8176f63636e812e8945f -> trunk/53e39494958b7e2278cc8176f63636e812e8945f 2025-08-14T21:43:30.7675324Z * [new tag] trunk/556e2a73f4f0643f7c2aeb5c7dddda43388a40ce -> trunk/556e2a73f4f0643f7c2aeb5c7dddda43388a40ce 2025-08-14T21:43:30.7676190Z * [new tag] trunk/5665dc9ab76b84d7c90d845ffb0f6349b3621919 -> trunk/5665dc9ab76b84d7c90d845ffb0f6349b3621919 2025-08-14T21:43:30.7677065Z * [new tag] trunk/566c6d52ef1411c8262d7b9cf85e2044fdfbe1a3 -> trunk/566c6d52ef1411c8262d7b9cf85e2044fdfbe1a3 2025-08-14T21:43:30.7677930Z * [new tag] trunk/56c828bef93eada0e18d2cc013207831ca80cc99 -> trunk/56c828bef93eada0e18d2cc013207831ca80cc99 2025-08-14T21:43:30.7678782Z * [new tag] trunk/5737372862253a0ac0292407a5844796f02380ad -> trunk/5737372862253a0ac0292407a5844796f02380ad 2025-08-14T21:43:30.7679624Z * [new tag] trunk/57f738b6357cc8fcdde479a0948e723809a1a44d -> trunk/57f738b6357cc8fcdde479a0948e723809a1a44d 2025-08-14T21:43:30.7680595Z * [new tag] trunk/5a40c5784482255b9baf14086cc4b9349fc6d512 -> trunk/5a40c5784482255b9baf14086cc4b9349fc6d512 2025-08-14T21:43:30.7681468Z * [new tag] trunk/5a9c4cfce42b9eb87da0de40c5633f083115c307 -> trunk/5a9c4cfce42b9eb87da0de40c5633f083115c307 2025-08-14T21:43:30.7682359Z * [new tag] trunk/5ace061254af71aa83d1baae81aa1864c9746add -> trunk/5ace061254af71aa83d1baae81aa1864c9746add 2025-08-14T21:43:30.7683243Z * [new tag] trunk/5dddcd5b07c6644efca8d613f4eca1dc95daa87f -> trunk/5dddcd5b07c6644efca8d613f4eca1dc95daa87f 2025-08-14T21:43:30.7684151Z * [new tag] trunk/5ed4f9177907fe403ec4c4499d0d0e9be6b68fcf -> trunk/5ed4f9177907fe403ec4c4499d0d0e9be6b68fcf 2025-08-14T21:43:30.7685024Z * [new tag] trunk/5f1010fbb3850d99c8fdf9a9de2f79260cdc586a -> trunk/5f1010fbb3850d99c8fdf9a9de2f79260cdc586a 2025-08-14T21:43:30.7686167Z * [new tag] trunk/5f5f508aa836a46dfe88857fb223049616b94e93 -> trunk/5f5f508aa836a46dfe88857fb223049616b94e93 2025-08-14T21:43:30.7687039Z * [new tag] trunk/62bac0798100e0e06a86b7a4cee1788413e3d0ca -> trunk/62bac0798100e0e06a86b7a4cee1788413e3d0ca 2025-08-14T21:43:30.7687905Z * [new tag] trunk/63654ba4c5178fd12220cfc9d1c878af2fdd07cc -> trunk/63654ba4c5178fd12220cfc9d1c878af2fdd07cc 2025-08-14T21:43:30.7688771Z * [new tag] trunk/639778b3ee3b80e0894367fdc4442b58ae1b3a62 -> trunk/639778b3ee3b80e0894367fdc4442b58ae1b3a62 2025-08-14T21:43:30.7689629Z * [new tag] trunk/641ee7478150f26969968f49d8b358e199679a8a -> trunk/641ee7478150f26969968f49d8b358e199679a8a 2025-08-14T21:43:30.7690477Z * [new tag] trunk/65053c03a3d209060cb239d20a229dac37cf9dd1 -> trunk/65053c03a3d209060cb239d20a229dac37cf9dd1 2025-08-14T21:43:30.7892258Z * [new tag] trunk/652a6f5954d039d61dc6e6575ccf89d385d74537 -> trunk/652a6f5954d039d61dc6e6575ccf89d385d74537 2025-08-14T21:43:30.7893177Z * [new tag] trunk/685f15dbea66e8ffa8564752f81ad2f6cb447a14 -> trunk/685f15dbea66e8ffa8564752f81ad2f6cb447a14 2025-08-14T21:43:30.7894072Z * [new tag] trunk/68a4b4b2e336cfd4451ce6546d900568e5ddf96c -> trunk/68a4b4b2e336cfd4451ce6546d900568e5ddf96c 2025-08-14T21:43:30.7894976Z * [new tag] trunk/69a0a9aa7f5e320a02e97fa789d2f72baff1554f -> trunk/69a0a9aa7f5e320a02e97fa789d2f72baff1554f 2025-08-14T21:43:30.7896100Z * [new tag] trunk/6be6d06295c870c77a6eb69f96b3170d983520d5 -> trunk/6be6d06295c870c77a6eb69f96b3170d983520d5 2025-08-14T21:43:30.7897099Z * [new tag] trunk/6c05ea6475beaf3acc05e1bda0f3f8fe3bdc1d49 -> trunk/6c05ea6475beaf3acc05e1bda0f3f8fe3bdc1d49 2025-08-14T21:43:30.7898013Z * [new tag] trunk/6da11d9aafc0d84dc7f66030c181608ff2614f66 -> trunk/6da11d9aafc0d84dc7f66030c181608ff2614f66 2025-08-14T21:43:30.7898897Z * [new tag] trunk/6e8865fbc161270e2ffc52817e6c667df417a3f7 -> trunk/6e8865fbc161270e2ffc52817e6c667df417a3f7 2025-08-14T21:43:30.7899829Z * [new tag] trunk/6ea8376f84232048d6be0f7b2edf82aec1b61d58 -> trunk/6ea8376f84232048d6be0f7b2edf82aec1b61d58 2025-08-14T21:43:30.7900701Z * [new tag] trunk/6ee175195ac7853734d64704171993cc6265eb38 -> trunk/6ee175195ac7853734d64704171993cc6265eb38 2025-08-14T21:43:30.7901548Z * [new tag] trunk/6f0f4e0c3eacd479864319127915f869f64e1935 -> trunk/6f0f4e0c3eacd479864319127915f869f64e1935 2025-08-14T21:43:30.7902510Z * [new tag] trunk/70ccdec44b89e355a2cb03ba14a634284f7750f8 -> trunk/70ccdec44b89e355a2cb03ba14a634284f7750f8 2025-08-14T21:43:30.7903473Z * [new tag] trunk/72009ec6bebca7714f99c18449183787f202af4d -> trunk/72009ec6bebca7714f99c18449183787f202af4d 2025-08-14T21:43:30.7904340Z * [new tag] trunk/731ee31f7b6ba19307daab323f6196172b71aaf8 -> trunk/731ee31f7b6ba19307daab323f6196172b71aaf8 2025-08-14T21:43:30.7905314Z * [new tag] trunk/76a0609b6bddb2bc40f1eb4ade12885023653d59 -> trunk/76a0609b6bddb2bc40f1eb4ade12885023653d59 2025-08-14T21:43:30.7906188Z * [new tag] trunk/781e9a7724c47496e3d38a81e6dd6194cf098c41 -> trunk/781e9a7724c47496e3d38a81e6dd6194cf098c41 2025-08-14T21:43:30.7907058Z * [new tag] trunk/78a2fe1d42edeaa2ef7020b0fa0ac82ee4a640e4 -> trunk/78a2fe1d42edeaa2ef7020b0fa0ac82ee4a640e4 2025-08-14T21:43:30.7908042Z * [new tag] trunk/7a974a88f2c529a614baeabe4debd00fc8a3b299 -> trunk/7a974a88f2c529a614baeabe4debd00fc8a3b299 2025-08-14T21:43:30.7909026Z * [new tag] trunk/7ae0629d64b404e0ef5d9c931433ad25e65d6114 -> trunk/7ae0629d64b404e0ef5d9c931433ad25e65d6114 2025-08-14T21:43:30.7909892Z * [new tag] trunk/7d2ec704e47f4b740cdecda5534b305e8e1875ef -> trunk/7d2ec704e47f4b740cdecda5534b305e8e1875ef 2025-08-14T21:43:30.7910776Z * [new tag] trunk/7d87e358ac8440f666fabbfd99058bb5342be6ac -> trunk/7d87e358ac8440f666fabbfd99058bb5342be6ac 2025-08-14T21:43:30.7911641Z * [new tag] trunk/7e27347fd353928c99620495c8c531a5eba7d56b -> trunk/7e27347fd353928c99620495c8c531a5eba7d56b 2025-08-14T21:43:30.7912480Z * [new tag] trunk/7e91394955721c77645fcdb75a5d47a255d65020 -> trunk/7e91394955721c77645fcdb75a5d47a255d65020 2025-08-14T21:43:30.7913329Z * [new tag] trunk/7f4cb4a3e018a621add2a37a3a2f67b982d51001 -> trunk/7f4cb4a3e018a621add2a37a3a2f67b982d51001 2025-08-14T21:43:30.7914291Z * [new tag] trunk/7fbc22855c17741ae016992803b2e147a13aa22d -> trunk/7fbc22855c17741ae016992803b2e147a13aa22d 2025-08-14T21:43:30.7915253Z * [new tag] trunk/8047421fbb607d70ede13b9cd5a60b7b8bdfe348 -> trunk/8047421fbb607d70ede13b9cd5a60b7b8bdfe348 2025-08-14T21:43:30.7916119Z * [new tag] trunk/8088cfa592504a2897b4c78f8a46fe658ab5c2c2 -> trunk/8088cfa592504a2897b4c78f8a46fe658ab5c2c2 2025-08-14T21:43:30.7916967Z * [new tag] trunk/80cca8307943ba64168208b54028f55b2c71daff -> trunk/80cca8307943ba64168208b54028f55b2c71daff 2025-08-14T21:43:30.7917823Z * [new tag] trunk/8147370733bbdcd034cad54e9212e51885a11892 -> trunk/8147370733bbdcd034cad54e9212e51885a11892 2025-08-14T21:43:30.7918681Z * [new tag] trunk/83875cdb5594ccb3c9206b8eb5745fe1d011cf26 -> trunk/83875cdb5594ccb3c9206b8eb5745fe1d011cf26 2025-08-14T21:43:30.7919551Z * [new tag] trunk/8399cf88ce8399d2be93355f29d4cb69f51c0654 -> trunk/8399cf88ce8399d2be93355f29d4cb69f51c0654 2025-08-14T21:43:30.7920609Z * [new tag] trunk/842cc77ab9aafd518593c2fce077d6abb42a5b7f -> trunk/842cc77ab9aafd518593c2fce077d6abb42a5b7f 2025-08-14T21:43:30.8135774Z * [new tag] trunk/85db508af533649d0b3447ff3f0d5fe083150c84 -> trunk/85db508af533649d0b3447ff3f0d5fe083150c84 2025-08-14T21:43:30.8136675Z * [new tag] trunk/86eb65f7f06016bcd5d7951dc9d74bc3993a827a -> trunk/86eb65f7f06016bcd5d7951dc9d74bc3993a827a 2025-08-14T21:43:30.8137557Z * [new tag] trunk/87e6c4079d8ec7d04aff00ed82096b39836a8367 -> trunk/87e6c4079d8ec7d04aff00ed82096b39836a8367 2025-08-14T21:43:30.8138423Z * [new tag] trunk/89654db1abccf7e5f261989a150db4d1619ea2aa -> trunk/89654db1abccf7e5f261989a150db4d1619ea2aa 2025-08-14T21:43:30.8139295Z * [new tag] trunk/8a37f0c90392a2c38b7c5955471fa49edcaf5cb1 -> trunk/8a37f0c90392a2c38b7c5955471fa49edcaf5cb1 2025-08-14T21:43:30.8140208Z * [new tag] trunk/8ab5868a2199fe485c2d66533b9244ccb97e487d -> trunk/8ab5868a2199fe485c2d66533b9244ccb97e487d 2025-08-14T21:43:30.8141053Z * [new tag] trunk/8ae4d2652f64b8444b3d5314b9232bd2119bcde6 -> trunk/8ae4d2652f64b8444b3d5314b9232bd2119bcde6 2025-08-14T21:43:30.8141917Z * [new tag] trunk/8c41cb800ae0411f02ea5da34bd5ccc3790633b0 -> trunk/8c41cb800ae0411f02ea5da34bd5ccc3790633b0 2025-08-14T21:43:30.8142786Z * [new tag] trunk/8cb91e20bc205b1416648d0ffd98d1ba1f3a6fc4 -> trunk/8cb91e20bc205b1416648d0ffd98d1ba1f3a6fc4 2025-08-14T21:43:30.8143809Z * [new tag] trunk/8cfaf51d4e29c9bd9f49ecc98d955ed53df1a13d -> trunk/8cfaf51d4e29c9bd9f49ecc98d955ed53df1a13d 2025-08-14T21:43:30.8144710Z * [new tag] trunk/8d1cf529229dce7cd5ea04abb0faac83b87ca6d1 -> trunk/8d1cf529229dce7cd5ea04abb0faac83b87ca6d1 2025-08-14T21:43:30.8145592Z * [new tag] trunk/8d3d1c844303cb1d46123a1caa76d4cf83973347 -> trunk/8d3d1c844303cb1d46123a1caa76d4cf83973347 2025-08-14T21:43:30.8146458Z * [new tag] trunk/8d6d3246316e1767a57d5e855acd6208da753b75 -> trunk/8d6d3246316e1767a57d5e855acd6208da753b75 2025-08-14T21:43:30.8147310Z * [new tag] trunk/8e6a3138581152ab827a0997f34c470271399f5e -> trunk/8e6a3138581152ab827a0997f34c470271399f5e 2025-08-14T21:43:30.8148152Z * [new tag] trunk/8eee08d2279b98af2522debb6512d37e837e89e3 -> trunk/8eee08d2279b98af2522debb6512d37e837e89e3 2025-08-14T21:43:30.8149018Z * [new tag] trunk/90b78ee50f73b5c963996076a3d54b74b1b965be -> trunk/90b78ee50f73b5c963996076a3d54b74b1b965be 2025-08-14T21:43:30.8149977Z * [new tag] trunk/94b91a876327820a4bb6f5d39d156f13f2553ab6 -> trunk/94b91a876327820a4bb6f5d39d156f13f2553ab6 2025-08-14T21:43:30.8151020Z * [new tag] trunk/95210cc409dd578988c7116b47725c304dea54c7 -> trunk/95210cc409dd578988c7116b47725c304dea54c7 2025-08-14T21:43:30.8151975Z * [new tag] trunk/96bd33b2de79598566df395f32e27c4d33673f05 -> trunk/96bd33b2de79598566df395f32e27c4d33673f05 2025-08-14T21:43:30.8152825Z * [new tag] trunk/9708fcf92db88b80b9010c68662d634434da3106 -> trunk/9708fcf92db88b80b9010c68662d634434da3106 2025-08-14T21:43:30.8153689Z * [new tag] trunk/97c8c98f8dcb9c5c188b691d156e0043dba6c7f8 -> trunk/97c8c98f8dcb9c5c188b691d156e0043dba6c7f8 2025-08-14T21:43:30.8154554Z * [new tag] trunk/9903ca4f70bdc1653016256f5b4fd74fdfc609f8 -> trunk/9903ca4f70bdc1653016256f5b4fd74fdfc609f8 2025-08-14T21:43:30.8155417Z * [new tag] trunk/99bc2f94c1955657e950ebdad5f77e518785ccbd -> trunk/99bc2f94c1955657e950ebdad5f77e518785ccbd 2025-08-14T21:43:30.8156285Z * [new tag] trunk/9a06e6d0310da9d8a59ae05e8ec9c0201b55cacd -> trunk/9a06e6d0310da9d8a59ae05e8ec9c0201b55cacd 2025-08-14T21:43:30.8157149Z * [new tag] trunk/9a0f7a3bb01b235ea04581ee540970a098071b72 -> trunk/9a0f7a3bb01b235ea04581ee540970a098071b72 2025-08-14T21:43:30.8158313Z * [new tag] trunk/9b803cdbe298009f08340c1aaccb25aafbca95d8 -> trunk/9b803cdbe298009f08340c1aaccb25aafbca95d8 2025-08-14T21:43:30.8159208Z * [new tag] trunk/9ccd0f5e31ea54fcf42101dfbaacc103494e34df -> trunk/9ccd0f5e31ea54fcf42101dfbaacc103494e34df 2025-08-14T21:43:30.8160093Z * [new tag] trunk/9d37c960a4fc44d5ac334ca8bf775f85b95d76fc -> trunk/9d37c960a4fc44d5ac334ca8bf775f85b95d76fc 2025-08-14T21:43:30.8160990Z * [new tag] trunk/9e07673deb212c87b1c6fea23799a97474c476ed -> trunk/9e07673deb212c87b1c6fea23799a97474c476ed 2025-08-14T21:43:30.8161856Z * [new tag] trunk/9eedd2a20b64302d0d116ea2802b50948d2ebb09 -> trunk/9eedd2a20b64302d0d116ea2802b50948d2ebb09 2025-08-14T21:43:30.8162729Z * [new tag] trunk/9fa8ce26cf638504469852cbc3e7d04579fc8674 -> trunk/9fa8ce26cf638504469852cbc3e7d04579fc8674 2025-08-14T21:43:30.8163699Z * [new tag] trunk/a06ec54d40013c97fbffc174ea8f524ea5a95715 -> trunk/a06ec54d40013c97fbffc174ea8f524ea5a95715 2025-08-14T21:43:30.8164666Z * [new tag] trunk/a288b15ea9f87ddd665f249d492e0fb0861f5a69 -> trunk/a288b15ea9f87ddd665f249d492e0fb0861f5a69 2025-08-14T21:43:30.8368964Z * [new tag] trunk/a2fd106d670bb4990cebfd00f25ecbae4145e76c -> trunk/a2fd106d670bb4990cebfd00f25ecbae4145e76c 2025-08-14T21:43:30.8369877Z * [new tag] trunk/a354fa91e26b376d96385a2206c5ff5b42aa4600 -> trunk/a354fa91e26b376d96385a2206c5ff5b42aa4600 2025-08-14T21:43:30.8371004Z * [new tag] trunk/a4f69a5da08eace1c1e6469dec6a18aa842da73b -> trunk/a4f69a5da08eace1c1e6469dec6a18aa842da73b 2025-08-14T21:43:30.8371995Z * [new tag] trunk/a53d14d5f846ac44f6c205abb1c5bc4d2f3126ae -> trunk/a53d14d5f846ac44f6c205abb1c5bc4d2f3126ae 2025-08-14T21:43:30.8372868Z * [new tag] trunk/a5652407e4f3d772fc44486ac2abf756decf0861 -> trunk/a5652407e4f3d772fc44486ac2abf756decf0861 2025-08-14T21:43:30.8373746Z * [new tag] trunk/a7abf57aabec0ce686092e2d66e53ba185dbc56b -> trunk/a7abf57aabec0ce686092e2d66e53ba185dbc56b 2025-08-14T21:43:30.8374629Z * [new tag] trunk/a84b60c0c4016785fd93b7b8a0c04f2d0770d332 -> trunk/a84b60c0c4016785fd93b7b8a0c04f2d0770d332 2025-08-14T21:43:30.8375498Z * [new tag] trunk/aa75e917bdb0f95bb6dee81853c2d3c4ab3e1883 -> trunk/aa75e917bdb0f95bb6dee81853c2d3c4ab3e1883 2025-08-14T21:43:30.8376397Z * [new tag] trunk/adcca7d9a1c053495e99012de801b2ea237faad0 -> trunk/adcca7d9a1c053495e99012de801b2ea237faad0 2025-08-14T21:43:30.8377371Z * [new tag] trunk/af10f1f86cc4effc93142a447693d8be55966615 -> trunk/af10f1f86cc4effc93142a447693d8be55966615 2025-08-14T21:43:30.8378339Z * [new tag] trunk/af3cabc55d5699f4da528e1ca39d83338f84ae8c -> trunk/af3cabc55d5699f4da528e1ca39d83338f84ae8c 2025-08-14T21:43:30.8379211Z * [new tag] trunk/b0df7715e8c590c0001d1f9cdb97057be80c9107 -> trunk/b0df7715e8c590c0001d1f9cdb97057be80c9107 2025-08-14T21:43:30.8380149Z * [new tag] trunk/b149c7204c218e7c4d6594a89dd74f72bd480ec5 -> trunk/b149c7204c218e7c4d6594a89dd74f72bd480ec5 2025-08-14T21:43:30.8381002Z * [new tag] trunk/b1a602762e6a6674b406a3137e7e7a678885a97b -> trunk/b1a602762e6a6674b406a3137e7e7a678885a97b 2025-08-14T21:43:30.8381862Z * [new tag] trunk/b1f43548cad8fc0e30bda250f6e196310fa7a4bc -> trunk/b1f43548cad8fc0e30bda250f6e196310fa7a4bc 2025-08-14T21:43:30.8382726Z * [new tag] trunk/b219ca2a00a305753c4f1ea4c9c5d23243d54753 -> trunk/b219ca2a00a305753c4f1ea4c9c5d23243d54753 2025-08-14T21:43:30.8383695Z * [new tag] trunk/b4596895b9d85a686c2cb978938b0a7797b3690a -> trunk/b4596895b9d85a686c2cb978938b0a7797b3690a 2025-08-14T21:43:30.8384666Z * [new tag] trunk/b5fd7223b1bf44720dc9183bda7dfcf7aeccff02 -> trunk/b5fd7223b1bf44720dc9183bda7dfcf7aeccff02 2025-08-14T21:43:30.8385650Z * [new tag] trunk/b602ea9cab7d43a7ee7b4051227090f23fbd3dbf -> trunk/b602ea9cab7d43a7ee7b4051227090f23fbd3dbf 2025-08-14T21:43:30.8386550Z * [new tag] trunk/b6b74aed604bd2e96389ff99aaaf39abc64fdc64 -> trunk/b6b74aed604bd2e96389ff99aaaf39abc64fdc64 2025-08-14T21:43:30.8387432Z * [new tag] trunk/b7db86600a2614adc71c92ca42d359a7ac534d78 -> trunk/b7db86600a2614adc71c92ca42d359a7ac534d78 2025-08-14T21:43:30.8388301Z * [new tag] trunk/b9003ed3d87699e81e436719625a21996a6654e5 -> trunk/b9003ed3d87699e81e436719625a21996a6654e5 2025-08-14T21:43:30.8389271Z * [new tag] trunk/b90feeac86bda00afc2789321bcd706015ff44e3 -> trunk/b90feeac86bda00afc2789321bcd706015ff44e3 2025-08-14T21:43:30.8390246Z * [new tag] trunk/b9d7de3a094598c3dc0dd52e57bce30eb684c9d8 -> trunk/b9d7de3a094598c3dc0dd52e57bce30eb684c9d8 2025-08-14T21:43:30.8391128Z * [new tag] trunk/ba47821f524eee50a214ed39fa2e7765d54aabf4 -> trunk/ba47821f524eee50a214ed39fa2e7765d54aabf4 2025-08-14T21:43:30.8392025Z * [new tag] trunk/ba4ccf5d67e3d237f435eacc2bce3c6025f08491 -> trunk/ba4ccf5d67e3d237f435eacc2bce3c6025f08491 2025-08-14T21:43:30.8392910Z * [new tag] trunk/bcf23ecc476df2bd7479f142567213e2623308ee -> trunk/bcf23ecc476df2bd7479f142567213e2623308ee 2025-08-14T21:43:30.8393789Z * [new tag] trunk/be53f609aaf6f01e2863f490975ea9eaac3ee9ff -> trunk/be53f609aaf6f01e2863f490975ea9eaac3ee9ff 2025-08-14T21:43:30.8394769Z * [new tag] trunk/beb4d7816dedc67a5de1f82e5a45b5910f407941 -> trunk/beb4d7816dedc67a5de1f82e5a45b5910f407941 2025-08-14T21:43:30.8395740Z * [new tag] trunk/bfc873d02ec413344717493e4175a902921359fd -> trunk/bfc873d02ec413344717493e4175a902921359fd 2025-08-14T21:43:30.8396700Z * [new tag] trunk/c184cb3852f0ff2d16a489d61abc3739c309e6ca -> trunk/c184cb3852f0ff2d16a489d61abc3739c309e6ca 2025-08-14T21:43:30.8397572Z * [new tag] trunk/c24ca7f4bf79f62fd623d76346ca27e53f731431 -> trunk/c24ca7f4bf79f62fd623d76346ca27e53f731431 2025-08-14T21:43:30.8622168Z * [new tag] trunk/c3dc8dc4122977893004c49d10e4676cd0a97da4 -> trunk/c3dc8dc4122977893004c49d10e4676cd0a97da4 2025-08-14T21:43:30.8623077Z * [new tag] trunk/c5ec5458a547f7a774468ea0eb2258d3de596492 -> trunk/c5ec5458a547f7a774468ea0eb2258d3de596492 2025-08-14T21:43:30.8623944Z * [new tag] trunk/c5efc5c8a66eca84865015058b3221013ebfe685 -> trunk/c5efc5c8a66eca84865015058b3221013ebfe685 2025-08-14T21:43:30.8624818Z * [new tag] trunk/c6563341208003f64c131854a9cf029555f786d2 -> trunk/c6563341208003f64c131854a9cf029555f786d2 2025-08-14T21:43:30.8625689Z * [new tag] trunk/c6d78d4dbda53837d298d23a5fbc09af90a42d9e -> trunk/c6d78d4dbda53837d298d23a5fbc09af90a42d9e 2025-08-14T21:43:30.8626564Z * [new tag] trunk/c8205cb35435f39d2c26f6c94b45e4adeb6dcb23 -> trunk/c8205cb35435f39d2c26f6c94b45e4adeb6dcb23 2025-08-14T21:43:30.8627436Z * [new tag] trunk/c859ba7114b1fcb49527e090745fa17091d1f8d5 -> trunk/c859ba7114b1fcb49527e090745fa17091d1f8d5 2025-08-14T21:43:30.8628280Z * [new tag] trunk/c86040a8e68f754b90a84099187d3624954c7f36 -> trunk/c86040a8e68f754b90a84099187d3624954c7f36 2025-08-14T21:43:30.8629152Z * [new tag] trunk/c9671dc865aa0fc1cb86df754e355b44d8e02bb4 -> trunk/c9671dc865aa0fc1cb86df754e355b44d8e02bb4 2025-08-14T21:43:30.8630029Z * [new tag] trunk/ca7315c17162ea21b1ca5ba23f4bf6168766c7b9 -> trunk/ca7315c17162ea21b1ca5ba23f4bf6168766c7b9 2025-08-14T21:43:30.8630900Z * [new tag] trunk/cae2b5e3d223829bdc553fc8601df4b1c1554cff -> trunk/cae2b5e3d223829bdc553fc8601df4b1c1554cff 2025-08-14T21:43:30.8631772Z * [new tag] trunk/cbffde774557752cf20447d42d99ec6102673c31 -> trunk/cbffde774557752cf20447d42d99ec6102673c31 2025-08-14T21:43:30.8632776Z * [new tag] trunk/cd8d8c18f5bafdc1c73d5ac0129e7b4d76ab45bc -> trunk/cd8d8c18f5bafdc1c73d5ac0129e7b4d76ab45bc 2025-08-14T21:43:30.8633685Z * [new tag] trunk/cf0a0dcb0afa5e84b95461cc542f862b51ca96bf -> trunk/cf0a0dcb0afa5e84b95461cc542f862b51ca96bf 2025-08-14T21:43:30.8634580Z * [new tag] trunk/cf4964be68fa9f4ffc334f01cce42d7424b1cc81 -> trunk/cf4964be68fa9f4ffc334f01cce42d7424b1cc81 2025-08-14T21:43:30.8635448Z * [new tag] trunk/d0e2240f680ea2a553f7ee8188f52482e130bfd0 -> trunk/d0e2240f680ea2a553f7ee8188f52482e130bfd0 2025-08-14T21:43:30.8636332Z * [new tag] trunk/d1950d4bb5cba8fb6b23e4d283eea5b9801737e2 -> trunk/d1950d4bb5cba8fb6b23e4d283eea5b9801737e2 2025-08-14T21:43:30.8637219Z * [new tag] trunk/d20c4c20e61adecf00335c4d8c22eb1ace472cd3 -> trunk/d20c4c20e61adecf00335c4d8c22eb1ace472cd3 2025-08-14T21:43:30.8638092Z * [new tag] trunk/d25c4f954d599ea512e2f70cd6df101c21479d4c -> trunk/d25c4f954d599ea512e2f70cd6df101c21479d4c 2025-08-14T21:43:30.8638979Z * [new tag] trunk/d3d359dbafa89173a371e2637f22b47398e94a24 -> trunk/d3d359dbafa89173a371e2637f22b47398e94a24 2025-08-14T21:43:30.8639828Z * [new tag] trunk/d46768db04499d07a5b0db984112a6d1b7d3b0c1 -> trunk/d46768db04499d07a5b0db984112a6d1b7d3b0c1 2025-08-14T21:43:30.8640700Z * [new tag] trunk/d4c1a08c89f37d249a0146ff511c82ecc5c53b8f -> trunk/d4c1a08c89f37d249a0146ff511c82ecc5c53b8f 2025-08-14T21:43:30.8641660Z * [new tag] trunk/d556586448f3caab85673c7da0978fe31c7748f7 -> trunk/d556586448f3caab85673c7da0978fe31c7748f7 2025-08-14T21:43:30.8642498Z * [new tag] trunk/d670304001429a1a833255a918ed788d7ec4989a -> trunk/d670304001429a1a833255a918ed788d7ec4989a 2025-08-14T21:43:30.8643344Z * [new tag] trunk/d6786741a77aba200c78002646cc069b7a1799b0 -> trunk/d6786741a77aba200c78002646cc069b7a1799b0 2025-08-14T21:43:30.8644213Z * [new tag] trunk/d68c323692dedcbb74e670801e3502944fd790ff -> trunk/d68c323692dedcbb74e670801e3502944fd790ff 2025-08-14T21:43:30.8645084Z * [new tag] trunk/d8cb3db5339b45e4b745b2b883ef3ecde9843e2c -> trunk/d8cb3db5339b45e4b745b2b883ef3ecde9843e2c 2025-08-14T21:43:30.8645958Z * [new tag] trunk/da1f608ca33f3062535d0a4866d95db19e72fcbd -> trunk/da1f608ca33f3062535d0a4866d95db19e72fcbd 2025-08-14T21:43:30.8646833Z * [new tag] trunk/db0b7f1cc9bb3fe71aaf8b964a644147ae8e1c35 -> trunk/db0b7f1cc9bb3fe71aaf8b964a644147ae8e1c35 2025-08-14T21:43:30.8647726Z * [new tag] trunk/db32b60662b2f2bdcad980127d5dc4b66b02a7e4 -> trunk/db32b60662b2f2bdcad980127d5dc4b66b02a7e4 2025-08-14T21:43:30.8648586Z * [new tag] trunk/db763b17175553ba09637362eb9773a91997a7ad -> trunk/db763b17175553ba09637362eb9773a91997a7ad 2025-08-14T21:43:30.8649433Z * [new tag] trunk/db78943a1ca13a32a3d6045eb15e2b719ee13a2f -> trunk/db78943a1ca13a32a3d6045eb15e2b719ee13a2f 2025-08-14T21:43:30.8650320Z * [new tag] trunk/dc0d18e023d9b7e314ebba0f234b6cb1579dbcfd -> trunk/dc0d18e023d9b7e314ebba0f234b6cb1579dbcfd 2025-08-14T21:43:30.8849408Z * [new tag] trunk/dd21c8a578038ab2841a7ba809a06921093ac9d8 -> trunk/dd21c8a578038ab2841a7ba809a06921093ac9d8 2025-08-14T21:43:30.8850295Z * [new tag] trunk/deea71a90e05eb320c04bebfead5317746637f0d -> trunk/deea71a90e05eb320c04bebfead5317746637f0d 2025-08-14T21:43:30.8851180Z * [new tag] trunk/df55ec7d4b35f6d21691e9dd41c82f27de762948 -> trunk/df55ec7d4b35f6d21691e9dd41c82f27de762948 2025-08-14T21:43:30.8852053Z * [new tag] trunk/e1cf0d496ea85d1807c8c740f296e77bf7bdc1df -> trunk/e1cf0d496ea85d1807c8c740f296e77bf7bdc1df 2025-08-14T21:43:30.8852922Z * [new tag] trunk/e248719ac03c103767ab72034f6b9fd56855bf98 -> trunk/e248719ac03c103767ab72034f6b9fd56855bf98 2025-08-14T21:43:30.8853783Z * [new tag] trunk/e49762026070f66be41bfa6537fbcf9bfc24e558 -> trunk/e49762026070f66be41bfa6537fbcf9bfc24e558 2025-08-14T21:43:30.8854769Z * [new tag] trunk/e4de93f6a3e342bab34d3757cf90ec0ccc87e168 -> trunk/e4de93f6a3e342bab34d3757cf90ec0ccc87e168 2025-08-14T21:43:30.8855677Z * [new tag] trunk/e619c6bb90b9dedaccd3cbeed86a288993a4e33f -> trunk/e619c6bb90b9dedaccd3cbeed86a288993a4e33f 2025-08-14T21:43:30.8856579Z * [new tag] trunk/e63c2b21c186a7d2ab8a8953b8aa1535f2e96e58 -> trunk/e63c2b21c186a7d2ab8a8953b8aa1535f2e96e58 2025-08-14T21:43:30.8857557Z * [new tag] trunk/e7152ff8a6a929a0db7f3f4a72a5b6d471769cd3 -> trunk/e7152ff8a6a929a0db7f3f4a72a5b6d471769cd3 2025-08-14T21:43:30.8858544Z * [new tag] trunk/e96c7c4bb0f6aeae2ab3b6f040f7d67edbec199a -> trunk/e96c7c4bb0f6aeae2ab3b6f040f7d67edbec199a 2025-08-14T21:43:30.8859417Z * [new tag] trunk/e9eb2096a59a79e7a94c3e28a0715e040369f34c -> trunk/e9eb2096a59a79e7a94c3e28a0715e040369f34c 2025-08-14T21:43:30.8860352Z * [new tag] trunk/eac2d9d695a32dd456050f45cac35134ec3809f4 -> trunk/eac2d9d695a32dd456050f45cac35134ec3809f4 2025-08-14T21:43:30.8861231Z * [new tag] trunk/ecde76c764752540edf9ef62a97936c86d984b17 -> trunk/ecde76c764752540edf9ef62a97936c86d984b17 2025-08-14T21:43:30.8862101Z * [new tag] trunk/ecea81117b2fdc52907c97b3c32d779e07b5d55b -> trunk/ecea81117b2fdc52907c97b3c32d779e07b5d55b 2025-08-14T21:43:30.8862985Z * [new tag] trunk/edaa151d0d5a4e75fbec9843f49cc78770eb61fb -> trunk/edaa151d0d5a4e75fbec9843f49cc78770eb61fb 2025-08-14T21:43:30.8864063Z * [new tag] trunk/ee1b0412b919dfb358d5a697b3be49621497fbc2 -> trunk/ee1b0412b919dfb358d5a697b3be49621497fbc2 2025-08-14T21:43:30.8865032Z * [new tag] trunk/ee1fb43450c2e985657f95a91b68328d6f20f24e -> trunk/ee1fb43450c2e985657f95a91b68328d6f20f24e 2025-08-14T21:43:30.8865929Z * [new tag] trunk/ee89cc7a0acd69de25f98fe4ef828546db7b444c -> trunk/ee89cc7a0acd69de25f98fe4ef828546db7b444c 2025-08-14T21:43:30.8866817Z * [new tag] trunk/ee9f8ba11d664b871a9e0c7933fdc8571635b78c -> trunk/ee9f8ba11d664b871a9e0c7933fdc8571635b78c 2025-08-14T21:43:30.8867710Z * [new tag] trunk/eed9dbf70f43ee529fec78ac00ed9a4fd74c6e76 -> trunk/eed9dbf70f43ee529fec78ac00ed9a4fd74c6e76 2025-08-14T21:43:30.8868597Z * [new tag] trunk/f077c2402e4eb5b0ed562b4ee5b7a0503f26ef94 -> trunk/f077c2402e4eb5b0ed562b4ee5b7a0503f26ef94 2025-08-14T21:43:30.8869460Z * [new tag] trunk/f0980fc0bbd656d6c02d23ad97e945353b314f35 -> trunk/f0980fc0bbd656d6c02d23ad97e945353b314f35 2025-08-14T21:43:30.8870443Z * [new tag] trunk/f15ada5c6fad97a7dcbfa4673f067b6942dda640 -> trunk/f15ada5c6fad97a7dcbfa4673f067b6942dda640 2025-08-14T21:43:30.8871412Z * [new tag] trunk/f27232a2134150cb5e55d26a74d8c36c6a961ca5 -> trunk/f27232a2134150cb5e55d26a74d8c36c6a961ca5 2025-08-14T21:43:30.8872280Z * [new tag] trunk/f33ce40bc062a281e1a1f57e8c1926d0a7d155cc -> trunk/f33ce40bc062a281e1a1f57e8c1926d0a7d155cc 2025-08-14T21:43:30.8873149Z * [new tag] trunk/f341077ce4710172da20cfad916ee37159bfe9fe -> trunk/f341077ce4710172da20cfad916ee37159bfe9fe 2025-08-14T21:43:30.8874019Z * [new tag] trunk/f3a4d742ece08de4cb0e59dcc62e0093a7d0b0c7 -> trunk/f3a4d742ece08de4cb0e59dcc62e0093a7d0b0c7 2025-08-14T21:43:30.8874917Z * [new tag] trunk/f3f159ff8c4bad2edec99c68a941c628e983d04c -> trunk/f3f159ff8c4bad2edec99c68a941c628e983d04c 2025-08-14T21:43:30.8875804Z * [new tag] trunk/f60454cce8b93e5bbf67f2f3c88c8ac01ed65457 -> trunk/f60454cce8b93e5bbf67f2f3c88c8ac01ed65457 2025-08-14T21:43:30.8876770Z * [new tag] trunk/f7b2f3314cf7aede67d5fa5c75e4243208484344 -> trunk/f7b2f3314cf7aede67d5fa5c75e4243208484344 2025-08-14T21:43:30.8877733Z * [new tag] trunk/f8f0414a5983ff481a2188e0c18594150430c8c5 -> trunk/f8f0414a5983ff481a2188e0c18594150430c8c5 2025-08-14T21:43:30.9221652Z * [new tag] trunk/f95b58c2844b3444cd8446fed8570729dc4216eb -> trunk/f95b58c2844b3444cd8446fed8570729dc4216eb 2025-08-14T21:43:30.9222586Z * [new tag] trunk/f990490a23815ea6ee27e487c70ba2cf513ba43d -> trunk/f990490a23815ea6ee27e487c70ba2cf513ba43d 2025-08-14T21:43:30.9223466Z * [new tag] trunk/fb887c3bb588cfe782615e67f6c26db636b8539b -> trunk/fb887c3bb588cfe782615e67f6c26db636b8539b 2025-08-14T21:43:30.9224354Z * [new tag] trunk/fc25c68f20f772290927a7031b998b92615259cf -> trunk/fc25c68f20f772290927a7031b998b92615259cf 2025-08-14T21:43:30.9225212Z * [new tag] trunk/fc80f6859e0ccf66513a40f04b9e735e759d4ddb -> trunk/fc80f6859e0ccf66513a40f04b9e735e759d4ddb 2025-08-14T21:43:30.9226252Z * [new tag] trunk/fdfd69bb05488d76123db9cc1cdd90ac4137bbfb -> trunk/fdfd69bb05488d76123db9cc1cdd90ac4137bbfb 2025-08-14T21:43:30.9227158Z * [new tag] trunk/fe3f5fe4ea2ff6f56406dc5d954636ebb08d0a08 -> trunk/fe3f5fe4ea2ff6f56406dc5d954636ebb08d0a08 2025-08-14T21:43:30.9228059Z * [new tag] trunk/fea7e9dd37c02c334b130f6624af6163fde6b2ab -> trunk/fea7e9dd37c02c334b130f6624af6163fde6b2ab 2025-08-14T21:43:30.9228946Z * [new tag] trunk/ff0d56d03592aa03f3ced8359241d21df1783393 -> trunk/ff0d56d03592aa03f3ced8359241d21df1783393 2025-08-14T21:43:30.9229571Z * [new tag] v0.1.1 -> v0.1.1 2025-08-14T21:43:30.9230056Z * [new tag] v0.1.10 -> v0.1.10 2025-08-14T21:43:30.9230424Z * [new tag] v0.1.11 -> v0.1.11 2025-08-14T21:43:30.9230799Z * [new tag] v0.1.12 -> v0.1.12 2025-08-14T21:43:30.9231166Z * [new tag] v0.1.2 -> v0.1.2 2025-08-14T21:43:30.9231522Z * [new tag] v0.1.3 -> v0.1.3 2025-08-14T21:43:30.9231887Z * [new tag] v0.1.4 -> v0.1.4 2025-08-14T21:43:30.9232246Z * [new tag] v0.1.5 -> v0.1.5 2025-08-14T21:43:30.9232600Z * [new tag] v0.1.6 -> v0.1.6 2025-08-14T21:43:30.9232948Z * [new tag] v0.1.7 -> v0.1.7 2025-08-14T21:43:30.9233305Z * [new tag] v0.1.8 -> v0.1.8 2025-08-14T21:43:30.9233675Z * [new tag] v0.1.9 -> v0.1.9 2025-08-14T21:43:30.9234028Z * [new tag] v0.2.0 -> v0.2.0 2025-08-14T21:43:30.9234387Z * [new tag] v0.3.0 -> v0.3.0 2025-08-14T21:43:30.9234741Z * [new tag] v0.3.1 -> v0.3.1 2025-08-14T21:43:30.9235091Z * [new tag] v0.4.0 -> v0.4.0 2025-08-14T21:43:30.9235443Z * [new tag] v0.4.1 -> v0.4.1 2025-08-14T21:43:30.9235798Z * [new tag] v1.0.0 -> v1.0.0 2025-08-14T21:43:30.9236168Z * [new tag] v1.0.0a0 -> v1.0.0a0 2025-08-14T21:43:30.9236523Z * [new tag] v1.0.1 -> v1.0.1 2025-08-14T21:43:30.9236882Z * [new tag] v1.0rc0 -> v1.0rc0 2025-08-14T21:43:30.9237248Z * [new tag] v1.0rc1 -> v1.0rc1 2025-08-14T21:43:30.9237610Z * [new tag] v1.1.0 -> v1.1.0 2025-08-14T21:43:30.9237977Z * [new tag] v1.1.0a0 -> v1.1.0a0 2025-08-14T21:43:30.9238332Z * [new tag] v1.10.0 -> v1.10.0 2025-08-14T21:43:30.9238712Z * [new tag] v1.10.0-rc1 -> v1.10.0-rc1 2025-08-14T21:43:30.9239096Z * [new tag] v1.10.0-rc2 -> v1.10.0-rc2 2025-08-14T21:43:30.9239490Z * [new tag] v1.10.0-rc3 -> v1.10.0-rc3 2025-08-14T21:43:30.9239952Z * [new tag] v1.10.1 -> v1.10.1 2025-08-14T21:43:30.9240316Z * [new tag] v1.10.1-rc1 -> v1.10.1-rc1 2025-08-14T21:43:30.9240700Z * [new tag] v1.10.2 -> v1.10.2 2025-08-14T21:43:30.9241065Z * [new tag] v1.10.2-rc1 -> v1.10.2-rc1 2025-08-14T21:43:30.9241451Z * [new tag] v1.11.0 -> v1.11.0 2025-08-14T21:43:30.9241815Z * [new tag] v1.11.0-rc1 -> v1.11.0-rc1 2025-08-14T21:43:30.9242191Z * [new tag] v1.11.0-rc2 -> v1.11.0-rc2 2025-08-14T21:43:30.9242569Z * [new tag] v1.11.0-rc3 -> v1.11.0-rc3 2025-08-14T21:43:30.9242941Z * [new tag] v1.11.0-rc4 -> v1.11.0-rc4 2025-08-14T21:43:30.9243325Z * [new tag] v1.11.0-rc5 -> v1.11.0-rc5 2025-08-14T21:43:30.9243697Z * [new tag] v1.11.0-rc6 -> v1.11.0-rc6 2025-08-14T21:43:30.9244072Z * [new tag] v1.11.0-rc7 -> v1.11.0-rc7 2025-08-14T21:43:30.9244442Z * [new tag] v1.12.0 -> v1.12.0 2025-08-14T21:43:30.9244799Z * [new tag] v1.12.0-rc1 -> v1.12.0-rc1 2025-08-14T21:43:30.9245182Z * [new tag] v1.12.0-rc2 -> v1.12.0-rc2 2025-08-14T21:43:30.9617909Z * [new tag] v1.12.0-rc3 -> v1.12.0-rc3 2025-08-14T21:43:30.9618353Z * [new tag] v1.12.0-rc4 -> v1.12.0-rc4 2025-08-14T21:43:30.9618747Z * [new tag] v1.12.0-rc5 -> v1.12.0-rc5 2025-08-14T21:43:30.9619128Z * [new tag] v1.12.0-rc6 -> v1.12.0-rc6 2025-08-14T21:43:30.9619560Z * [new tag] v1.12.0-rc7 -> v1.12.0-rc7 2025-08-14T21:43:30.9619961Z * [new tag] v1.12.0-rc8 -> v1.12.0-rc8 2025-08-14T21:43:30.9620343Z * [new tag] v1.12.1 -> v1.12.1 2025-08-14T21:43:30.9620718Z * [new tag] v1.12.1-rc1 -> v1.12.1-rc1 2025-08-14T21:43:30.9621094Z * [new tag] v1.12.1-rc2 -> v1.12.1-rc2 2025-08-14T21:43:30.9621476Z * [new tag] v1.12.1-rc3 -> v1.12.1-rc3 2025-08-14T21:43:30.9621855Z * [new tag] v1.12.1-rc4 -> v1.12.1-rc4 2025-08-14T21:43:30.9622232Z * [new tag] v1.12.1-rc5 -> v1.12.1-rc5 2025-08-14T21:43:30.9622595Z * [new tag] v1.13.0 -> v1.13.0 2025-08-14T21:43:30.9622964Z * [new tag] v1.13.0-rc1 -> v1.13.0-rc1 2025-08-14T21:43:30.9623334Z * [new tag] v1.13.0-rc2 -> v1.13.0-rc2 2025-08-14T21:43:30.9623718Z * [new tag] v1.13.0-rc3 -> v1.13.0-rc3 2025-08-14T21:43:30.9624100Z * [new tag] v1.13.0-rc4 -> v1.13.0-rc4 2025-08-14T21:43:30.9624467Z * [new tag] v1.13.0-rc5 -> v1.13.0-rc5 2025-08-14T21:43:30.9624849Z * [new tag] v1.13.0-rc6 -> v1.13.0-rc6 2025-08-14T21:43:30.9625216Z * [new tag] v1.13.1 -> v1.13.1 2025-08-14T21:43:30.9625596Z * [new tag] v1.13.1-rc1 -> v1.13.1-rc1 2025-08-14T21:43:30.9625968Z * [new tag] v1.2.0 -> v1.2.0 2025-08-14T21:43:30.9626338Z * [new tag] v1.2.0a0 -> v1.2.0a0 2025-08-14T21:43:30.9626715Z * [new tag] v1.3.0 -> v1.3.0 2025-08-14T21:43:30.9627075Z * [new tag] v1.3.0a0 -> v1.3.0a0 2025-08-14T21:43:30.9627612Z * [new tag] v1.3.1 -> v1.3.1 2025-08-14T21:43:30.9627999Z * [new tag] v1.4.0 -> v1.4.0 2025-08-14T21:43:30.9628362Z * [new tag] v1.4.0a0 -> v1.4.0a0 2025-08-14T21:43:30.9628736Z * [new tag] v1.4.1 -> v1.4.1 2025-08-14T21:43:30.9629088Z * [new tag] v1.5.0 -> v1.5.0 2025-08-14T21:43:30.9629470Z * [new tag] v1.5.0-rc1 -> v1.5.0-rc1 2025-08-14T21:43:30.9629843Z * [new tag] v1.5.0-rc2 -> v1.5.0-rc2 2025-08-14T21:43:30.9630224Z * [new tag] v1.5.0-rc3 -> v1.5.0-rc3 2025-08-14T21:43:30.9630603Z * [new tag] v1.5.0-rc4 -> v1.5.0-rc4 2025-08-14T21:43:30.9630979Z * [new tag] v1.5.0-rc5 -> v1.5.0-rc5 2025-08-14T21:43:30.9631357Z * [new tag] v1.5.1 -> v1.5.1 2025-08-14T21:43:30.9631730Z * [new tag] v1.5.1-rc1 -> v1.5.1-rc1 2025-08-14T21:43:30.9632106Z * [new tag] v1.6.0 -> v1.6.0 2025-08-14T21:43:30.9632472Z * [new tag] v1.6.0-rc1 -> v1.6.0-rc1 2025-08-14T21:43:30.9632846Z * [new tag] v1.6.0-rc2 -> v1.6.0-rc2 2025-08-14T21:43:30.9633333Z * [new tag] v1.6.0-rc3 -> v1.6.0-rc3 2025-08-14T21:43:30.9633704Z * [new tag] v1.6.0-rc4 -> v1.6.0-rc4 2025-08-14T21:43:30.9634092Z * [new tag] v1.6.0-rc5 -> v1.6.0-rc5 2025-08-14T21:43:30.9634465Z * [new tag] v1.6.0-rc6 -> v1.6.0-rc6 2025-08-14T21:43:30.9634856Z * [new tag] v1.6.0-rc7 -> v1.6.0-rc7 2025-08-14T21:43:30.9635239Z * [new tag] v1.7.0 -> v1.7.0 2025-08-14T21:43:30.9635609Z * [new tag] v1.7.0-rc1 -> v1.7.0-rc1 2025-08-14T21:43:30.9635988Z * [new tag] v1.7.0-rc2 -> v1.7.0-rc2 2025-08-14T21:43:30.9636358Z * [new tag] v1.7.0-rc3 -> v1.7.0-rc3 2025-08-14T21:43:30.9636738Z * [new tag] v1.7.0-rc4 -> v1.7.0-rc4 2025-08-14T21:43:30.9637108Z * [new tag] v1.7.1 -> v1.7.1 2025-08-14T21:43:30.9637486Z * [new tag] v1.7.1-rc1 -> v1.7.1-rc1 2025-08-14T21:43:30.9637861Z * [new tag] v1.7.1-rc2 -> v1.7.1-rc2 2025-08-14T21:43:30.9638232Z * [new tag] v1.7.1-rc3 -> v1.7.1-rc3 2025-08-14T21:43:30.9638610Z * [new tag] v1.8.0 -> v1.8.0 2025-08-14T21:43:30.9638972Z * [new tag] v1.8.0-rc1 -> v1.8.0-rc1 2025-08-14T21:43:30.9639358Z * [new tag] v1.8.0-rc2 -> v1.8.0-rc2 2025-08-14T21:43:30.9639732Z * [new tag] v1.8.0-rc3 -> v1.8.0-rc3 2025-08-14T21:43:30.9640111Z * [new tag] v1.8.0-rc4 -> v1.8.0-rc4 2025-08-14T21:43:31.0006303Z * [new tag] v1.8.0-rc5 -> v1.8.0-rc5 2025-08-14T21:43:31.0006760Z * [new tag] v1.8.1 -> v1.8.1 2025-08-14T21:43:31.0007178Z * [new tag] v1.8.1-rc1 -> v1.8.1-rc1 2025-08-14T21:43:31.0007571Z * [new tag] v1.8.1-rc2 -> v1.8.1-rc2 2025-08-14T21:43:31.0007946Z * [new tag] v1.8.1-rc3 -> v1.8.1-rc3 2025-08-14T21:43:31.0011319Z * [new tag] v1.8.2 -> v1.8.2 2025-08-14T21:43:31.0020612Z * [new tag] v1.8.2-rc1 -> v1.8.2-rc1 2025-08-14T21:43:31.0031701Z * [new tag] v1.9.0 -> v1.9.0 2025-08-14T21:43:31.0032108Z * [new tag] v1.9.0-rc1 -> v1.9.0-rc1 2025-08-14T21:43:31.0032508Z * [new tag] v1.9.0-rc2 -> v1.9.0-rc2 2025-08-14T21:43:31.0032897Z * [new tag] v1.9.0-rc3 -> v1.9.0-rc3 2025-08-14T21:43:31.0033265Z * [new tag] v1.9.0-rc4 -> v1.9.0-rc4 2025-08-14T21:43:31.0033661Z * [new tag] v1.9.1 -> v1.9.1 2025-08-14T21:43:31.0034022Z * [new tag] v1.9.1-rc1 -> v1.9.1-rc1 2025-08-14T21:43:31.0034394Z * [new tag] v1.9.1-rc2 -> v1.9.1-rc2 2025-08-14T21:43:31.0034759Z * [new tag] v2.0.0 -> v2.0.0 2025-08-14T21:43:31.0035120Z * [new tag] v2.0.0-rc1 -> v2.0.0-rc1 2025-08-14T21:43:31.0035503Z * [new tag] v2.0.0-rc2 -> v2.0.0-rc2 2025-08-14T21:43:31.0035870Z * [new tag] v2.0.0-rc3 -> v2.0.0-rc3 2025-08-14T21:43:31.0038558Z * [new tag] v2.0.0-rc4 -> v2.0.0-rc4 2025-08-14T21:43:31.0038938Z * [new tag] v2.0.0-rc5 -> v2.0.0-rc5 2025-08-14T21:43:31.0039310Z * [new tag] v2.0.0-rc6 -> v2.0.0-rc6 2025-08-14T21:43:31.0039832Z * [new tag] v2.0.1 -> v2.0.1 2025-08-14T21:43:31.0040201Z * [new tag] v2.0.1-rc1 -> v2.0.1-rc1 2025-08-14T21:43:31.0040578Z * [new tag] v2.0.1-rc2 -> v2.0.1-rc2 2025-08-14T21:43:31.0040949Z * [new tag] v2.0.1-rc3 -> v2.0.1-rc3 2025-08-14T21:43:31.0041325Z * [new tag] v2.0.1-rc4 -> v2.0.1-rc4 2025-08-14T21:43:31.0041684Z * [new tag] v2.1.0 -> v2.1.0 2025-08-14T21:43:31.0042056Z * [new tag] v2.1.0-rc1 -> v2.1.0-rc1 2025-08-14T21:43:31.0042424Z * [new tag] v2.1.0-rc2 -> v2.1.0-rc2 2025-08-14T21:43:31.0042790Z * [new tag] v2.1.0-rc3 -> v2.1.0-rc3 2025-08-14T21:43:31.0045454Z * [new tag] v2.1.0-rc4 -> v2.1.0-rc4 2025-08-14T21:43:31.0045826Z * [new tag] v2.1.0-rc5 -> v2.1.0-rc5 2025-08-14T21:43:31.0046206Z * [new tag] v2.1.0-rc6 -> v2.1.0-rc6 2025-08-14T21:43:31.0046568Z * [new tag] v2.1.1 -> v2.1.1 2025-08-14T21:43:31.0046937Z * [new tag] v2.1.1-rc1 -> v2.1.1-rc1 2025-08-14T21:43:31.0047316Z * [new tag] v2.1.1-rc2 -> v2.1.1-rc2 2025-08-14T21:43:31.0047687Z * [new tag] v2.1.1-rc3 -> v2.1.1-rc3 2025-08-14T21:43:31.0048066Z * [new tag] v2.1.1-rc4 -> v2.1.1-rc4 2025-08-14T21:43:31.0048435Z * [new tag] v2.1.1-rc5 -> v2.1.1-rc5 2025-08-14T21:43:31.0048812Z * [new tag] v2.1.1-rc6 -> v2.1.1-rc6 2025-08-14T21:43:31.0049184Z * [new tag] v2.1.2 -> v2.1.2 2025-08-14T21:43:31.0049544Z * [new tag] v2.1.2-rc1 -> v2.1.2-rc1 2025-08-14T21:43:31.0052182Z * [new tag] v2.1.2-rc2 -> v2.1.2-rc2 2025-08-14T21:43:31.0052561Z * [new tag] v2.1.2-rc3 -> v2.1.2-rc3 2025-08-14T21:43:31.0052935Z * [new tag] v2.2.0 -> v2.2.0 2025-08-14T21:43:31.0053300Z * [new tag] v2.2.0-rc1 -> v2.2.0-rc1 2025-08-14T21:43:31.0053673Z * [new tag] v2.2.0-rc2 -> v2.2.0-rc2 2025-08-14T21:43:31.0054177Z * [new tag] v2.2.0-rc3 -> v2.2.0-rc3 2025-08-14T21:43:31.0054555Z * [new tag] v2.2.0-rc4 -> v2.2.0-rc4 2025-08-14T21:43:31.0054931Z * [new tag] v2.2.0-rc5 -> v2.2.0-rc5 2025-08-14T21:43:31.0055300Z * [new tag] v2.2.0-rc6 -> v2.2.0-rc6 2025-08-14T21:43:31.0055684Z * [new tag] v2.2.0-rc7 -> v2.2.0-rc7 2025-08-14T21:43:31.0056058Z * [new tag] v2.2.0-rc8 -> v2.2.0-rc8 2025-08-14T21:43:31.0056431Z * [new tag] v2.2.1 -> v2.2.1 2025-08-14T21:43:31.0056793Z * [new tag] v2.2.1-rc1 -> v2.2.1-rc1 2025-08-14T21:43:31.0057158Z * [new tag] v2.2.1-rc2 -> v2.2.1-rc2 2025-08-14T21:43:31.0057533Z * [new tag] v2.2.1-rc3 -> v2.2.1-rc3 2025-08-14T21:43:31.0404931Z * [new tag] v2.2.2 -> v2.2.2 2025-08-14T21:43:31.0405385Z * [new tag] v2.2.2-rc1 -> v2.2.2-rc1 2025-08-14T21:43:31.0405780Z * [new tag] v2.2.2-rc2 -> v2.2.2-rc2 2025-08-14T21:43:31.0406167Z * [new tag] v2.2.2-rc3 -> v2.2.2-rc3 2025-08-14T21:43:31.0406546Z * [new tag] v2.3.0 -> v2.3.0 2025-08-14T21:43:31.0407112Z * [new tag] v2.3.0-rc1 -> v2.3.0-rc1 2025-08-14T21:43:31.0407506Z * [new tag] v2.3.0-rc10 -> v2.3.0-rc10 2025-08-14T21:43:31.0407891Z * [new tag] v2.3.0-rc11 -> v2.3.0-rc11 2025-08-14T21:43:31.0408269Z * [new tag] v2.3.0-rc12 -> v2.3.0-rc12 2025-08-14T21:43:31.0409669Z * [new tag] v2.3.0-rc2 -> v2.3.0-rc2 2025-08-14T21:43:31.0410613Z * [new tag] v2.3.0-rc3 -> v2.3.0-rc3 2025-08-14T21:43:31.0411114Z * [new tag] v2.3.0-rc4 -> v2.3.0-rc4 2025-08-14T21:43:31.0411476Z * [new tag] v2.3.0-rc5 -> v2.3.0-rc5 2025-08-14T21:43:31.0411848Z * [new tag] v2.3.0-rc6 -> v2.3.0-rc6 2025-08-14T21:43:31.0412218Z * [new tag] v2.3.0-rc7 -> v2.3.0-rc7 2025-08-14T21:43:31.0412588Z * [new tag] v2.3.0-rc8 -> v2.3.0-rc8 2025-08-14T21:43:31.0412972Z * [new tag] v2.3.0-rc9 -> v2.3.0-rc9 2025-08-14T21:43:31.0413331Z * [new tag] v2.3.1 -> v2.3.1 2025-08-14T21:43:31.0413700Z * [new tag] v2.3.1-rc1 -> v2.3.1-rc1 2025-08-14T21:43:31.0414069Z * [new tag] v2.3.1-rc2 -> v2.3.1-rc2 2025-08-14T21:43:31.0414433Z * [new tag] v2.3.1-rc3 -> v2.3.1-rc3 2025-08-14T21:43:31.0414812Z * [new tag] v2.4.0 -> v2.4.0 2025-08-14T21:43:31.0415174Z * [new tag] v2.4.0-rc1 -> v2.4.0-rc1 2025-08-14T21:43:31.0417167Z * [new tag] v2.4.0-rc2 -> v2.4.0-rc2 2025-08-14T21:43:31.0417538Z * [new tag] v2.4.0-rc3 -> v2.4.0-rc3 2025-08-14T21:43:31.0417911Z * [new tag] v2.4.0-rc4 -> v2.4.0-rc4 2025-08-14T21:43:31.0418290Z * [new tag] v2.4.0-rc5 -> v2.4.0-rc5 2025-08-14T21:43:31.0418655Z * [new tag] v2.4.0-rc6 -> v2.4.0-rc6 2025-08-14T21:43:31.0419033Z * [new tag] v2.4.0-rc7 -> v2.4.0-rc7 2025-08-14T21:43:31.0419398Z * [new tag] v2.4.0-rc8 -> v2.4.0-rc8 2025-08-14T21:43:31.0419834Z * [new tag] v2.4.0-rc9 -> v2.4.0-rc9 2025-08-14T21:43:31.0420354Z * [new tag] v2.4.1 -> v2.4.1 2025-08-14T21:43:31.0420737Z * [new tag] v2.4.1-rc1 -> v2.4.1-rc1 2025-08-14T21:43:31.0421115Z * [new tag] v2.4.1-rc2 -> v2.4.1-rc2 2025-08-14T21:43:31.0422412Z * [new tag] v2.4.1-rc3 -> v2.4.1-rc3 2025-08-14T21:43:31.0423501Z * [new tag] v2.5.0 -> v2.5.0 2025-08-14T21:43:31.0423879Z * [new tag] v2.5.0-rc1 -> v2.5.0-rc1 2025-08-14T21:43:31.0424271Z * [new tag] v2.5.0-rc10 -> v2.5.0-rc10 2025-08-14T21:43:31.0424658Z * [new tag] v2.5.0-rc2 -> v2.5.0-rc2 2025-08-14T21:43:31.0425024Z * [new tag] v2.5.0-rc3 -> v2.5.0-rc3 2025-08-14T21:43:31.0425398Z * [new tag] v2.5.0-rc4 -> v2.5.0-rc4 2025-08-14T21:43:31.0425775Z * [new tag] v2.5.0-rc5 -> v2.5.0-rc5 2025-08-14T21:43:31.0426150Z * [new tag] v2.5.0-rc6 -> v2.5.0-rc6 2025-08-14T21:43:31.0426516Z * [new tag] v2.5.0-rc7 -> v2.5.0-rc7 2025-08-14T21:43:31.0426887Z * [new tag] v2.5.0-rc8 -> v2.5.0-rc8 2025-08-14T21:43:31.0427262Z * [new tag] v2.5.0-rc9 -> v2.5.0-rc9 2025-08-14T21:43:31.0428665Z * [new tag] v2.5.1 -> v2.5.1 2025-08-14T21:43:31.0429752Z * [new tag] v2.5.1-rc1 -> v2.5.1-rc1 2025-08-14T21:43:31.0430116Z * [new tag] v2.6.0 -> v2.6.0 2025-08-14T21:43:31.0430486Z * [new tag] v2.6.0-rc1 -> v2.6.0-rc1 2025-08-14T21:43:31.0430858Z * [new tag] v2.6.0-rc2 -> v2.6.0-rc2 2025-08-14T21:43:31.0431239Z * [new tag] v2.6.0-rc3 -> v2.6.0-rc3 2025-08-14T21:43:31.0431758Z * [new tag] v2.6.0-rc4 -> v2.6.0-rc4 2025-08-14T21:43:31.0432127Z * [new tag] v2.6.0-rc5 -> v2.6.0-rc5 2025-08-14T21:43:31.0432499Z * [new tag] v2.6.0-rc6 -> v2.6.0-rc6 2025-08-14T21:43:31.0432861Z * [new tag] v2.6.0-rc7 -> v2.6.0-rc7 2025-08-14T21:43:31.0433247Z * [new tag] v2.6.0-rc8 -> v2.6.0-rc8 2025-08-14T21:43:31.0433618Z * [new tag] v2.6.0-rc9 -> v2.6.0-rc9 2025-08-14T21:43:31.4793075Z * [new tag] v2.7.0 -> v2.7.0 2025-08-14T21:43:31.4793517Z * [new tag] v2.7.0-rc1 -> v2.7.0-rc1 2025-08-14T21:43:31.4793906Z * [new tag] v2.7.0-rc10 -> v2.7.0-rc10 2025-08-14T21:43:31.4794318Z * [new tag] v2.7.0-rc2 -> v2.7.0-rc2 2025-08-14T21:43:31.4794799Z * [new tag] v2.7.0-rc3 -> v2.7.0-rc3 2025-08-14T21:43:31.4795180Z * [new tag] v2.7.0-rc4 -> v2.7.0-rc4 2025-08-14T21:43:31.4795550Z * [new tag] v2.7.0-rc5 -> v2.7.0-rc5 2025-08-14T21:43:31.4802292Z * [new tag] v2.7.0-rc6 -> v2.7.0-rc6 2025-08-14T21:43:31.4802713Z * [new tag] v2.7.0-rc7 -> v2.7.0-rc7 2025-08-14T21:43:31.4803093Z * [new tag] v2.7.0-rc8 -> v2.7.0-rc8 2025-08-14T21:43:31.4803472Z * [new tag] v2.7.0-rc9 -> v2.7.0-rc9 2025-08-14T21:43:31.4803834Z * [new tag] v2.7.1 -> v2.7.1 2025-08-14T21:43:31.4804212Z * [new tag] v2.7.1-rc1 -> v2.7.1-rc1 2025-08-14T21:43:31.4804596Z * [new tag] v2.7.1-rc2 -> v2.7.1-rc2 2025-08-14T21:43:31.4805167Z * [new tag] v2.7.1-rc3 -> v2.7.1-rc3 2025-08-14T21:43:31.4805551Z * [new tag] v2.7.1-rc4 -> v2.7.1-rc4 2025-08-14T21:43:31.4805920Z * [new tag] v2.7.1-rc5 -> v2.7.1-rc5 2025-08-14T21:43:31.4806298Z * [new tag] v2.8.0 -> v2.8.0 2025-08-14T21:43:31.4806668Z * [new tag] v2.8.0-rc1 -> v2.8.0-rc1 2025-08-14T21:43:31.4807055Z * [new tag] v2.8.0-rc2 -> v2.8.0-rc2 2025-08-14T21:43:31.4807443Z * [new tag] v2.8.0-rc3 -> v2.8.0-rc3 2025-08-14T21:43:31.4807814Z * [new tag] v2.8.0-rc4 -> v2.8.0-rc4 2025-08-14T21:43:31.4808208Z * [new tag] v2.8.0-rc5 -> v2.8.0-rc5 2025-08-14T21:43:31.4808583Z * [new tag] v2.8.0-rc6 -> v2.8.0-rc6 2025-08-14T21:43:31.4808977Z * [new tag] v2.8.0-rc7 -> v2.8.0-rc7 2025-08-14T21:43:31.4809351Z * [new tag] v2.8.0-rc8 -> v2.8.0-rc8 2025-08-14T21:43:31.4809740Z * [new tag] whc_flight_1 -> whc_flight_1 2025-08-14T21:43:31.4810146Z * [new tag] whc_flight_2 -> whc_flight_2 2025-08-14T21:43:31.4810542Z * [new tag] whc_flight_4 -> whc_flight_4 2025-08-14T21:43:31.5011228Z [command]"C:\Program Files\Git\cmd\git.exe" rev-parse --verify --quiet 1fc683cf17c8c673044538d10266c00f92987be2^{object} 2025-08-14T21:43:31.5253830Z 1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:43:31.5291994Z ##[endgroup] 2025-08-14T21:43:31.5292414Z ##[group]Determining the checkout info 2025-08-14T21:43:31.5294230Z ##[endgroup] 2025-08-14T21:43:31.5306017Z [command]"C:\Program Files\Git\cmd\git.exe" sparse-checkout disable 2025-08-14T21:43:31.5624817Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all extensions.worktreeConfig 2025-08-14T21:43:31.5881632Z ##[group]Checking out the ref 2025-08-14T21:43:31.5893954Z [command]"C:\Program Files\Git\cmd\git.exe" checkout --progress --force 1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:43:32.6458505Z Updating files: 8% (1749/19474) 2025-08-14T21:43:32.7196508Z Updating files: 9% (1753/19474) 2025-08-14T21:43:32.8813801Z Updating files: 10% (1948/19474) 2025-08-14T21:43:32.9632550Z Updating files: 11% (2143/19474) 2025-08-14T21:43:33.0437922Z Updating files: 12% (2337/19474) 2025-08-14T21:43:33.1170134Z Updating files: 13% (2532/19474) 2025-08-14T21:43:33.1967422Z Updating files: 14% (2727/19474) 2025-08-14T21:43:33.2613728Z Updating files: 15% (2922/19474) 2025-08-14T21:43:33.3424021Z Updating files: 16% (3116/19474) 2025-08-14T21:43:33.4241700Z Updating files: 17% (3311/19474) 2025-08-14T21:43:33.5096891Z Updating files: 18% (3506/19474) 2025-08-14T21:43:33.8702720Z Updating files: 19% (3701/19474) 2025-08-14T21:43:33.8704443Z Updating files: 19% (3894/19474) 2025-08-14T21:43:33.9679138Z Updating files: 20% (3895/19474) 2025-08-14T21:43:34.0278898Z Updating files: 21% (4090/19474) 2025-08-14T21:43:34.1942354Z Updating files: 22% (4285/19474) 2025-08-14T21:43:34.2671670Z Updating files: 23% (4480/19474) 2025-08-14T21:43:34.3359992Z Updating files: 24% (4674/19474) 2025-08-14T21:43:34.3721113Z Updating files: 25% (4869/19474) 2025-08-14T21:43:34.4118898Z Updating files: 26% (5064/19474) 2025-08-14T21:43:34.4425777Z Updating files: 27% (5258/19474) 2025-08-14T21:43:34.4769714Z Updating files: 28% (5453/19474) 2025-08-14T21:43:34.5123764Z Updating files: 29% (5648/19474) 2025-08-14T21:43:34.6137739Z Updating files: 30% (5843/19474) 2025-08-14T21:43:34.6565023Z Updating files: 31% (6037/19474) 2025-08-14T21:43:34.7075690Z Updating files: 31% (6132/19474) 2025-08-14T21:43:34.8062647Z Updating files: 32% (6232/19474) 2025-08-14T21:43:34.9400463Z Updating files: 33% (6427/19474) 2025-08-14T21:43:35.0607947Z Updating files: 34% (6622/19474) 2025-08-14T21:43:35.1766424Z Updating files: 35% (6816/19474) 2025-08-14T21:43:35.2423933Z Updating files: 36% (7011/19474) 2025-08-14T21:43:35.4025734Z Updating files: 37% (7206/19474) 2025-08-14T21:43:35.4890542Z Updating files: 38% (7401/19474) 2025-08-14T21:43:35.5490043Z Updating files: 39% (7595/19474) 2025-08-14T21:43:35.6350372Z Updating files: 40% (7790/19474) 2025-08-14T21:43:35.6567345Z Updating files: 41% (7985/19474) 2025-08-14T21:43:35.6970556Z Updating files: 41% (8056/19474) 2025-08-14T21:43:35.7565041Z Updating files: 42% (8180/19474) 2025-08-14T21:43:35.8400765Z Updating files: 43% (8374/19474) 2025-08-14T21:43:35.8988487Z Updating files: 44% (8569/19474) 2025-08-14T21:43:35.9546167Z Updating files: 45% (8764/19474) 2025-08-14T21:43:36.0373453Z Updating files: 46% (8959/19474) 2025-08-14T21:43:36.1069633Z Updating files: 47% (9153/19474) 2025-08-14T21:43:36.1821415Z Updating files: 48% (9348/19474) 2025-08-14T21:43:36.2432333Z Updating files: 49% (9543/19474) 2025-08-14T21:43:36.3292669Z Updating files: 50% (9737/19474) 2025-08-14T21:43:36.4237311Z Updating files: 51% (9932/19474) 2025-08-14T21:43:36.4984276Z Updating files: 52% (10127/19474) 2025-08-14T21:43:36.5736905Z Updating files: 53% (10322/19474) 2025-08-14T21:43:36.6580645Z Updating files: 54% (10516/19474) 2025-08-14T21:43:36.6647959Z Updating files: 55% (10711/19474) 2025-08-14T21:43:36.7245630Z Updating files: 55% (10731/19474) 2025-08-14T21:43:36.8977587Z Updating files: 56% (10906/19474) 2025-08-14T21:43:36.9650428Z Updating files: 57% (11101/19474) 2025-08-14T21:43:37.0265959Z Updating files: 58% (11295/19474) 2025-08-14T21:43:37.1379360Z Updating files: 59% (11490/19474) 2025-08-14T21:43:37.2055252Z Updating files: 60% (11685/19474) 2025-08-14T21:43:37.2993414Z Updating files: 61% (11880/19474) 2025-08-14T21:43:37.3650999Z Updating files: 62% (12074/19474) 2025-08-14T21:43:37.5870127Z Updating files: 63% (12269/19474) 2025-08-14T21:43:37.9605934Z Updating files: 64% (12464/19474) 2025-08-14T21:43:38.7420073Z Updating files: 64% (12544/19474) 2025-08-14T21:43:38.9637302Z Updating files: 64% (12577/19474) 2025-08-14T21:43:39.0404128Z Updating files: 65% (12659/19474) 2025-08-14T21:43:39.1431643Z Updating files: 66% (12853/19474) 2025-08-14T21:43:39.2276644Z Updating files: 67% (13048/19474) 2025-08-14T21:43:39.2922475Z Updating files: 68% (13243/19474) 2025-08-14T21:43:39.3939663Z Updating files: 69% (13438/19474) 2025-08-14T21:43:39.5354220Z Updating files: 70% (13632/19474) 2025-08-14T21:43:39.7373717Z Updating files: 71% (13827/19474) 2025-08-14T21:43:39.7548142Z Updating files: 71% (13967/19474) 2025-08-14T21:43:39.8408079Z Updating files: 72% (14022/19474) 2025-08-14T21:43:39.9523178Z Updating files: 73% (14217/19474) 2025-08-14T21:43:40.1147382Z Updating files: 74% (14411/19474) 2025-08-14T21:43:40.2824440Z Updating files: 75% (14606/19474) 2025-08-14T21:43:40.4473228Z Updating files: 76% (14801/19474) 2025-08-14T21:43:40.5744241Z Updating files: 77% (14995/19474) 2025-08-14T21:43:40.6791552Z Updating files: 78% (15190/19474) 2025-08-14T21:43:40.6943337Z Updating files: 79% (15385/19474) 2025-08-14T21:43:40.8289521Z Updating files: 79% (15407/19474) 2025-08-14T21:43:40.9611025Z Updating files: 80% (15580/19474) 2025-08-14T21:43:41.2219336Z Updating files: 81% (15774/19474) 2025-08-14T21:43:41.3484598Z Updating files: 82% (15969/19474) 2025-08-14T21:43:41.4533651Z Updating files: 83% (16164/19474) 2025-08-14T21:43:41.5772863Z Updating files: 84% (16359/19474) 2025-08-14T21:43:41.6826280Z Updating files: 85% (16553/19474) 2025-08-14T21:43:41.7020606Z Updating files: 86% (16748/19474) 2025-08-14T21:43:42.1004201Z Updating files: 86% (16780/19474) 2025-08-14T21:43:42.2060583Z Updating files: 87% (16943/19474) 2025-08-14T21:43:42.3370628Z Updating files: 88% (17138/19474) 2025-08-14T21:43:42.4598401Z Updating files: 89% (17332/19474) 2025-08-14T21:43:42.5695036Z Updating files: 90% (17527/19474) 2025-08-14T21:43:42.7019821Z Updating files: 91% (17722/19474) 2025-08-14T21:43:42.7020743Z Updating files: 91% (17916/19474) 2025-08-14T21:43:42.8034019Z Updating files: 92% (17917/19474) 2025-08-14T21:43:42.9465806Z Updating files: 93% (18111/19474) 2025-08-14T21:43:43.1052592Z Updating files: 94% (18306/19474) 2025-08-14T21:43:43.2217749Z Updating files: 95% (18501/19474) 2025-08-14T21:43:43.3549868Z Updating files: 96% (18696/19474) 2025-08-14T21:43:43.4652080Z Updating files: 97% (18890/19474) 2025-08-14T21:43:43.6297750Z Updating files: 98% (19085/19474) 2025-08-14T21:43:43.7153858Z Updating files: 99% (19280/19474) 2025-08-14T21:43:43.7437989Z Updating files: 99% (19429/19474) 2025-08-14T21:43:43.7438422Z Updating files: 100% (19474/19474) 2025-08-14T21:43:43.7438719Z Updating files: 100% (19474/19474), done. 2025-08-14T21:43:43.7900467Z Note: switching to '1fc683cf17c8c673044538d10266c00f92987be2'. 2025-08-14T21:43:43.7900867Z 2025-08-14T21:43:43.7901084Z You are in 'detached HEAD' state. You can look around, make experimental 2025-08-14T21:43:43.7901639Z changes and commit them, and you can discard any commits you make in this 2025-08-14T21:43:43.7902175Z state without impacting any branches by switching back to a branch. 2025-08-14T21:43:43.7902510Z 2025-08-14T21:43:43.7902705Z If you want to create a new branch to retain commits you create, you may 2025-08-14T21:43:43.7903428Z do so (now or later) by using -c with the switch command. Example: 2025-08-14T21:43:43.7903733Z 2025-08-14T21:43:43.7903848Z git switch -c 2025-08-14T21:43:43.7904039Z 2025-08-14T21:43:43.7904159Z Or undo this operation with: 2025-08-14T21:43:43.7904337Z 2025-08-14T21:43:43.7904418Z git switch - 2025-08-14T21:43:43.7904561Z 2025-08-14T21:43:43.7904789Z Turn off this advice by setting config variable advice.detachedHead to false 2025-08-14T21:43:43.7905235Z 2025-08-14T21:43:43.7905641Z HEAD is now at 1fc683cf17c [Inductor] Allow indexing a flexible layout for extract_input_node_reduction_ranges (#160645) 2025-08-14T21:43:43.8094356Z ##[endgroup] 2025-08-14T21:43:43.8094805Z ##[group]Setting up auth for fetching submodules 2025-08-14T21:43:43.8109645Z [command]"C:\Program Files\Git\cmd\git.exe" config --global http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-08-14T21:43:43.8459880Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --unset-all url.https://github.com/.insteadOf 2025-08-14T21:43:43.8724584Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf git@github.com: 2025-08-14T21:43:43.9008689Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-08-14T21:43:43.9267479Z ##[endgroup] 2025-08-14T21:43:43.9267954Z ##[group]Fetching submodules 2025-08-14T21:43:43.9279463Z [command]"C:\Program Files\Git\cmd\git.exe" submodule sync --recursive 2025-08-14T21:43:44.3315246Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 submodule update --init --force --recursive 2025-08-14T21:43:44.7883590Z Submodule 'android/libs/fbjni' (https://github.com/facebookincubator/fbjni.git) registered for path 'android/libs/fbjni' 2025-08-14T21:43:44.7884626Z Submodule 'third_party/NNPACK_deps/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'third_party/FP16' 2025-08-14T21:43:44.7885650Z Submodule 'third_party/NNPACK_deps/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'third_party/FXdiv' 2025-08-14T21:43:44.7886622Z Submodule 'third_party/NNPACK' (https://github.com/Maratyszcza/NNPACK.git) registered for path 'third_party/NNPACK' 2025-08-14T21:43:44.7887497Z Submodule 'third_party/NVTX' (https://github.com/NVIDIA/NVTX.git) registered for path 'third_party/NVTX' 2025-08-14T21:43:44.7889547Z Submodule 'third_party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'third_party/VulkanMemoryAllocator' 2025-08-14T21:43:44.7890796Z Submodule 'third_party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'third_party/XNNPACK' 2025-08-14T21:43:44.7891670Z Submodule 'third_party/aiter' (https://github.com/ROCm/aiter.git) registered for path 'third_party/aiter' 2025-08-14T21:43:44.7892572Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/benchmark' 2025-08-14T21:43:44.7893626Z Submodule 'third_party/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/composable_kernel' 2025-08-14T21:43:44.7894726Z Submodule 'third_party/cpp-httplib' (https://github.com/yhirose/cpp-httplib.git) registered for path 'third_party/cpp-httplib' 2025-08-14T21:43:44.7895708Z Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'third_party/cpuinfo' 2025-08-14T21:43:44.7896707Z Submodule 'third_party/cudnn_frontend' (https://github.com/NVIDIA/cudnn-frontend.git) registered for path 'third_party/cudnn_frontend' 2025-08-14T21:43:44.7897702Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/cutlass' 2025-08-14T21:43:44.7898658Z Submodule 'third_party/fbgemm' (https://github.com/pytorch/fbgemm) registered for path 'third_party/fbgemm' 2025-08-14T21:43:44.7899666Z Submodule 'third_party/flash-attention' (https://github.com/Dao-AILab/flash-attention.git) registered for path 'third_party/flash-attention' 2025-08-14T21:43:44.7900921Z Submodule 'third_party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third_party/flatbuffers' 2025-08-14T21:43:44.7901819Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/fmt' 2025-08-14T21:43:44.7902757Z Submodule 'third_party/gemmlowp/gemmlowp' (https://github.com/google/gemmlowp.git) registered for path 'third_party/gemmlowp/gemmlowp' 2025-08-14T21:43:44.7903704Z Submodule 'third_party/gloo' (https://github.com/pytorch/gloo) registered for path 'third_party/gloo' 2025-08-14T21:43:44.7904598Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/googletest' 2025-08-14T21:43:44.7905496Z Submodule 'third_party/ideep' (https://github.com/intel/ideep) registered for path 'third_party/ideep' 2025-08-14T21:43:44.7906324Z Submodule 'third_party/ittapi' (https://github.com/intel/ittapi.git) registered for path 'third_party/ittapi' 2025-08-14T21:43:44.7907179Z Submodule 'third_party/kineto' (https://github.com/pytorch/kineto) registered for path 'third_party/kineto' 2025-08-14T21:43:44.7908092Z Submodule 'third_party/kleidiai' (https://github.com/ARM-software/kleidiai.git) registered for path 'third_party/kleidiai' 2025-08-14T21:43:44.7909073Z Submodule 'third_party/mimalloc' (https://github.com/microsoft/mimalloc.git) registered for path 'third_party/mimalloc' 2025-08-14T21:43:44.7910012Z Submodule 'third_party/nlohmann' (https://github.com/nlohmann/json.git) registered for path 'third_party/nlohmann' 2025-08-14T21:43:44.7910849Z Submodule 'third_party/onnx' (https://github.com/onnx/onnx.git) registered for path 'third_party/onnx' 2025-08-14T21:43:44.7911887Z Submodule 'third_party/opentelemetry-cpp' (https://github.com/open-telemetry/opentelemetry-cpp.git) registered for path 'third_party/opentelemetry-cpp' 2025-08-14T21:43:44.7913021Z Submodule 'third_party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third_party/pocketfft' 2025-08-14T21:43:44.7914010Z Submodule 'third_party/protobuf' (https://github.com/protocolbuffers/protobuf.git) registered for path 'third_party/protobuf' 2025-08-14T21:43:44.7915026Z Submodule 'third_party/NNPACK_deps/psimd' (https://github.com/Maratyszcza/psimd.git) registered for path 'third_party/psimd' 2025-08-14T21:43:44.7916216Z Submodule 'third_party/NNPACK_deps/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'third_party/pthreadpool' 2025-08-14T21:43:44.7957086Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/pybind11' 2025-08-14T21:43:44.7958101Z Submodule 'third_party/python-peachpy' (https://github.com/malfet/PeachPy.git) registered for path 'third_party/python-peachpy' 2025-08-14T21:43:44.7959039Z Submodule 'third_party/sleef' (https://github.com/shibatch/sleef) registered for path 'third_party/sleef' 2025-08-14T21:43:44.7959980Z Submodule 'third_party/tensorpipe' (https://github.com/pytorch/tensorpipe.git) registered for path 'third_party/tensorpipe' 2025-08-14T21:43:44.8703075Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/android/libs/fbjni'... 2025-08-14T21:43:45.5601123Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FP16'... 2025-08-14T21:43:45.5601955Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FXdiv'... 2025-08-14T21:43:46.4711936Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flatbuffers'... 2025-08-14T21:43:56.4112507Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NNPACK'... 2025-08-14T21:43:56.4113671Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX'... 2025-08-14T21:43:56.4114789Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/benchmark'... 2025-08-14T21:43:56.4116096Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention'... 2025-08-14T21:43:56.4117612Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gloo'... 2025-08-14T21:43:56.4119773Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpp-httplib'... 2025-08-14T21:43:56.4121029Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gemmlowp/gemmlowp'... 2025-08-14T21:43:56.4122317Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpuinfo'... 2025-08-14T21:43:56.4123502Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep'... 2025-08-14T21:43:56.4124600Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ittapi'... 2025-08-14T21:43:56.4125702Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/aiter'... 2025-08-14T21:43:56.4126808Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kleidiai'... 2025-08-14T21:43:56.4127901Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fmt'... 2025-08-14T21:43:56.6224141Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/psimd'... 2025-08-14T21:43:57.5347664Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/mimalloc'... 2025-08-14T21:43:57.5367297Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/googletest'... 2025-08-14T21:43:57.5370636Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pocketfft'... 2025-08-14T21:44:16.7928169Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto'... 2025-08-14T21:44:16.7929006Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/VulkanMemoryAllocator'... 2025-08-14T21:44:16.7929794Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/composable_kernel'... 2025-08-14T21:44:16.7930545Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cudnn_frontend'... 2025-08-14T21:44:16.7931156Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm'... 2025-08-14T21:44:16.7931764Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pthreadpool'... 2025-08-14T21:44:16.7932397Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/python-peachpy'... 2025-08-14T21:44:16.7933015Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe'... 2025-08-14T21:44:16.7933602Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cutlass'... 2025-08-14T21:44:16.7934164Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/XNNPACK'... 2025-08-14T21:44:16.7934938Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/sleef'... 2025-08-14T21:44:16.7935529Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pybind11'... 2025-08-14T21:44:16.7936176Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx'... 2025-08-14T21:44:16.7936826Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/nlohmann'... 2025-08-14T21:44:16.7937396Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf'... 2025-08-14T21:44:16.7938032Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp'... 2025-08-14T21:44:16.9769607Z Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' 2025-08-14T21:44:17.0980340Z Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-08-14T21:44:17.1757095Z Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-08-14T21:44:17.4338777Z Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' 2025-08-14T21:44:17.9856124Z Submodule path 'third_party/NVTX': checked out '2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07' 2025-08-14T21:44:18.2537711Z Submodule path 'third_party/VulkanMemoryAllocator': checked out '1d8f600fd424278486eade7ed3e877c99f0846b1' 2025-08-14T21:44:28.2387460Z Submodule path 'third_party/XNNPACK': checked out '51a0103656eff6fc9bfd39a4597923c4b542c883' 2025-08-14T21:44:29.4446449Z Submodule path 'third_party/aiter': checked out '01aae101b9e5e94d6c16a9514c9fb8df99c93150' 2025-08-14T21:44:29.4567285Z Submodule '3rdparty/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T21:44:33.1556230Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/aiter/3rdparty/composable_kernel'... 2025-08-14T21:44:36.5780846Z Submodule path 'third_party/aiter/3rdparty/composable_kernel': checked out 'cffe8fa2a442ac8e80dd236a1a5d24fe3d7e0cbf' 2025-08-14T21:44:37.2943151Z Submodule path 'third_party/benchmark': checked out '299e5928955cc62af9968370293b916f5130916f' 2025-08-14T21:44:40.7864511Z Submodule path 'third_party/composable_kernel': checked out '7fe50dc3da2069d6645d9deb8c017a876472a977' 2025-08-14T21:44:40.9864710Z Submodule path 'third_party/cpp-httplib': checked out '3af7f2c16147f3fbc6e4d717032daf505dc1652c' 2025-08-14T21:44:41.7045435Z Submodule path 'third_party/cpuinfo': checked out '5e3d2445e6a84d9599bee2bf78edbb4d80865e1d' 2025-08-14T21:44:42.0990072Z Submodule path 'third_party/cudnn_frontend': checked out 'f937055efc6d414d11f4c6577e3977fe74f35fb6' 2025-08-14T21:44:49.1500901Z Submodule path 'third_party/cutlass': checked out 'e51efbfe18fe4f4cbb66ab814c55bf4aa0185491' 2025-08-14T21:44:50.6246685Z Submodule path 'third_party/fbgemm': checked out '21c7d30c526c0f1ad873ecc632dca6cfa8a69067' 2025-08-14T21:44:50.6483553Z Submodule 'external/asmjit' (https://github.com/asmjit/asmjit.git) registered for path 'third_party/fbgemm/external/asmjit' 2025-08-14T21:44:50.6484789Z Submodule 'external/composable_kernel' (https://github.com/jwfromm/composable_kernel.git) registered for path 'third_party/fbgemm/external/composable_kernel' 2025-08-14T21:44:50.6486035Z Submodule 'external/cpuinfo' (https://github.com/pytorch/cpuinfo) registered for path 'third_party/fbgemm/external/cpuinfo' 2025-08-14T21:44:50.6487140Z Submodule 'external/cutlass' (https://github.com/jwfromm/cutlass) registered for path 'third_party/fbgemm/external/cutlass' 2025-08-14T21:44:50.6488198Z Submodule 'external/googletest' (https://github.com/google/googletest) registered for path 'third_party/fbgemm/external/googletest' 2025-08-14T21:44:50.6489379Z Submodule 'external/hipify_torch' (https://github.com/ROCmSoftwarePlatform/hipify_torch.git) registered for path 'third_party/fbgemm/external/hipify_torch' 2025-08-14T21:44:50.6490494Z Submodule 'external/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/fbgemm/external/json' 2025-08-14T21:45:01.0072034Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/asmjit'... 2025-08-14T21:45:01.0072833Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/hipify_torch'... 2025-08-14T21:45:01.0073598Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cpuinfo'... 2025-08-14T21:45:01.0074358Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/composable_kernel'... 2025-08-14T21:45:01.0075165Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/googletest'... 2025-08-14T21:45:01.0076009Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cutlass'... 2025-08-14T21:45:01.0076802Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/json'... 2025-08-14T21:45:01.2521672Z Submodule path 'third_party/fbgemm/external/asmjit': checked out 'a3199e8857792cd10b7589ff5d58343d2c9008ea' 2025-08-14T21:45:05.2971662Z Submodule path 'third_party/fbgemm/external/composable_kernel': checked out 'b1281b8b08d973a7064f864f47eeb30f3e2596e9' 2025-08-14T21:45:05.7949598Z Submodule path 'third_party/fbgemm/external/cpuinfo': checked out '6543fec09b2f04ac4a666882998b534afc9c1349' 2025-08-14T21:45:11.5039766Z Submodule path 'third_party/fbgemm/external/cutlass': checked out 'b40777404c174b9694a870bff5c13ce6b7f656ad' 2025-08-14T21:45:11.7638153Z Submodule path 'third_party/fbgemm/external/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-08-14T21:45:11.9525939Z Submodule path 'third_party/fbgemm/external/hipify_torch': checked out 'a4337c69fe0e2552a7b7b0669178926beeed828c' 2025-08-14T21:45:12.8237657Z Submodule path 'third_party/fbgemm/external/json': checked out '9cca280a4d0ccf0c08f47a99aa71d1b0e52f8d03' 2025-08-14T21:45:13.5346040Z Submodule path 'third_party/flash-attention': checked out '979702c87a8713a8e0a5e9fee122b90d2ef13be5' 2025-08-14T21:45:13.5479842Z Submodule 'csrc/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T21:45:13.5481026Z Submodule 'csrc/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/flash-attention/csrc/cutlass' 2025-08-14T21:45:17.8598093Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/composable_kernel'... 2025-08-14T21:45:17.8599193Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/cutlass'... 2025-08-14T21:45:20.4560080Z Submodule path 'third_party/flash-attention/csrc/composable_kernel': checked out '888317e698e9803c62bd38568abc9e05d7709f33' 2025-08-14T21:45:25.5564745Z Submodule path 'third_party/flash-attention/csrc/cutlass': checked out 'c506e16788cb08416a4a57e11a9067beeee29420' 2025-08-14T21:45:27.0620106Z Submodule path 'third_party/flatbuffers': checked out 'a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757' 2025-08-14T21:45:27.2249128Z Submodule path 'third_party/fmt': checked out '40626af88bd7df9a5fb80be7b25ac85b122d6c21' 2025-08-14T21:45:27.4598266Z Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' 2025-08-14T21:45:27.8571122Z Submodule path 'third_party/gloo': checked out 'c7b7b022c124d9643957d9bd55f57ac59fce8fa2' 2025-08-14T21:45:28.1379835Z Submodule path 'third_party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-08-14T21:45:28.5875087Z Submodule path 'third_party/ideep': checked out '719d8e6cd7f7a0e01b155657526d693acf97c2b3' 2025-08-14T21:45:28.5995705Z Submodule 'mkl-dnn' (https://github.com/intel/mkl-dnn.git) registered for path 'third_party/ideep/mkl-dnn' 2025-08-14T21:45:41.0117585Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep/mkl-dnn'... 2025-08-14T21:45:45.9059731Z Submodule path 'third_party/ideep/mkl-dnn': checked out '8d263e693366ef8db40acc569cc7d8edf644556d' 2025-08-14T21:45:46.1596964Z Submodule path 'third_party/ittapi': checked out 'dec1d23ca65ab069d225dfe40dea14f455170959' 2025-08-14T21:45:46.8694315Z Submodule path 'third_party/kineto': checked out '5e7501833f1021ce6f618572d3baf657b6319658' 2025-08-14T21:45:46.9765235Z Submodule 'libkineto/third_party/dynolog' (https://github.com/facebookincubator/dynolog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T21:45:46.9766547Z Submodule 'libkineto/third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T21:45:46.9767921Z Submodule 'libkineto/third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T21:45:49.1278395Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog'... 2025-08-14T21:45:49.1279274Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/fmt'... 2025-08-14T21:45:49.1280149Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/googletest'... 2025-08-14T21:45:49.5011472Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' 2025-08-14T21:45:49.5266336Z Submodule 'third_party/DCGM' (https://github.com/NVIDIA/DCGM.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T21:45:49.5267820Z Submodule 'third_party/cpr' (https://github.com/libcpr/cpr.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T21:45:49.5269032Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T21:45:49.5270336Z Submodule 'third_party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T21:45:49.5271592Z Submodule 'third_party/glog' (https://github.com/google/glog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T21:45:49.5273099Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T21:45:49.5274439Z Submodule 'third_party/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T21:45:49.5275678Z Submodule 'third_party/pfs' (https://github.com/dtrugman/pfs.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T21:45:49.6292861Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM'... 2025-08-14T21:45:58.0730296Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/cpr'... 2025-08-14T21:45:58.0731391Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags'... 2025-08-14T21:45:58.0732601Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/pfs'... 2025-08-14T21:45:58.0733598Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/glog'... 2025-08-14T21:45:58.0734665Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/googletest'... 2025-08-14T21:45:58.0735697Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/fmt'... 2025-08-14T21:45:58.0736679Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/json'... 2025-08-14T21:45:58.9230470Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' 2025-08-14T21:45:59.1287442Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' 2025-08-14T21:45:59.6687264Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' 2025-08-14T21:45:59.8092819Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' 2025-08-14T21:45:59.8214417Z 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:46:00.2460728Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc'... 2025-08-14T21:46:00.3220572Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' 2025-08-14T21:46:00.9581023Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' 2025-08-14T21:46:01.4541447Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' 2025-08-14T21:46:02.3565519Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' 2025-08-14T21:46:02.4750883Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' 2025-08-14T21:46:02.6558633Z Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '0041a40c1350ba702d475b9c4ad62da77caea164' 2025-08-14T21:46:02.8793405Z Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' 2025-08-14T21:46:03.1589535Z Submodule path 'third_party/kleidiai': checked out 'cca02c2f69dd18e1f12647c1c0bdc8cf90e680c7' 2025-08-14T21:46:03.3633917Z Submodule path 'third_party/mimalloc': checked out 'fbd8b99c2b828428947d70fdc046bb55609be93e' 2025-08-14T21:46:03.9297592Z Submodule path 'third_party/nlohmann': checked out '55f93686c01528224f448c19128836e7df245f72' 2025-08-14T21:46:07.8533363Z Submodule path 'third_party/onnx': checked out 'e709452ef2bbc1d113faf678c24e6d3467696e83' 2025-08-14T21:46:07.8677988Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/onnx/third_party/pybind11' 2025-08-14T21:46:08.9957074Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx/third_party/pybind11'... 2025-08-14T21:46:09.2557570Z Submodule path 'third_party/onnx/third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-08-14T21:46:10.0717998Z Submodule path 'third_party/opentelemetry-cpp': checked out 'a799f4aed9c94b765dcdaabaeab7d5e7e2310878' 2025-08-14T21:46:10.0986550Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark) registered for path 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T21:46:10.0987802Z Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T21:46:10.0989013Z Submodule 'third_party/ms-gsl' (https://github.com/microsoft/GSL) registered for path 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T21:46:10.0990178Z Submodule 'third_party/nlohmann-json' (https://github.com/nlohmann/json) registered for path 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T21:46:10.0991581Z 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:46:10.0993325Z 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:46:10.0994738Z 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:46:10.0995913Z Submodule 'tools/vcpkg' (https://github.com/Microsoft/vcpkg) registered for path 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T21:46:10.1440677Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/benchmark'... 2025-08-14T21:46:23.0364333Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentracing-cpp'... 2025-08-14T21:46:23.0365375Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentelemetry-proto'... 2025-08-14T21:46:23.0366349Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/ms-gsl'... 2025-08-14T21:46:23.0367242Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp'... 2025-08-14T21:46:23.0368159Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/googletest'... 2025-08-14T21:46:23.0369158Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/nlohmann-json'... 2025-08-14T21:46:23.0370397Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/tools/vcpkg'... 2025-08-14T21:46:23.1624497Z Submodule path 'third_party/opentelemetry-cpp/third_party/benchmark': checked out 'd572f4777349d43653b21d6c2fc63020ab326db2' 2025-08-14T21:46:23.3686413Z Submodule path 'third_party/opentelemetry-cpp/third_party/googletest': checked out 'b796f7d44681514f58a683a3a71ff17c94edb0c1' 2025-08-14T21:46:23.4677994Z Submodule path 'third_party/opentelemetry-cpp/third_party/ms-gsl': checked out '6f4529395c5b7c2d661812257cd6780c67e54afa' 2025-08-14T21:46:24.1156683Z Submodule path 'third_party/opentelemetry-cpp/third_party/nlohmann-json': checked out 'bc889afb4c5bf1c0d8ee29ef35eaaf4c8bef8a5d' 2025-08-14T21:46:24.3078464Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto': checked out '4ca4f0335c63cda7ab31ea7ed70d6553aee14dce' 2025-08-14T21:46:24.4328071Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp': checked out '06b57f48ded1fa3bdd3d4346f6ef29e40e08eaf5' 2025-08-14T21:46:24.5761505Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp': checked out 'c9ffcdda9086ffd9e1283ea7a0276d831f3c8a8d' 2025-08-14T21:46:24.5905024Z Submodule 'civetweb' (https://github.com/civetweb/civetweb.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T21:46:24.5906449Z Submodule 'googletest' (https://github.com/google/googletest.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T21:46:26.9295751Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb'... 2025-08-14T21:46:26.9296932Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest'... 2025-08-14T21:46:27.8770794Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'eefb26f82b233268fc98577d265352720d477ba4' 2025-08-14T21:46:28.1537325Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-08-14T21:46:34.9289653Z Submodule path 'third_party/opentelemetry-cpp/tools/vcpkg': checked out '8eb57355a4ffb410a2e94c07b4dca2dffbee8e50' 2025-08-14T21:46:35.0423013Z Submodule path 'third_party/pocketfft': checked out '0fa0ef591e38c2758e3184c6c23e497b9f732ffa' 2025-08-14T21:46:38.0502104Z Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' 2025-08-14T21:46:38.0650152Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/protobuf/third_party/benchmark' 2025-08-14T21:46:38.0651362Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/protobuf/third_party/googletest' 2025-08-14T21:46:39.4334173Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/benchmark'... 2025-08-14T21:46:39.4335027Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/googletest'... 2025-08-14T21:46:39.5367396Z Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' 2025-08-14T21:46:39.8249822Z Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' 2025-08-14T21:46:39.9093064Z Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' 2025-08-14T21:46:40.0750154Z Submodule path 'third_party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-08-14T21:46:40.2812396Z Submodule path 'third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-08-14T21:46:40.4340223Z Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' 2025-08-14T21:46:40.6412781Z Submodule path 'third_party/sleef': checked out '5a1d179df9cf652951b59010a2d2075372d67f68' 2025-08-14T21:46:41.5715826Z Submodule path 'third_party/tensorpipe': checked out 'dacda0567d9f23d4bc503e1c4f84aa65f33ac38a' 2025-08-14T21:46:41.5956621Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/tensorpipe/third_party/googletest' 2025-08-14T21:46:41.5957811Z Submodule 'third_party/libnop' (https://github.com/google/libnop.git) registered for path 'third_party/tensorpipe/third_party/libnop' 2025-08-14T21:46:41.5958925Z Submodule 'third_party/libuv' (https://github.com/libuv/libuv.git) registered for path 'third_party/tensorpipe/third_party/libuv' 2025-08-14T21:46:41.5960099Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T21:46:44.0954482Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/googletest'... 2025-08-14T21:46:44.0955375Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libnop'... 2025-08-14T21:46:44.0956187Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11'... 2025-08-14T21:46:44.0957078Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libuv'... 2025-08-14T21:46:44.3782397Z Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' 2025-08-14T21:46:44.4974896Z Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' 2025-08-14T21:46:44.8177123Z Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '5152db2cbfeb5582e9c27c5ea1dba2cd9e10759b' 2025-08-14T21:46:44.9939602Z Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' 2025-08-14T21:46:45.0055084Z Submodule 'tools/clang' (https://github.com/wjakob/clang-cindex-python3) registered for path 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T21:46:45.3361529Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11/tools/clang'... 2025-08-14T21:46:45.4034622Z Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' 2025-08-14T21:46:45.4304295Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local gc.auto 0" 2025-08-14T21:46:45.8456101Z Entering 'android/libs/fbjni' 2025-08-14T21:46:45.8875374Z Entering 'third_party/FP16' 2025-08-14T21:46:45.9291789Z Entering 'third_party/FXdiv' 2025-08-14T21:46:45.9708548Z Entering 'third_party/NNPACK' 2025-08-14T21:46:46.0124871Z Entering 'third_party/NVTX' 2025-08-14T21:46:46.0583518Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-14T21:46:46.1057879Z Entering 'third_party/XNNPACK' 2025-08-14T21:46:46.1549235Z Entering 'third_party/aiter' 2025-08-14T21:46:46.1988883Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T21:46:46.2483855Z Entering 'third_party/benchmark' 2025-08-14T21:46:46.2930115Z Entering 'third_party/composable_kernel' 2025-08-14T21:46:46.3394742Z Entering 'third_party/cpp-httplib' 2025-08-14T21:46:46.3855189Z Entering 'third_party/cpuinfo' 2025-08-14T21:46:46.4317985Z Entering 'third_party/cudnn_frontend' 2025-08-14T21:46:46.4784727Z Entering 'third_party/cutlass' 2025-08-14T21:46:46.5208197Z Entering 'third_party/fbgemm' 2025-08-14T21:46:46.5666540Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-14T21:46:46.6085243Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-14T21:46:46.6589862Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-14T21:46:46.7009029Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-14T21:46:46.7470081Z Entering 'third_party/fbgemm/external/googletest' 2025-08-14T21:46:46.7918460Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-14T21:46:46.8344075Z Entering 'third_party/fbgemm/external/json' 2025-08-14T21:46:46.8857704Z Entering 'third_party/flash-attention' 2025-08-14T21:46:46.9258389Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T21:46:46.9683261Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-14T21:46:47.0223933Z Entering 'third_party/flatbuffers' 2025-08-14T21:46:47.0653423Z Entering 'third_party/fmt' 2025-08-14T21:46:47.1172839Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-14T21:46:47.1655153Z Entering 'third_party/gloo' 2025-08-14T21:46:47.2068711Z Entering 'third_party/googletest' 2025-08-14T21:46:47.2539110Z Entering 'third_party/ideep' 2025-08-14T21:46:47.2940193Z Entering 'third_party/ideep/mkl-dnn' 2025-08-14T21:46:47.3383824Z Entering 'third_party/ittapi' 2025-08-14T21:46:47.3803517Z Entering 'third_party/kineto' 2025-08-14T21:46:47.4209376Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T21:46:47.4656469Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T21:46:47.5141504Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T21:46:47.5599791Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T21:46:47.6047669Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T21:46:47.6471747Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T21:46:47.6915213Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T21:46:47.7404526Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T21:46:47.7835988Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T21:46:47.8257697Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T21:46:47.8734940Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T21:46:47.9189427Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T21:46:47.9633481Z Entering 'third_party/kleidiai' 2025-08-14T21:46:48.0059123Z Entering 'third_party/mimalloc' 2025-08-14T21:46:48.0468226Z Entering 'third_party/nlohmann' 2025-08-14T21:46:48.0918088Z Entering 'third_party/onnx' 2025-08-14T21:46:48.1369252Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-14T21:46:48.1807622Z Entering 'third_party/opentelemetry-cpp' 2025-08-14T21:46:48.2289136Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T21:46:48.2711869Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T21:46:48.3150490Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T21:46:48.3583306Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T21:46:48.4101212Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T21:46:48.4593152Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T21:46:48.5018015Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T21:46:48.5421945Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T21:46:48.5882673Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T21:46:48.6320312Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T21:46:48.6844997Z Entering 'third_party/pocketfft' 2025-08-14T21:46:48.7264866Z Entering 'third_party/protobuf' 2025-08-14T21:46:48.7673758Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-14T21:46:48.8101368Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-14T21:46:48.8547901Z Entering 'third_party/psimd' 2025-08-14T21:46:48.9045850Z Entering 'third_party/pthreadpool' 2025-08-14T21:46:48.9445479Z Entering 'third_party/pybind11' 2025-08-14T21:46:48.9854450Z Entering 'third_party/python-peachpy' 2025-08-14T21:46:49.0297430Z Entering 'third_party/sleef' 2025-08-14T21:46:49.0742638Z Entering 'third_party/tensorpipe' 2025-08-14T21:46:49.1141339Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-14T21:46:49.1603260Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-14T21:46:49.2013265Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-14T21:46:49.2431639Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T21:46:49.2912623Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T21:46:49.3461005Z ##[endgroup] 2025-08-14T21:46:49.3461448Z ##[group]Persisting credentials for submodules 2025-08-14T21:46:49.3485772Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'url\.https\:\/\/github\.com\/\.insteadOf' && git config --local --unset-all 'url.https://github.com/.insteadOf' || :\"" 2025-08-14T21:46:49.8237443Z Entering 'android/libs/fbjni' 2025-08-14T21:46:49.8892069Z Entering 'third_party/FP16' 2025-08-14T21:46:49.9559301Z Entering 'third_party/FXdiv' 2025-08-14T21:46:50.0197469Z Entering 'third_party/NNPACK' 2025-08-14T21:46:50.0827488Z Entering 'third_party/NVTX' 2025-08-14T21:46:50.1487093Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-14T21:46:50.2114998Z Entering 'third_party/XNNPACK' 2025-08-14T21:46:50.2779943Z Entering 'third_party/aiter' 2025-08-14T21:46:50.3383677Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T21:46:50.4049668Z Entering 'third_party/benchmark' 2025-08-14T21:46:50.4727478Z Entering 'third_party/composable_kernel' 2025-08-14T21:46:50.5358400Z Entering 'third_party/cpp-httplib' 2025-08-14T21:46:50.6037199Z Entering 'third_party/cpuinfo' 2025-08-14T21:46:50.6658921Z Entering 'third_party/cudnn_frontend' 2025-08-14T21:46:50.7407734Z Entering 'third_party/cutlass' 2025-08-14T21:46:50.8059219Z Entering 'third_party/fbgemm' 2025-08-14T21:46:50.8761417Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-14T21:46:50.9387250Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-14T21:46:51.0033567Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-14T21:46:51.0686342Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-14T21:46:51.1342588Z Entering 'third_party/fbgemm/external/googletest' 2025-08-14T21:46:51.2045060Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-14T21:46:51.2689360Z Entering 'third_party/fbgemm/external/json' 2025-08-14T21:46:51.3344104Z Entering 'third_party/flash-attention' 2025-08-14T21:46:51.4013063Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T21:46:51.4658079Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-14T21:46:51.5372607Z Entering 'third_party/flatbuffers' 2025-08-14T21:46:51.5992574Z Entering 'third_party/fmt' 2025-08-14T21:46:51.6697750Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-14T21:46:51.7335475Z Entering 'third_party/gloo' 2025-08-14T21:46:51.7956253Z Entering 'third_party/googletest' 2025-08-14T21:46:51.8628818Z Entering 'third_party/ideep' 2025-08-14T21:46:51.9318095Z Entering 'third_party/ideep/mkl-dnn' 2025-08-14T21:46:51.9976840Z Entering 'third_party/ittapi' 2025-08-14T21:46:52.0631366Z Entering 'third_party/kineto' 2025-08-14T21:46:52.1334468Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T21:46:52.2026940Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T21:46:52.2683150Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T21:46:52.3343588Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T21:46:52.4120555Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T21:46:52.4760799Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T21:46:52.5432015Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T21:46:52.6065764Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T21:46:52.6708883Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T21:46:52.7469261Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T21:46:52.8157149Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T21:46:52.8874759Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T21:46:52.9578211Z Entering 'third_party/kleidiai' 2025-08-14T21:46:53.0222797Z Entering 'third_party/mimalloc' 2025-08-14T21:46:53.0872107Z Entering 'third_party/nlohmann' 2025-08-14T21:46:53.1499937Z Entering 'third_party/onnx' 2025-08-14T21:46:53.2151772Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-14T21:46:53.2885755Z Entering 'third_party/opentelemetry-cpp' 2025-08-14T21:46:53.3542848Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T21:46:53.4223064Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T21:46:53.4864057Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T21:46:53.5495286Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T21:46:53.6135737Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T21:46:53.6851926Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T21:46:53.7530459Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T21:46:53.8140956Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T21:46:53.8778721Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T21:46:53.9430167Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T21:46:54.0097455Z Entering 'third_party/pocketfft' 2025-08-14T21:46:54.0726554Z Entering 'third_party/protobuf' 2025-08-14T21:46:54.1355575Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-14T21:46:54.1984619Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-14T21:46:54.2624788Z Entering 'third_party/psimd' 2025-08-14T21:46:54.3242178Z Entering 'third_party/pthreadpool' 2025-08-14T21:46:54.3921951Z Entering 'third_party/pybind11' 2025-08-14T21:46:54.4569672Z Entering 'third_party/python-peachpy' 2025-08-14T21:46:54.5201286Z Entering 'third_party/sleef' 2025-08-14T21:46:54.5815481Z Entering 'third_party/tensorpipe' 2025-08-14T21:46:54.6449219Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-14T21:46:54.7085904Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-14T21:46:54.7733522Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-14T21:46:54.8383842Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T21:46:54.9034397Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T21:46:54.9829826Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local 'http.https://github.com/.extraheader' 'AUTHORIZATION: basic ***' && git config --local --show-origin --name-only --get-regexp remote.origin.url\"" 2025-08-14T21:46:55.3712490Z Entering 'android/libs/fbjni' 2025-08-14T21:46:55.4335828Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/android/libs/fbjni/config remote.origin.url 2025-08-14T21:46:55.4498329Z Entering 'third_party/FP16' 2025-08-14T21:46:55.5109670Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FP16/config remote.origin.url 2025-08-14T21:46:55.5261751Z Entering 'third_party/FXdiv' 2025-08-14T21:46:55.5923246Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FXdiv/config remote.origin.url 2025-08-14T21:46:55.6131004Z Entering 'third_party/NNPACK' 2025-08-14T21:46:55.6797155Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK/config remote.origin.url 2025-08-14T21:46:55.7012701Z Entering 'third_party/NVTX' 2025-08-14T21:46:55.7602320Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NVTX/config remote.origin.url 2025-08-14T21:46:55.7764298Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-14T21:46:55.8379513Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/VulkanMemoryAllocator/config remote.origin.url 2025-08-14T21:46:55.8585601Z Entering 'third_party/XNNPACK' 2025-08-14T21:46:55.9210858Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/XNNPACK/config remote.origin.url 2025-08-14T21:46:55.9386632Z Entering 'third_party/aiter' 2025-08-14T21:46:56.0018767Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/config remote.origin.url 2025-08-14T21:46:56.0171702Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T21:46:56.0817854Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/modules/3rdparty/composable_kernel/config remote.origin.url 2025-08-14T21:46:56.1040132Z Entering 'third_party/benchmark' 2025-08-14T21:46:56.1649197Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/benchmark/config remote.origin.url 2025-08-14T21:46:56.1800538Z Entering 'third_party/composable_kernel' 2025-08-14T21:46:56.2395117Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/composable_kernel/config remote.origin.url 2025-08-14T21:46:56.2604972Z Entering 'third_party/cpp-httplib' 2025-08-14T21:46:56.3270930Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpp-httplib/config remote.origin.url 2025-08-14T21:46:56.3429649Z Entering 'third_party/cpuinfo' 2025-08-14T21:46:56.4052073Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpuinfo/config remote.origin.url 2025-08-14T21:46:56.4213345Z Entering 'third_party/cudnn_frontend' 2025-08-14T21:46:56.4877670Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cudnn_frontend/config remote.origin.url 2025-08-14T21:46:56.5047519Z Entering 'third_party/cutlass' 2025-08-14T21:46:56.5657236Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cutlass/config remote.origin.url 2025-08-14T21:46:56.5820793Z Entering 'third_party/fbgemm' 2025-08-14T21:46:56.6470424Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/config remote.origin.url 2025-08-14T21:46:56.6633590Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-14T21:46:56.7369819Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/asmjit/config remote.origin.url 2025-08-14T21:46:56.7532051Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-14T21:46:56.8162766Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/composable_kernel/config remote.origin.url 2025-08-14T21:46:56.8446871Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-14T21:46:56.9057798Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cpuinfo/config remote.origin.url 2025-08-14T21:46:56.9212066Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-14T21:46:56.9809885Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cutlass/config remote.origin.url 2025-08-14T21:46:56.9977553Z Entering 'third_party/fbgemm/external/googletest' 2025-08-14T21:46:57.0579110Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/googletest/config remote.origin.url 2025-08-14T21:46:57.0731557Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-14T21:46:57.1336851Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/hipify_torch/config remote.origin.url 2025-08-14T21:46:57.1489498Z Entering 'third_party/fbgemm/external/json' 2025-08-14T21:46:57.2163617Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/json/config remote.origin.url 2025-08-14T21:46:57.2334316Z Entering 'third_party/flash-attention' 2025-08-14T21:46:57.2970890Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/config remote.origin.url 2025-08-14T21:46:57.3133764Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T21:46:57.3748862Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/composable_kernel/config remote.origin.url 2025-08-14T21:46:57.3907843Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-14T21:46:57.4528642Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/cutlass/config remote.origin.url 2025-08-14T21:46:57.4757261Z Entering 'third_party/flatbuffers' 2025-08-14T21:46:57.5354258Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flatbuffers/config remote.origin.url 2025-08-14T21:46:57.5513371Z Entering 'third_party/fmt' 2025-08-14T21:46:57.6186976Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fmt/config remote.origin.url 2025-08-14T21:46:57.6337293Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-14T21:46:57.6951578Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gemmlowp/gemmlowp/config remote.origin.url 2025-08-14T21:46:57.7110171Z Entering 'third_party/gloo' 2025-08-14T21:46:57.7719312Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gloo/config remote.origin.url 2025-08-14T21:46:57.7876973Z Entering 'third_party/googletest' 2025-08-14T21:46:57.8461447Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/googletest/config remote.origin.url 2025-08-14T21:46:57.8618822Z Entering 'third_party/ideep' 2025-08-14T21:46:57.9221722Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/config remote.origin.url 2025-08-14T21:46:57.9357779Z Entering 'third_party/ideep/mkl-dnn' 2025-08-14T21:46:57.9963563Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/modules/mkl-dnn/config remote.origin.url 2025-08-14T21:46:58.0155150Z Entering 'third_party/ittapi' 2025-08-14T21:46:58.0764046Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ittapi/config remote.origin.url 2025-08-14T21:46:58.0919029Z Entering 'third_party/kineto' 2025-08-14T21:46:58.1531756Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/config remote.origin.url 2025-08-14T21:46:58.1668539Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T21:46:58.2368208Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/config remote.origin.url 2025-08-14T21:46:58.2512698Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T21:46:58.3131942Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/DCGM/config remote.origin.url 2025-08-14T21:46:58.3287717Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T21:46:58.3890911Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/cpr/config remote.origin.url 2025-08-14T21:46:58.4092818Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T21:46:58.4776636Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/fmt/config remote.origin.url 2025-08-14T21:46:58.4928008Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T21:46:58.5602341Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/gflags/config remote.origin.url 2025-08-14T21:46:58.5803110Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T21:46:58.6445190Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/gflags/modules/doc/config remote.origin.url 2025-08-14T21:46:58.6614271Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T21:46:58.7238532Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/glog/config remote.origin.url 2025-08-14T21:46:58.7390005Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T21:46:58.7998278Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/googletest/config remote.origin.url 2025-08-14T21:46:58.8158833Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T21:46:58.8844730Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/json/config remote.origin.url 2025-08-14T21:46:58.8995314Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T21:46:58.9702063Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/pfs/config remote.origin.url 2025-08-14T21:46:58.9873560Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T21:46:59.0468480Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/fmt/config remote.origin.url 2025-08-14T21:46:59.0630413Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T21:46:59.1224703Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/googletest/config remote.origin.url 2025-08-14T21:46:59.1467851Z Entering 'third_party/kleidiai' 2025-08-14T21:46:59.2096767Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kleidiai/config remote.origin.url 2025-08-14T21:46:59.2251506Z Entering 'third_party/mimalloc' 2025-08-14T21:46:59.2905766Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/mimalloc/config remote.origin.url 2025-08-14T21:46:59.3057706Z Entering 'third_party/nlohmann' 2025-08-14T21:46:59.3733430Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/nlohmann/config remote.origin.url 2025-08-14T21:46:59.3890142Z Entering 'third_party/onnx' 2025-08-14T21:46:59.4496587Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/config remote.origin.url 2025-08-14T21:46:59.4668922Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-14T21:46:59.5342663Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/pybind11/config remote.origin.url 2025-08-14T21:46:59.5511477Z Entering 'third_party/opentelemetry-cpp' 2025-08-14T21:46:59.6159423Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/config remote.origin.url 2025-08-14T21:46:59.6305164Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T21:46:59.6912855Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/benchmark/config remote.origin.url 2025-08-14T21:46:59.7077566Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T21:46:59.7690355Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/googletest/config remote.origin.url 2025-08-14T21:46:59.7855852Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T21:46:59.8481418Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/ms-gsl/config remote.origin.url 2025-08-14T21:46:59.8631596Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T21:46:59.9264195Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/nlohmann-json/config remote.origin.url 2025-08-14T21:46:59.9425850Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T21:47:00.0108187Z 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:47:00.0289793Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T21:47:00.0908869Z 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:47:00.1060540Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T21:47:00.1681727Z 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:47:00.1832505Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T21:47:00.2444080Z 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:47:00.2606388Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T21:47:00.3266644Z 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:47:00.3448311Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T21:47:00.4050363Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/tools/vcpkg/config remote.origin.url 2025-08-14T21:47:00.4250666Z Entering 'third_party/pocketfft' 2025-08-14T21:47:00.4855691Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pocketfft/config remote.origin.url 2025-08-14T21:47:00.5035361Z Entering 'third_party/protobuf' 2025-08-14T21:47:00.5670009Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/config remote.origin.url 2025-08-14T21:47:00.5823930Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-14T21:47:00.6428708Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/benchmark/config remote.origin.url 2025-08-14T21:47:00.6587665Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-14T21:47:00.7204048Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/googletest/config remote.origin.url 2025-08-14T21:47:00.7447131Z Entering 'third_party/psimd' 2025-08-14T21:47:00.8077424Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/psimd/config remote.origin.url 2025-08-14T21:47:00.8242365Z Entering 'third_party/pthreadpool' 2025-08-14T21:47:00.8864970Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/pthreadpool/config remote.origin.url 2025-08-14T21:47:00.9023276Z Entering 'third_party/pybind11' 2025-08-14T21:47:00.9761481Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pybind11/config remote.origin.url 2025-08-14T21:47:00.9971287Z Entering 'third_party/python-peachpy' 2025-08-14T21:47:01.0582285Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/python-peachpy/config remote.origin.url 2025-08-14T21:47:01.0734959Z Entering 'third_party/sleef' 2025-08-14T21:47:01.1338714Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/sleef/config remote.origin.url 2025-08-14T21:47:01.1510135Z Entering 'third_party/tensorpipe' 2025-08-14T21:47:01.2188345Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/config remote.origin.url 2025-08-14T21:47:01.2338028Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-14T21:47:01.2960890Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/googletest/config remote.origin.url 2025-08-14T21:47:01.3115584Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-14T21:47:01.3738816Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libnop/config remote.origin.url 2025-08-14T21:47:01.3897851Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-14T21:47:01.4542461Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libuv/config remote.origin.url 2025-08-14T21:47:01.4706914Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T21:47:01.5341843Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/config remote.origin.url 2025-08-14T21:47:01.5504824Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T21:47:01.6184802Z 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:47:01.6946013Z [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:47:02.1260615Z Entering 'android/libs/fbjni' 2025-08-14T21:47:02.1762022Z Entering 'third_party/FP16' 2025-08-14T21:47:02.2226685Z Entering 'third_party/FXdiv' 2025-08-14T21:47:02.2654538Z Entering 'third_party/NNPACK' 2025-08-14T21:47:02.3146984Z Entering 'third_party/NVTX' 2025-08-14T21:47:02.3564218Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-14T21:47:02.4017281Z Entering 'third_party/XNNPACK' 2025-08-14T21:47:02.4522886Z Entering 'third_party/aiter' 2025-08-14T21:47:02.4929796Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T21:47:02.5415066Z Entering 'third_party/benchmark' 2025-08-14T21:47:02.5821056Z Entering 'third_party/composable_kernel' 2025-08-14T21:47:02.6270162Z Entering 'third_party/cpp-httplib' 2025-08-14T21:47:02.6685390Z Entering 'third_party/cpuinfo' 2025-08-14T21:47:02.7095416Z Entering 'third_party/cudnn_frontend' 2025-08-14T21:47:02.7508994Z Entering 'third_party/cutlass' 2025-08-14T21:47:02.7970810Z Entering 'third_party/fbgemm' 2025-08-14T21:47:02.8364808Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-14T21:47:02.8803613Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-14T21:47:02.9283283Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-14T21:47:02.9696252Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-14T21:47:03.0190597Z Entering 'third_party/fbgemm/external/googletest' 2025-08-14T21:47:03.0617358Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-14T21:47:03.1109688Z Entering 'third_party/fbgemm/external/json' 2025-08-14T21:47:03.1620166Z Entering 'third_party/flash-attention' 2025-08-14T21:47:03.2096820Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T21:47:03.2567080Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-14T21:47:03.3013927Z Entering 'third_party/flatbuffers' 2025-08-14T21:47:03.3431527Z Entering 'third_party/fmt' 2025-08-14T21:47:03.3886622Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-14T21:47:03.4302446Z Entering 'third_party/gloo' 2025-08-14T21:47:03.4710800Z Entering 'third_party/googletest' 2025-08-14T21:47:03.5191432Z Entering 'third_party/ideep' 2025-08-14T21:47:03.5606276Z Entering 'third_party/ideep/mkl-dnn' 2025-08-14T21:47:03.6053844Z Entering 'third_party/ittapi' 2025-08-14T21:47:03.6491460Z Entering 'third_party/kineto' 2025-08-14T21:47:03.6888458Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T21:47:03.7300569Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T21:47:03.7738662Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T21:47:03.8169406Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T21:47:03.8624450Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T21:47:03.9022607Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T21:47:03.9480756Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T21:47:03.9990980Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T21:47:04.0562052Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T21:47:04.1013459Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T21:47:04.1456623Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T21:47:04.1919499Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T21:47:04.2351333Z Entering 'third_party/kleidiai' 2025-08-14T21:47:04.2754886Z Entering 'third_party/mimalloc' 2025-08-14T21:47:04.3208715Z Entering 'third_party/nlohmann' 2025-08-14T21:47:04.3653254Z Entering 'third_party/onnx' 2025-08-14T21:47:04.4158153Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-14T21:47:04.4603127Z Entering 'third_party/opentelemetry-cpp' 2025-08-14T21:47:04.4999562Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T21:47:04.5421371Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T21:47:04.5831214Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T21:47:04.6282927Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T21:47:04.6716984Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T21:47:04.7140909Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T21:47:04.7646442Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T21:47:04.8052302Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T21:47:04.8480933Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T21:47:04.8975128Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T21:47:04.9433312Z Entering 'third_party/pocketfft' 2025-08-14T21:47:04.9844410Z Entering 'third_party/protobuf' 2025-08-14T21:47:05.0247806Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-14T21:47:05.0672367Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-14T21:47:05.1153102Z Entering 'third_party/psimd' 2025-08-14T21:47:05.1595012Z Entering 'third_party/pthreadpool' 2025-08-14T21:47:05.2002339Z Entering 'third_party/pybind11' 2025-08-14T21:47:05.2408484Z Entering 'third_party/python-peachpy' 2025-08-14T21:47:05.2827994Z Entering 'third_party/sleef' 2025-08-14T21:47:05.3238203Z Entering 'third_party/tensorpipe' 2025-08-14T21:47:05.3638004Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-14T21:47:05.4060220Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-14T21:47:05.4481985Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-14T21:47:05.4907008Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T21:47:05.5308413Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T21:47:05.5873842Z [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:47:06.0078191Z Entering 'android/libs/fbjni' 2025-08-14T21:47:06.0569104Z Entering 'third_party/FP16' 2025-08-14T21:47:06.1007194Z Entering 'third_party/FXdiv' 2025-08-14T21:47:06.1440066Z Entering 'third_party/NNPACK' 2025-08-14T21:47:06.1894143Z Entering 'third_party/NVTX' 2025-08-14T21:47:06.2344826Z Entering 'third_party/VulkanMemoryAllocator' 2025-08-14T21:47:06.6117398Z Entering 'third_party/XNNPACK' 2025-08-14T21:47:06.6673551Z Entering 'third_party/aiter' 2025-08-14T21:47:06.7051026Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-08-14T21:47:06.7637797Z Entering 'third_party/benchmark' 2025-08-14T21:47:06.8065351Z Entering 'third_party/composable_kernel' 2025-08-14T21:47:06.8517463Z Entering 'third_party/cpp-httplib' 2025-08-14T21:47:06.8954937Z Entering 'third_party/cpuinfo' 2025-08-14T21:47:06.9385664Z Entering 'third_party/cudnn_frontend' 2025-08-14T21:47:06.9866599Z Entering 'third_party/cutlass' 2025-08-14T21:47:07.0333094Z Entering 'third_party/fbgemm' 2025-08-14T21:47:07.0794901Z Entering 'third_party/fbgemm/external/asmjit' 2025-08-14T21:47:07.1230490Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-08-14T21:47:07.1677742Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-08-14T21:47:07.2104299Z Entering 'third_party/fbgemm/external/cutlass' 2025-08-14T21:47:07.2665796Z Entering 'third_party/fbgemm/external/googletest' 2025-08-14T21:47:07.3101111Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-08-14T21:47:07.3537278Z Entering 'third_party/fbgemm/external/json' 2025-08-14T21:47:07.3988312Z Entering 'third_party/flash-attention' 2025-08-14T21:47:07.4402167Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-08-14T21:47:07.4955321Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-08-14T21:47:07.5423687Z Entering 'third_party/flatbuffers' 2025-08-14T21:47:07.5877797Z Entering 'third_party/fmt' 2025-08-14T21:47:07.6339780Z Entering 'third_party/gemmlowp/gemmlowp' 2025-08-14T21:47:07.6765969Z Entering 'third_party/gloo' 2025-08-14T21:47:07.7265869Z Entering 'third_party/googletest' 2025-08-14T21:47:07.7701444Z Entering 'third_party/ideep' 2025-08-14T21:47:07.8103651Z Entering 'third_party/ideep/mkl-dnn' 2025-08-14T21:47:07.8639687Z Entering 'third_party/ittapi' 2025-08-14T21:47:07.9067712Z Entering 'third_party/kineto' 2025-08-14T21:47:07.9490534Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-08-14T21:47:08.0005458Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-08-14T21:47:08.0451392Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-08-14T21:47:08.0982301Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-08-14T21:47:08.1430214Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-08-14T21:47:08.1877629Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-08-14T21:47:08.2371108Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-08-14T21:47:08.2848050Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-08-14T21:47:08.3294449Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-08-14T21:47:08.3881760Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-08-14T21:47:08.4366739Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-08-14T21:47:08.4892927Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-08-14T21:47:08.5397247Z Entering 'third_party/kleidiai' 2025-08-14T21:47:08.5849726Z Entering 'third_party/mimalloc' 2025-08-14T21:47:08.6336389Z Entering 'third_party/nlohmann' 2025-08-14T21:47:08.6758239Z Entering 'third_party/onnx' 2025-08-14T21:47:08.7241370Z Entering 'third_party/onnx/third_party/pybind11' 2025-08-14T21:47:08.7826944Z Entering 'third_party/opentelemetry-cpp' 2025-08-14T21:47:08.8249855Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-08-14T21:47:08.8725500Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-08-14T21:47:08.9195704Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-08-14T21:47:08.9617615Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-08-14T21:47:09.0086057Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-08-14T21:47:09.0521904Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-08-14T21:47:09.0962713Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-08-14T21:47:09.1373254Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-08-14T21:47:09.1810411Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-08-14T21:47:09.2365117Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-08-14T21:47:09.2858259Z Entering 'third_party/pocketfft' 2025-08-14T21:47:09.3271975Z Entering 'third_party/protobuf' 2025-08-14T21:47:09.3695931Z Entering 'third_party/protobuf/third_party/benchmark' 2025-08-14T21:47:09.4124913Z Entering 'third_party/protobuf/third_party/googletest' 2025-08-14T21:47:09.4585425Z Entering 'third_party/psimd' 2025-08-14T21:47:09.5025057Z Entering 'third_party/pthreadpool' 2025-08-14T21:47:09.5451091Z Entering 'third_party/pybind11' 2025-08-14T21:47:09.5888863Z Entering 'third_party/python-peachpy' 2025-08-14T21:47:09.6305743Z Entering 'third_party/sleef' 2025-08-14T21:47:09.6753610Z Entering 'third_party/tensorpipe' 2025-08-14T21:47:09.7168797Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-08-14T21:47:09.7630222Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-08-14T21:47:09.8078470Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-08-14T21:47:09.8494720Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-08-14T21:47:09.8915390Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-08-14T21:47:09.9484904Z ##[endgroup] 2025-08-14T21:47:09.9773771Z [command]"C:\Program Files\Git\cmd\git.exe" log -1 --format=%H 2025-08-14T21:47:10.0005078Z 1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:47:10.0339779Z Prepare all required actions 2025-08-14T21:47:10.0410828Z ##[group]Run ./.github/actions/setup-win 2025-08-14T21:47:10.0411133Z with: 2025-08-14T21:47:10.0411318Z cuda-version: cpu 2025-08-14T21:47:10.0411522Z env: 2025-08-14T21:47:10.0411714Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:10.0411950Z ##[endgroup] 2025-08-14T21:47:10.0495191Z ##[group]Run set -euo pipefail 2025-08-14T21:47:10.0495500Z set -euo pipefail 2025-08-14T21:47:10.0495772Z function get_ec2_metadata() { 2025-08-14T21:47:10.0496119Z  # Pulled from instance metadata endpoint for EC2 2025-08-14T21:47:10.0496749Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2025-08-14T21:47:10.0497290Z  category=$1 2025-08-14T21:47:10.0498197Z  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:47:10.0499080Z } 2025-08-14T21:47:10.0499328Z echo "ami-id: $(get_ec2_metadata ami-id)" 2025-08-14T21:47:10.0499732Z echo "instance-id: $(get_ec2_metadata instance-id)" 2025-08-14T21:47:10.0500186Z echo "instance-type: $(get_ec2_metadata instance-type)" 2025-08-14T21:47:10.0500610Z echo "system info $(uname -a)" 2025-08-14T21:47:10.0521467Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:47:10.0521906Z env: 2025-08-14T21:47:10.0522107Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:10.0522354Z ##[endgroup] 2025-08-14T21:47:10.1160975Z ami-id: ami-031789d559e66ab4a 2025-08-14T21:47:10.1682271Z instance-id: i-0712734b1d26f3aef 2025-08-14T21:47:10.2096095Z instance-type: c5d.4xlarge 2025-08-14T21:47:10.2324224Z 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:47:10.2436413Z ##[group]Run Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-08-14T21:47:10.2437413Z Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-08-14T21:47:10.2454560Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-14T21:47:10.2455215Z env: 2025-08-14T21:47:10.2455420Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:10.2455685Z ##[endgroup] 2025-08-14T21:47:10.6574883Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-14T21:47:10.6624550Z Finished 2025-08-14T21:47:10.6953877Z ##[group]Run # Windows conda is baked into the AMI at this location 2025-08-14T21:47:10.6954411Z # Windows conda is baked into the AMI at this location 2025-08-14T21:47:10.6954856Z CONDA="C:\Jenkins\Miniconda3\condabin\conda.bat" 2025-08-14T21:47:10.6955200Z  2025-08-14T21:47:10.6955423Z { 2025-08-14T21:47:10.6955801Z  echo "CONDA_RUN=${CONDA} run --no-capture-output"; 2025-08-14T21:47:10.6956225Z  echo "CONDA_BUILD=${CONDA} run conda-build"; 2025-08-14T21:47:10.6956683Z  echo "CONDA_INSTALL=${CONDA} install"; 2025-08-14T21:47:10.6957020Z } >> "${GITHUB_ENV}" 2025-08-14T21:47:10.6977931Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:47:10.6978413Z env: 2025-08-14T21:47:10.6978614Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:10.6978871Z ##[endgroup] 2025-08-14T21:47:10.7284074Z ##[group]Run set +e 2025-08-14T21:47:10.7284334Z set +e 2025-08-14T21:47:10.7284541Z set -x 2025-08-14T21:47:10.7284728Z  2025-08-14T21:47:10.7284967Z PYTHON3=$(${CONDA_RUN} which python3) 2025-08-14T21:47:10.7285276Z EXIT_CODE=$? 2025-08-14T21:47:10.7285490Z  2025-08-14T21:47:10.7287094Z if [[ "${EXIT_CODE}" == "0" ]]; then 2025-08-14T21:47:10.7287548Z  echo "Found Python3 at ${PYTHON3}, adding it into GITHUB_PATH" 2025-08-14T21:47:10.7287930Z  2025-08-14T21:47:10.7288146Z  PYTHON_PATH=$(dirname "${PYTHON3}") 2025-08-14T21:47:10.7288618Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-08-14T21:47:10.7288932Z else 2025-08-14T21:47:10.7289508Z  # According to https://docs.conda.io/en/latest/miniconda.html, we are using the Miniconda3 2025-08-14T21:47:10.7290229Z  # installation, which is Python 3 based. Its Python is default to Python 3. Further, there 2025-08-14T21:47:10.7290938Z  # is also the Miniconda installation that is Python 2 based, and both can be installed if 2025-08-14T21:47:10.7291530Z  # needed. In both cases, Python binary is just called python 2025-08-14T21:47:10.7291932Z  PYTHON=$(${CONDA_RUN} which python) 2025-08-14T21:47:10.7292233Z  EXIT_CODE=$? 2025-08-14T21:47:10.7292454Z  2025-08-14T21:47:10.7292664Z  if [[ "${EXIT_CODE}" == "0" ]]; then 2025-08-14T21:47:10.7293121Z  echo "Found Python at ${PYTHON}, set Python3 alias and add it into GITHUB_PATH" 2025-08-14T21:47:10.7293559Z  2025-08-14T21:47:10.7293834Z  PYTHON3=$(echo "${PYTHON}" | sed "s/python/python3/") 2025-08-14T21:47:10.7294373Z  # It's difficult to setup alias across GitHub action steps, so I just add a softlink 2025-08-14T21:47:10.7294965Z  # here pointing to Python 2025-08-14T21:47:10.7295274Z  ln -s "${PYTHON}" "${PYTHON3}" 2025-08-14T21:47:10.7295649Z  2025-08-14T21:47:10.7295860Z  PYTHON_PATH=$(dirname "${PYTHON}") 2025-08-14T21:47:10.7296207Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-08-14T21:47:10.7296519Z  else 2025-08-14T21:47:10.7296759Z  echo "Found no Python using ${CONDA_RUN}" 2025-08-14T21:47:10.7297075Z  fi 2025-08-14T21:47:10.7297259Z fi 2025-08-14T21:47:10.7317321Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:47:10.7317791Z env: 2025-08-14T21:47:10.7317977Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:10.7318370Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:10.7319072Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:10.7319714Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:10.7320093Z ##[endgroup] 2025-08-14T21:47:10.7587941Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python3 2025-08-14T21:47:16.4201217Z 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:47:16.4237474Z ERROR conda.cli.main_run:execute(49): `conda run which python3` failed. (See above for error) 2025-08-14T21:47:16.5024241Z + PYTHON3= 2025-08-14T21:47:16.5024501Z + EXIT_CODE=1 2025-08-14T21:47:16.5024692Z + [[ 1 == \0 ]] 2025-08-14T21:47:16.5094233Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python 2025-08-14T21:47:18.2842267Z + PYTHON=/c/Jenkins/Miniconda3/python 2025-08-14T21:47:18.2842634Z + EXIT_CODE=0 2025-08-14T21:47:18.2842816Z + [[ 0 == \0 ]] 2025-08-14T21:47:18.2843283Z + echo 'Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH' 2025-08-14T21:47:18.2844746Z Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH 2025-08-14T21:47:18.2981550Z ++ echo /c/Jenkins/Miniconda3/python 2025-08-14T21:47:18.3041561Z ++ sed s/python/python3/ 2025-08-14T21:47:18.3113839Z + PYTHON3=/c/Jenkins/Miniconda3/python3 2025-08-14T21:47:18.3114301Z + ln -s /c/Jenkins/Miniconda3/python /c/Jenkins/Miniconda3/python3 2025-08-14T21:47:18.3312368Z ++ dirname /c/Jenkins/Miniconda3/python 2025-08-14T21:47:18.3391117Z + PYTHON_PATH=/c/Jenkins/Miniconda3 2025-08-14T21:47:18.3391454Z + echo /c/Jenkins/Miniconda3 2025-08-14T21:47:18.3510407Z ##[group]Run TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-08-14T21:47:18.3511048Z TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-08-14T21:47:18.3511517Z echo "TMPDIR=${TMPDIR}" >> "${GITHUB_ENV}" 2025-08-14T21:47:18.3536138Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:47:18.3536598Z env: 2025-08-14T21:47:18.3536798Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:18.3537192Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:18.3537752Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:18.3538244Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:18.3538628Z ##[endgroup] 2025-08-14T21:47:18.4507291Z ##[group]Run Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-08-14T21:47:18.4508308Z Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-08-14T21:47:18.4509140Z # Let's both exclude the path and disable Windows Defender completely just to be sure 2025-08-14T21:47:18.4509619Z # that it doesn't interfere 2025-08-14T21:47:18.4510094Z Set-MpPreference -DisableRealtimeMonitoring $True -ErrorAction Ignore 2025-08-14T21:47:18.4526270Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-14T21:47:18.4526743Z env: 2025-08-14T21:47:18.4526937Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:18.4527318Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:18.4528036Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:18.4528522Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:18.4528939Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:18.4529243Z ##[endgroup] 2025-08-14T21:47:18.8618338Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-14T21:47:18.8695871Z Finished 2025-08-14T21:47:19.3463394Z ##[group]Run choco install handle -y 2025-08-14T21:47:19.3463737Z choco install handle -y 2025-08-14T21:47:19.3464146Z handle C:\actions-runner\_work\ 2025-08-14T21:47:19.3483159Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-14T21:47:19.3483720Z env: 2025-08-14T21:47:19.3483926Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:19.3484403Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:19.3484949Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:19.3485563Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:19.3486063Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:19.3486369Z ##[endgroup] 2025-08-14T21:47:19.7692198Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-14T21:47:19.7773276Z Finished 2025-08-14T21:47:22.3785034Z Chocolatey v2.4.3 2025-08-14T21:47:22.5584329Z Installing the following packages: 2025-08-14T21:47:22.5589825Z handle 2025-08-14T21:47:22.5593593Z By installing, you accept licenses for the packages. 2025-08-14T21:47:23.6969101Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-08-14T21:47:23.8361086Z 2025-08-14T21:47:23.8362250Z Progress: Downloading Handle 5.0... 15% 2025-08-14T21:47:23.8362640Z Progress: Downloading Handle 5.0... 45% 2025-08-14T21:47:23.8362948Z Progress: Downloading Handle 5.0... 75% 2025-08-14T21:47:23.8363286Z Progress: Downloading Handle 5.0... 100% 2025-08-14T21:47:24.2188787Z 2025-08-14T21:47:24.2189349Z handle v5.0.0 [Approved] 2025-08-14T21:47:24.2415345Z handle package files install completed. Performing other installation steps. 2025-08-14T21:47:25.3990602Z Downloading Handle 2025-08-14T21:47:25.3991011Z from 'https://download.sysinternals.com/files/Handle.zip' 2025-08-14T21:47:25.5047723Z 2025-08-14T21:47:25.5067339Z Progress: 19% - Saving 143.51 KB of 729.82 KB 2025-08-14T21:47:25.5082952Z Progress: 41% - Saving 303.51 KB of 729.82 KB 2025-08-14T21:47:25.5101329Z Progress: 63% - Saving 463.51 KB of 729.82 KB 2025-08-14T21:47:25.5121171Z Progress: 85% - Saving 623.51 KB of 729.82 KB 2025-08-14T21:47:25.5124994Z Progress: 100% - Completed download of C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip (729.82 KB). 2025-08-14T21:47:25.5132444Z Download of Handle.zip (729.82 KB) completed. 2025-08-14T21:47:28.6456411Z Hashes match. 2025-08-14T21:47:28.6792656Z Extracting C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip to C:\ProgramData\chocolatey\lib\Handle\tools... 2025-08-14T21:47:28.9063224Z C:\ProgramData\chocolatey\lib\Handle\tools 2025-08-14T21:47:28.9342685Z HKEY_CURRENT_USER\Software\Sysinternals 2025-08-14T21:47:28.9374837Z HKEY_CURRENT_USER\Software\Sysinternals\Handle 2025-08-14T21:47:29.3370012Z ShimGen has successfully created a shim for handle.exe 2025-08-14T21:47:29.5319222Z ShimGen has successfully created a shim for handle64.exe 2025-08-14T21:47:29.7138645Z ShimGen has successfully created a shim for handle64a.exe 2025-08-14T21:47:29.7413143Z The install of handle was successful. 2025-08-14T21:47:29.7416519Z Deployed to 'C:\ProgramData\chocolatey\lib\Handle\tools' 2025-08-14T21:47:29.7526484Z 2025-08-14T21:47:29.7527135Z Chocolatey installed 1/1 packages. 2025-08-14T21:47:29.7527688Z See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-08-14T21:47:29.8725978Z 2025-08-14T21:47:29.8726627Z Nthandle v5.0 - Handle viewer 2025-08-14T21:47:29.8726971Z Copyright (C) 1997-2022 Mark Russinovich 2025-08-14T21:47:29.8727300Z Sysinternals - www.sysinternals.com 2025-08-14T21:47:29.8727503Z 2025-08-14T21:47:29.9131419Z powershell.exe pid: 4512 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-08-14T21:47:29.9132143Z handle.exe pid: 1016 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-08-14T21:47:29.9132815Z handle.exe pid: 5440 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-08-14T21:47:29.9133517Z handle64.exe pid: 4536 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-08-14T21:47:29.9486799Z ##[group]Run nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e 2025-08-14T21:47:29.9487245Z with: 2025-08-14T21:47:29.9487434Z shell: bash 2025-08-14T21:47:29.9487632Z timeout_minutes: 5 2025-08-14T21:47:29.9487852Z max_attempts: 5 2025-08-14T21:47:29.9488074Z retry_wait_seconds: 30 2025-08-14T21:47:29.9488401Z command: set -eu python3 -m pip install 'xdoctest>=1.1.0' 2025-08-14T21:47:29.9488769Z polling_interval_seconds: 1 2025-08-14T21:47:29.9489029Z warning_on_retry: true 2025-08-14T21:47:29.9489259Z continue_on_error: false 2025-08-14T21:47:29.9489499Z env: 2025-08-14T21:47:29.9489678Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:29.9490062Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:29.9490763Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:29.9491350Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:29.9491803Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:29.9492098Z ##[endgroup] 2025-08-14T21:47:32.3532981Z Collecting xdoctest>=1.1.0 2025-08-14T21:47:32.5508679Z Downloading xdoctest-1.2.0-py3-none-any.whl.metadata (37 kB) 2025-08-14T21:47:32.9462278Z Downloading xdoctest-1.2.0-py3-none-any.whl (151 kB) 2025-08-14T21:47:33.0311296Z ---------------------------------------- 151.2/151.2 kB 1.5 MB/s eta 0:00:00 2025-08-14T21:47:34.3649777Z Installing collected packages: xdoctest 2025-08-14T21:47:34.3650429Z Attempting uninstall: xdoctest 2025-08-14T21:47:34.3674873Z Found existing installation: xdoctest 1.0.2 2025-08-14T21:47:34.3798016Z Uninstalling xdoctest-1.0.2: 2025-08-14T21:47:34.3841596Z Successfully uninstalled xdoctest-1.0.2 2025-08-14T21:47:34.4984720Z WARNING: The script xdoctest.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-14T21:47:34.4986093Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T21:47:34.5504925Z Successfully installed xdoctest-1.2.0 2025-08-14T21:47:35.0786907Z Command completed after 1 attempt(s). 2025-08-14T21:47:35.0966702Z Prepare all required actions 2025-08-14T21:47:35.1007045Z ##[group]Run ./.github/actions/get-workflow-job-id 2025-08-14T21:47:35.1007492Z with: 2025-08-14T21:47:35.1008125Z github-token: *** 2025-08-14T21:47:35.1008346Z env: 2025-08-14T21:47:35.1008533Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:35.1009016Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:35.1009665Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:35.1010250Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:35.1010670Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:35.1011062Z ##[endgroup] 2025-08-14T21:47:35.1098068Z ##[group]Run set -eux 2025-08-14T21:47:35.1098324Z set -eux 2025-08-14T21:47:35.1098742Z python3 .github/scripts/get_workflow_job_id.py "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-08-14T21:47:35.1118497Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:47:35.1118949Z env: 2025-08-14T21:47:35.1119307Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:35.1119691Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:35.1120233Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:35.1120722Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:35.1121135Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:35.1121639Z GITHUB_TOKEN: *** 2025-08-14T21:47:35.1121849Z ##[endgroup] 2025-08-14T21:47:35.1323351Z + python3 .github/scripts/get_workflow_job_id.py 16976255045 i-0712734b1d26f3aef 2025-08-14T21:47:36.1633116Z Setting output job-id=48128743920 2025-08-14T21:47:36.1633709Z Setting output job-name=win-vs2022-cpu-py3 / test (default, 3, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T21:47:36.1888564Z ##[group]Run # Windows conda doesn't have python3 binary, only python, but it's python3 2025-08-14T21:47:36.1889252Z # Windows conda doesn't have python3 binary, only python, but it's python3 2025-08-14T21:47:36.1889936Z ${CONDA_RUN} python -m pip install psutil==5.9.8 dataclasses_json==0.6.7 nvidia-ml-py==11.525.84 2025-08-14T21:47:36.1890945Z ${CONDA_RUN} python -m tools.stats.monitor --log-interval "$MONITOR_LOG_INTERVAL" --data-collect-interval "$MONITOR_DATA_COLLECT_INTERVAL" > usage_log.txt 2>&1 & 2025-08-14T21:47:36.1900716Z echo "monitor-script-pid=${!}" >> "${GITHUB_OUTPUT}" 2025-08-14T21:47:36.1920426Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:47:36.1920874Z env: 2025-08-14T21:47:36.1921060Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:36.1921458Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:36.1922044Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:36.1922533Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:36.1922942Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:36.1923251Z JOB_ID: 48128743920 2025-08-14T21:47:36.1923643Z JOB_NAME: win-vs2022-cpu-py3 / test (default, 3, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T21:47:36.1924103Z WORKFLOW_NAME: trunk 2025-08-14T21:47:36.1924324Z WORKFLOW_RUN_ID: 16976255045 2025-08-14T21:47:36.1924581Z MONITOR_LOG_INTERVAL: 5 2025-08-14T21:47:36.1924830Z MONITOR_DATA_COLLECT_INTERVAL: 1 2025-08-14T21:47:36.1925092Z ##[endgroup] 2025-08-14T21:47:39.0253139Z Collecting psutil==5.9.8 2025-08-14T21:47:39.2255347Z Downloading psutil-5.9.8-cp37-abi3-win_amd64.whl.metadata (22 kB) 2025-08-14T21:47:39.3202915Z Collecting dataclasses_json==0.6.7 2025-08-14T21:47:39.3250228Z Downloading dataclasses_json-0.6.7-py3-none-any.whl.metadata (25 kB) 2025-08-14T21:47:39.3634234Z Collecting nvidia-ml-py==11.525.84 2025-08-14T21:47:39.3695507Z Downloading nvidia_ml_py-11.525.84-py3-none-any.whl.metadata (8.6 kB) 2025-08-14T21:47:39.4658131Z Collecting marshmallow<4.0.0,>=3.18.0 (from dataclasses_json==0.6.7) 2025-08-14T21:47:39.4711723Z Downloading marshmallow-3.26.1-py3-none-any.whl.metadata (7.3 kB) 2025-08-14T21:47:39.4992160Z Collecting typing-inspect<1,>=0.4.0 (from dataclasses_json==0.6.7) 2025-08-14T21:47:39.5035404Z Downloading typing_inspect-0.9.0-py3-none-any.whl.metadata (1.5 kB) 2025-08-14T21:47:39.5290397Z Requirement already satisfied: packaging>=17.0 in c:\jenkins\miniconda3\lib\site-packages (from marshmallow<4.0.0,>=3.18.0->dataclasses_json==0.6.7) (23.2) 2025-08-14T21:47:39.5502439Z Collecting mypy-extensions>=0.3.0 (from typing-inspect<1,>=0.4.0->dataclasses_json==0.6.7) 2025-08-14T21:47:39.5548717Z Downloading mypy_extensions-1.1.0-py3-none-any.whl.metadata (1.1 kB) 2025-08-14T21:47:39.5660154Z Requirement already satisfied: typing-extensions>=3.7.4 in c:\jenkins\miniconda3\lib\site-packages (from typing-inspect<1,>=0.4.0->dataclasses_json==0.6.7) (4.12.2) 2025-08-14T21:47:39.5762325Z Downloading psutil-5.9.8-cp37-abi3-win_amd64.whl (255 kB) 2025-08-14T21:47:39.6378338Z ---------------------------------------- 255.1/255.1 kB 5.2 MB/s eta 0:00:00 2025-08-14T21:47:39.6421737Z Downloading dataclasses_json-0.6.7-py3-none-any.whl (28 kB) 2025-08-14T21:47:39.6566682Z Downloading nvidia_ml_py-11.525.84-py3-none-any.whl (34 kB) 2025-08-14T21:47:39.6714893Z Downloading marshmallow-3.26.1-py3-none-any.whl (50 kB) 2025-08-14T21:47:39.6848501Z ---------------------------------------- 50.9/50.9 kB ? eta 0:00:00 2025-08-14T21:47:39.6890142Z Downloading typing_inspect-0.9.0-py3-none-any.whl (8.8 kB) 2025-08-14T21:47:39.7024999Z Downloading mypy_extensions-1.1.0-py3-none-any.whl (5.0 kB) 2025-08-14T21:47:40.6371717Z Installing collected packages: nvidia-ml-py, psutil, mypy-extensions, marshmallow, typing-inspect, dataclasses_json 2025-08-14T21:47:40.6875395Z Attempting uninstall: psutil 2025-08-14T21:47:40.6890445Z Found existing installation: psutil 5.9.1 2025-08-14T21:47:40.7002037Z Uninstalling psutil-5.9.1: 2025-08-14T21:47:40.7029305Z Successfully uninstalled psutil-5.9.1 2025-08-14T21:47:41.1122916Z Successfully installed dataclasses_json-0.6.7 marshmallow-3.26.1 mypy-extensions-1.1.0 nvidia-ml-py-11.525.84 psutil-5.9.8 typing-inspect-0.9.0 2025-08-14T21:47:41.3322285Z ##[group]Run seemethere/download-artifact-s3@1da556a7aa0a088e3153970611f6c432d58e80e6 2025-08-14T21:47:41.3322830Z with: 2025-08-14T21:47:41.3323050Z name: win-vs2022-cpu-py3 2025-08-14T21:47:41.3323319Z path: C:\16976255045\build-results 2025-08-14T21:47:41.3323592Z s3-bucket: gha-artifacts 2025-08-14T21:47:41.3323841Z region: us-east-1 2025-08-14T21:47:41.3324041Z env: 2025-08-14T21:47:41.3324239Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:41.3324626Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:41.3325168Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:41.3325661Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:41.3328027Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:41.3328357Z ##[endgroup] 2025-08-14T21:47:41.9608564Z (node:5792) NOTE: We are formalizing our plans to enter AWS SDK for JavaScript (v2) into maintenance mode in 2023. 2025-08-14T21:47:41.9609069Z 2025-08-14T21:47:41.9609254Z Please migrate your code to use AWS SDK for JavaScript (v3). 2025-08-14T21:47:41.9609775Z For more information, check the migration guide at https://a.co/7PzMCcy 2025-08-14T21:47:41.9610404Z (Use `node --trace-warnings ...` to show where the warning was created) 2025-08-14T21:47:42.0908559Z Found 4 objects with prefix pytorch/pytorch/16976255045/win-vs2022-cpu-py3/ 2025-08-14T21:47:42.0915453Z Starting download (1/4): C:\16976255045\build-results\.additional_ci_files\test-class-times.json 2025-08-14T21:47:42.3040749Z Finished download (1/4): C:\16976255045\build-results\.additional_ci_files\test-class-times.json 2025-08-14T21:47:42.3041735Z Starting download (2/4): C:\16976255045\build-results\.additional_ci_files\test-times.json 2025-08-14T21:47:42.4288014Z Finished download (2/4): C:\16976255045\build-results\.additional_ci_files\test-times.json 2025-08-14T21:47:42.4289804Z Starting download (3/4): C:\16976255045\build-results\.ninja_log 2025-08-14T21:47:42.5388612Z Finished download (3/4): C:\16976255045\build-results\.ninja_log 2025-08-14T21:47:42.5389355Z Starting download (4/4): C:\16976255045\build-results\torch-2.9.0a0+git1fc683c-cp39-cp39-win_amd64.whl 2025-08-14T21:47:44.9404364Z Finished download (4/4): C:\16976255045\build-results\torch-2.9.0a0+git1fc683c-cp39-cp39-win_amd64.whl 2025-08-14T21:47:44.9415334Z Artifact download has finished successfully 2025-08-14T21:47:44.9689785Z ##[group]Run tree /F C:\$Env:GITHUB_RUN_ID\build-results 2025-08-14T21:47:44.9690318Z tree /F C:\$Env:GITHUB_RUN_ID\build-results 2025-08-14T21:47:44.9706694Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-14T21:47:44.9707166Z env: 2025-08-14T21:47:44.9707528Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:44.9707930Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:44.9708474Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:44.9708983Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:44.9709388Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:44.9709694Z ##[endgroup] 2025-08-14T21:47:45.3780205Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-14T21:47:45.3837368Z Finished 2025-08-14T21:47:45.3957808Z Folder PATH listing 2025-08-14T21:47:45.3958149Z Volume serial number is 000002DD EA7F:0099 2025-08-14T21:47:45.3958514Z C:\16976255045\BUILD-RESULTS 2025-08-14T21:47:45.3964452Z � .ninja_log 2025-08-14T21:47:45.3964841Z � torch-2.9.0a0+git1fc683c-cp39-cp39-win_amd64.whl 2025-08-14T21:47:45.3965201Z � 2025-08-14T21:47:45.3965445Z ����.additional_ci_files 2025-08-14T21:47:45.3965721Z test-class-times.json 2025-08-14T21:47:45.3965977Z test-times.json 2025-08-14T21:47:45.3966188Z 2025-08-14T21:47:45.4297878Z Prepare all required actions 2025-08-14T21:47:45.4298324Z Getting action download info 2025-08-14T21:47:45.5742791Z Download action repository 'seemethere/download-artifact-s3@v4' (SHA:1da556a7aa0a088e3153970611f6c432d58e80e6) 2025-08-14T21:47:45.7917647Z Download action repository 'actions/download-artifact@v4' (SHA:d3f86a106a0bac45b974a628896c90dbdf5c8093) 2025-08-14T21:47:46.1488105Z ##[group]Run ./.github/actions/download-td-artifacts 2025-08-14T21:47:46.1488450Z with: 2025-08-14T21:47:46.1488623Z env: 2025-08-14T21:47:46.1488820Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:46.1489216Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:46.1489833Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:46.1490335Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:46.1505285Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:46.1505718Z ##[endgroup] 2025-08-14T21:47:46.1598546Z ##[group]Run seemethere/download-artifact-s3@v4 2025-08-14T21:47:46.1598864Z with: 2025-08-14T21:47:46.1599137Z name: td_results 2025-08-14T21:47:46.1599355Z s3-bucket: gha-artifacts 2025-08-14T21:47:46.1599603Z region: us-east-1 2025-08-14T21:47:46.1599793Z env: 2025-08-14T21:47:46.1599977Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:46.1600363Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:46.1600909Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:46.1601405Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:46.1601811Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:46.1602118Z ##[endgroup] 2025-08-14T21:47:46.7118646Z (node:5736) NOTE: We are formalizing our plans to enter AWS SDK for JavaScript (v2) into maintenance mode in 2023. 2025-08-14T21:47:46.7119189Z 2025-08-14T21:47:46.7119389Z Please migrate your code to use AWS SDK for JavaScript (v3). 2025-08-14T21:47:46.7119908Z For more information, check the migration guide at https://a.co/7PzMCcy 2025-08-14T21:47:46.7120447Z (Use `node --trace-warnings ...` to show where the warning was created) 2025-08-14T21:47:46.8403265Z Found 1 objects with prefix pytorch/pytorch/16976255045/td_results/ 2025-08-14T21:47:46.8404634Z Starting download (1/1): C:\actions-runner\_work\pytorch\pytorch\td_results.json 2025-08-14T21:47:46.9272906Z Finished download (1/1): C:\actions-runner\_work\pytorch\pytorch\td_results.json 2025-08-14T21:47:46.9282543Z Artifact download has finished successfully 2025-08-14T21:47:46.9578935Z ##[group]Run mkdir -p .additional_ci_files 2025-08-14T21:47:46.9579302Z mkdir -p .additional_ci_files 2025-08-14T21:47:46.9579702Z mv td_results.json .additional_ci_files/td_results.json || true 2025-08-14T21:47:46.9606482Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:47:46.9606954Z env: 2025-08-14T21:47:46.9607155Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:46.9607543Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:46.9609915Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:46.9610423Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:46.9610838Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:46.9611150Z ##[endgroup] 2025-08-14T21:47:47.0335482Z Prepare all required actions 2025-08-14T21:47:47.0335888Z Getting action download info 2025-08-14T21:47:47.1291358Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-08-14T21:47:47.3057718Z ##[group]Run ./.github/actions/filter-test-configs 2025-08-14T21:47:47.3058051Z with: 2025-08-14T21:47:47.3058468Z github-token: *** 2025-08-14T21:47:47.3059592Z test-matrix: {"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}]} 2025-08-14T21:47:47.3060940Z job-name: win-vs2022-cpu-py3 / test (default, 3, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T21:47:47.3061408Z env: 2025-08-14T21:47:47.3062994Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:47.3063678Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:47.3064218Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:47.3064713Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:47.3065119Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:47.3065415Z ##[endgroup] 2025-08-14T21:47:47.3186704Z ##[group]Run nick-fields/retry@v3.0.0 2025-08-14T21:47:47.3186989Z with: 2025-08-14T21:47:47.3187182Z shell: bash 2025-08-14T21:47:47.3187389Z timeout_minutes: 10 2025-08-14T21:47:47.3187635Z max_attempts: 5 2025-08-14T21:47:47.3187837Z retry_wait_seconds: 30 2025-08-14T21:47:47.3188608Z command: set -eux # PyYAML 6.0 doesn't work with MacOS x86 anymore # This must run on Python-3.7 (AmazonLinux2) so can't use request=3.32.2 python3 -m pip install requests==2.27.1 pyyaml==6.0.2 2025-08-14T21:47:47.3189521Z polling_interval_seconds: 1 2025-08-14T21:47:47.3189772Z warning_on_retry: true 2025-08-14T21:47:47.3190119Z continue_on_error: false 2025-08-14T21:47:47.3190346Z env: 2025-08-14T21:47:47.3190533Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:47.3190922Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:47.3191476Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:47.3191985Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:47.3192403Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:47.3192896Z GITHUB_TOKEN: *** 2025-08-14T21:47:47.3193096Z ##[endgroup] 2025-08-14T21:47:47.4473634Z + python3 -m pip install requests==2.27.1 pyyaml==6.0.2 2025-08-14T21:47:48.2629922Z Collecting requests==2.27.1 2025-08-14T21:47:48.4602003Z Downloading requests-2.27.1-py2.py3-none-any.whl.metadata (5.0 kB) 2025-08-14T21:47:48.4705573Z Requirement already satisfied: pyyaml==6.0.2 in c:\jenkins\miniconda3\lib\site-packages (6.0.2) 2025-08-14T21:47:48.4846511Z Requirement already satisfied: urllib3<1.27,>=1.21.1 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (1.26.19) 2025-08-14T21:47:48.4854190Z Requirement already satisfied: certifi>=2017.4.17 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2025.4.26) 2025-08-14T21:47:48.4865777Z Requirement already satisfied: charset-normalizer~=2.0.0 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2.0.4) 2025-08-14T21:47:48.4880531Z Requirement already satisfied: idna<4,>=2.5 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (3.7) 2025-08-14T21:47:48.5220924Z Downloading requests-2.27.1-py2.py3-none-any.whl (63 kB) 2025-08-14T21:47:48.5962490Z ---------------------------------------- 63.1/63.1 kB 678.1 kB/s eta 0:00:00 2025-08-14T21:47:49.4139686Z Installing collected packages: requests 2025-08-14T21:47:49.4140543Z Attempting uninstall: requests 2025-08-14T21:47:49.4152262Z Found existing installation: requests 2.32.3 2025-08-14T21:47:49.4230123Z Uninstalling requests-2.32.3: 2025-08-14T21:47:49.4251746Z Successfully uninstalled requests-2.32.3 2025-08-14T21:47:49.6106320Z Successfully installed requests-2.27.1 2025-08-14T21:47:50.4493228Z Command completed after 1 attempt(s). 2025-08-14T21:47:50.4712702Z ##[group]Run set -x 2025-08-14T21:47:50.4712952Z set -x 2025-08-14T21:47:50.4713162Z  2025-08-14T21:47:50.4713541Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-08-14T21:47:50.4714013Z # in runner workspace 2025-08-14T21:47:50.4714370Z python3 "${GITHUB_ACTION_PATH}/../../scripts/parse_ref.py" 2025-08-14T21:47:50.4734084Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:47:50.4734547Z env: 2025-08-14T21:47:50.4734738Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:50.4735138Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:50.4735693Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:50.4736191Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:50.4736599Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:50.4736898Z ##[endgroup] 2025-08-14T21:47:50.4934611Z + python3 'C:\actions-runner\_work\pytorch\pytorch\./.github/actions/filter-test-configs/../../scripts/parse_ref.py' 2025-08-14T21:47:50.5401804Z Setting output branch=main 2025-08-14T21:47:50.5565784Z ##[group]Run echo "Workflow: ${GITHUB_WORKFLOW}" 2025-08-14T21:47:50.5566179Z echo "Workflow: ${GITHUB_WORKFLOW}" 2025-08-14T21:47:50.5566506Z echo "Job name: ${JOB_NAME}" 2025-08-14T21:47:50.5566773Z  2025-08-14T21:47:50.5567135Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-08-14T21:47:50.5567590Z # in runner workspace 2025-08-14T21:47:50.5568149Z python3 "${GITHUB_ACTION_PATH}/../../scripts/filter_test_configs.py" \ 2025-08-14T21:47:50.5568617Z  --workflow "${GITHUB_WORKFLOW}" \ 2025-08-14T21:47:50.5568937Z  --job-name "${JOB_NAME}" \ 2025-08-14T21:47:50.5570145Z  --test-matrix "{"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}]}" \ 2025-08-14T21:47:50.5571540Z  --selected-test-configs "" \ 2025-08-14T21:47:50.5571867Z  --pr-number "${PR_NUMBER}" \ 2025-08-14T21:47:50.5572310Z  --tag "${TAG}" \ 2025-08-14T21:47:50.5572576Z  --event-name "${EVENT_NAME}" \ 2025-08-14T21:47:50.5572880Z  --schedule "${SCHEDULE}" \ 2025-08-14T21:47:50.5573160Z  --branch "${HEAD_BRANCH}" 2025-08-14T21:47:50.5592614Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:47:50.5593062Z env: 2025-08-14T21:47:50.5593267Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:50.5593646Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:50.5594187Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:50.5594672Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:50.5595252Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:50.5595781Z GITHUB_TOKEN: *** 2025-08-14T21:47:50.5596168Z JOB_NAME: win-vs2022-cpu-py3 / test (default, 3, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T21:47:50.5596630Z PR_NUMBER: 2025-08-14T21:47:50.5596815Z TAG: 2025-08-14T21:47:50.5596993Z EVENT_NAME: push 2025-08-14T21:47:50.5597195Z SCHEDULE: 2025-08-14T21:47:50.5597408Z HEAD_BRANCH: main 2025-08-14T21:47:50.5597607Z ##[endgroup] 2025-08-14T21:47:50.5788430Z Workflow: trunk 2025-08-14T21:47:50.5789563Z Job name: win-vs2022-cpu-py3 / test (default, 3, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T21:47:50.9201004Z Setting output keep-going=True 2025-08-14T21:47:50.9201362Z Setting output ci-verbose-test-logs=False 2025-08-14T21:47:50.9201695Z Setting output ci-test-showlocals=False 2025-08-14T21:47:50.9202019Z Setting output ci-no-test-timeout=False 2025-08-14T21:47:50.9202357Z Setting output ci-no-td=False 2025-08-14T21:47:50.9202633Z Setting output ci-td-distributed=False 2025-08-14T21:47:50.9202942Z Setting output is-unstable=False 2025-08-14T21:47:50.9203219Z Setting output reenabled-issues= 2025-08-14T21:47:50.9204459Z Setting output test-matrix={"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}]} 2025-08-14T21:47:50.9205875Z Setting output is-test-matrix-empty=False 2025-08-14T21:47:50.9440203Z ##[group]Run echo "Filtered matrix:" 2025-08-14T21:47:50.9440541Z echo "Filtered matrix:" 2025-08-14T21:47:50.9441981Z echo "{"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "lf.windows.4xlarge.nonephemeral"}]}" 2025-08-14T21:47:50.9443247Z  2025-08-14T21:47:50.9443428Z echo 2025-08-14T21:47:50.9443687Z echo "Is the current job unstable? False" 2025-08-14T21:47:50.9443994Z  2025-08-14T21:47:50.9444184Z echo 2025-08-14T21:47:50.9444409Z echo "Is keep-going label set? True" 2025-08-14T21:47:50.9444706Z  2025-08-14T21:47:50.9444878Z echo 2025-08-14T21:47:50.9445097Z echo "Reenabled issues? " 2025-08-14T21:47:50.9465222Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:47:50.9465686Z env: 2025-08-14T21:47:50.9465887Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:50.9466285Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:50.9466818Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:50.9467449Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:50.9467879Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:50.9468266Z ##[endgroup] 2025-08-14T21:47:50.9673770Z Filtered matrix: 2025-08-14T21:47:50.9675300Z {include: [{config: default, shard: 1, num_shards: 3, runner: lf.windows.4xlarge.nonephemeral}, {config: default, shard: 2, num_shards: 3, runner: lf.windows.4xlarge.nonephemeral}, {config: default, shard: 3, num_shards: 3, runner: lf.windows.4xlarge.nonephemeral}]} 2025-08-14T21:47:50.9677387Z 2025-08-14T21:47:50.9677620Z Is the current job unstable? False 2025-08-14T21:47:50.9677958Z 2025-08-14T21:47:50.9678127Z Is keep-going label set? True 2025-08-14T21:47:50.9678450Z 2025-08-14T21:47:50.9678587Z Reenabled issues? 2025-08-14T21:47:50.9816166Z ##[group]Run echo "timeout=$((JOB_TIMEOUT-30))" >> "${GITHUB_OUTPUT}" 2025-08-14T21:47:50.9816686Z echo "timeout=$((JOB_TIMEOUT-30))" >> "${GITHUB_OUTPUT}" 2025-08-14T21:47:50.9846689Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:47:50.9847134Z env: 2025-08-14T21:47:50.9847339Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:50.9847724Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:50.9848377Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:50.9848866Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:50.9849290Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:50.9851608Z JOB_TIMEOUT: 240 2025-08-14T21:47:50.9851816Z ##[endgroup] 2025-08-14T21:47:51.0218020Z ##[group]Run pushd "${PYTORCH_FINAL_PACKAGE_DIR}" 2025-08-14T21:47:51.0218452Z pushd "${PYTORCH_FINAL_PACKAGE_DIR}" 2025-08-14T21:47:51.0218805Z # shellcheck disable=SC2046,SC2102 2025-08-14T21:47:51.0219249Z python3 -mpip install $(echo *.whl)[opt-einsum,optree] optree==0.13.0 2025-08-14T21:47:51.0219712Z popd 2025-08-14T21:47:51.0219905Z  2025-08-14T21:47:51.0220112Z .ci/pytorch/win-test.sh 2025-08-14T21:47:51.0238943Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-14T21:47:51.0239387Z env: 2025-08-14T21:47:51.0239577Z GIT_DEFAULT_BRANCH: main 2025-08-14T21:47:51.0239982Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:47:51.0240525Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:47:51.0241016Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:47:51.0241458Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:47:51.0241764Z USE_CUDA: 0 2025-08-14T21:47:51.0241976Z INSTALL_WINDOWS_SDK: 1 2025-08-14T21:47:51.0242206Z PYTHON_VERSION: 3.9 2025-08-14T21:47:51.0242436Z CONTINUE_THROUGH_ERROR: True 2025-08-14T21:47:51.0242691Z VERBOSE_TEST_LOGS: False 2025-08-14T21:47:51.0242942Z TEST_SHOWLOCALS: False 2025-08-14T21:47:51.0243162Z NO_TEST_TIMEOUT: False 2025-08-14T21:47:51.0243385Z NO_TD: False 2025-08-14T21:47:51.0243579Z VC_PRODUCT: BuildTools 2025-08-14T21:47:51.0243802Z VC_VERSION: 2025-08-14T21:47:51.0243994Z VS_VERSION: 17.4.1 2025-08-14T21:47:51.0244209Z VC_YEAR: 2022 2025-08-14T21:47:51.0244424Z AWS_DEFAULT_REGION: us-east-1 2025-08-14T21:47:51.0244664Z PR_NUMBER: 2025-08-14T21:47:51.0244883Z GITHUB_REPOSITORY: pytorch/pytorch 2025-08-14T21:47:51.0245159Z GITHUB_WORKFLOW: trunk 2025-08-14T21:47:51.0245386Z GITHUB_JOB: test 2025-08-14T21:47:51.0245586Z GITHUB_RUN_ID: 16976255045 2025-08-14T21:47:51.0245839Z GITHUB_RUN_NUMBER: 140204 2025-08-14T21:47:51.0246072Z GITHUB_RUN_ATTEMPT: 1 2025-08-14T21:47:51.0246294Z JOB_ID: 48128743920 2025-08-14T21:47:51.0246682Z JOB_NAME: win-vs2022-cpu-py3 / test (default, 3, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T21:47:51.0247194Z SHA1: 1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:47:51.0247505Z CUDA_VERSION: cpu 2025-08-14T21:47:51.0247785Z PYTORCH_FINAL_PACKAGE_DIR: /c/16976255045/build-results/ 2025-08-14T21:47:51.0248273Z BUILD_ENVIRONMENT: win-vs2022-cpu-py3 2025-08-14T21:47:51.0248690Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-08-14T21:47:51.0249108Z SHARD_NUMBER: 3 2025-08-14T21:47:51.0249311Z NUM_TEST_SHARDS: 3 2025-08-14T21:47:51.0249537Z TEST_CONFIG: default 2025-08-14T21:47:51.0249764Z REENABLED_ISSUES: 2025-08-14T21:47:51.0249978Z TORCH_CUDA_ARCH_LIST: 8.6 2025-08-14T21:47:51.0250245Z PYTORCH_TEST_CUDA_MEM_LEAK_CHECK: 0 2025-08-14T21:47:51.0250544Z PYTORCH_TEST_RERUN_DISABLED_TESTS: 0 2025-08-14T21:47:51.0250820Z ##[endgroup] 2025-08-14T21:47:51.0448597Z /c/16976255045/build-results /c/actions-runner/_work/pytorch/pytorch 2025-08-14T21:47:51.5978046Z Processing c:\16976255045\build-results\torch-2.9.0a0+git1fc683c-cp39-cp39-win_amd64.whl (from torch==2.9.0a0+git1fc683c) 2025-08-14T21:47:52.9162369Z Collecting optree==0.13.0 2025-08-14T21:47:53.1170929Z Downloading optree-0.13.0-cp39-cp39-win_amd64.whl.metadata (48 kB) 2025-08-14T21:47:53.2057699Z -------------------------------------- 48.7/48.7 kB 413.8 kB/s eta 0:00:00 2025-08-14T21:47:53.2447936Z Requirement already satisfied: typing-extensions>=4.5.0 in c:\jenkins\miniconda3\lib\site-packages (from optree==0.13.0) (4.12.2) 2025-08-14T21:47:53.2883522Z Collecting filelock (from torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:47:53.2945400Z Downloading filelock-3.19.1-py3-none-any.whl.metadata (2.1 kB) 2025-08-14T21:47:53.3315173Z Collecting sympy>=1.13.3 (from torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:47:53.3358881Z Downloading sympy-1.14.0-py3-none-any.whl.metadata (12 kB) 2025-08-14T21:47:53.3436021Z Requirement already satisfied: networkx>=2.5.1 in c:\jenkins\miniconda3\lib\site-packages (from torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) (2.8.8) 2025-08-14T21:47:53.3708957Z Collecting jinja2 (from torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:47:53.3781275Z Downloading jinja2-3.1.6-py3-none-any.whl.metadata (2.9 kB) 2025-08-14T21:47:53.4256553Z Collecting fsspec>=0.8.5 (from torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:47:53.4304291Z Downloading fsspec-2025.7.0-py3-none-any.whl.metadata (12 kB) 2025-08-14T21:47:53.4688215Z Collecting intel-openmp==2025.1.1 (from torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:47:53.4735162Z Downloading intel_openmp-2025.1.1-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-08-14T21:47:53.5027302Z Collecting intel-cmplr-lib-ur==2025.1.1 (from intel-openmp==2025.1.1->torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:47:53.5084535Z Downloading intel_cmplr_lib_ur-2025.1.1-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-08-14T21:47:53.5344750Z Collecting umf==0.10.* (from intel-cmplr-lib-ur==2025.1.1->intel-openmp==2025.1.1->torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:47:53.5413622Z Downloading umf-0.10.0-py2.py3-none-win_amd64.whl.metadata (1.1 kB) 2025-08-14T21:47:53.5679193Z Collecting tcmlib==1.3 (from umf==0.10.*->intel-cmplr-lib-ur==2025.1.1->intel-openmp==2025.1.1->torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:47:53.5760869Z Downloading tcmlib-1.3.0-py2.py3-none-win_amd64.whl.metadata (1.0 kB) 2025-08-14T21:47:53.5932249Z Requirement already satisfied: opt-einsum>=3.3 in c:\jenkins\miniconda3\lib\site-packages (from torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) (3.4.0) 2025-08-14T21:47:53.7379265Z Requirement already satisfied: mpmath<1.4,>=1.1.0 in c:\jenkins\miniconda3\lib\site-packages (from sympy>=1.13.3->torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) (1.2.1) 2025-08-14T21:47:53.8238345Z Collecting MarkupSafe>=2.0 (from jinja2->torch==2.9.0a0+git1fc683c->torch==2.9.0a0+git1fc683c) 2025-08-14T21:47:53.8288178Z Downloading MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl.metadata (4.1 kB) 2025-08-14T21:47:53.8648955Z Downloading optree-0.13.0-cp39-cp39-win_amd64.whl (270 kB) 2025-08-14T21:47:53.8946130Z --------------------------------------- 270.1/270.1 kB 17.3 MB/s eta 0:00:00 2025-08-14T21:47:53.9040827Z Downloading intel_openmp-2025.1.1-py2.py3-none-win_amd64.whl (12.7 MB) 2025-08-14T21:47:54.0170697Z ---------------------------------------- 12.7/12.7 MB 108.8 MB/s eta 0:00:00 2025-08-14T21:47:54.0266456Z Downloading intel_cmplr_lib_ur-2025.1.1-py2.py3-none-win_amd64.whl (1.1 MB) 2025-08-14T21:47:54.0421389Z ---------------------------------------- 1.1/1.1 MB ? eta 0:00:00 2025-08-14T21:47:54.0496384Z Downloading umf-0.10.0-py2.py3-none-win_amd64.whl (193 kB) 2025-08-14T21:47:54.0595047Z --------------------------------------- 193.9/193.9 kB 11.5 MB/s eta 0:00:00 2025-08-14T21:47:54.0657835Z Downloading tcmlib-1.3.0-py2.py3-none-win_amd64.whl (356 kB) 2025-08-14T21:47:54.0776198Z --------------------------------------- 356.9/356.9 kB 23.1 MB/s eta 0:00:00 2025-08-14T21:47:54.0821789Z Downloading fsspec-2025.7.0-py3-none-any.whl (199 kB) 2025-08-14T21:47:54.0923430Z --------------------------------------- 199.6/199.6 kB 11.8 MB/s eta 0:00:00 2025-08-14T21:47:54.0967639Z Downloading sympy-1.14.0-py3-none-any.whl (6.3 MB) 2025-08-14T21:47:54.1467109Z ---------------------------------------- 6.3/6.3 MB 133.8 MB/s eta 0:00:00 2025-08-14T21:47:54.1514577Z Downloading filelock-3.19.1-py3-none-any.whl (15 kB) 2025-08-14T21:47:54.1635215Z Downloading jinja2-3.1.6-py3-none-any.whl (134 kB) 2025-08-14T21:47:54.1731458Z ---------------------------------------- 134.9/134.9 kB 7.8 MB/s eta 0:00:00 2025-08-14T21:47:54.1776362Z Downloading MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl (15 kB) 2025-08-14T21:47:55.2911400Z Installing collected packages: tcmlib, umf, sympy, optree, MarkupSafe, fsspec, filelock, jinja2, intel-cmplr-lib-ur, intel-openmp, torch 2025-08-14T21:47:55.3415985Z Attempting uninstall: sympy 2025-08-14T21:47:55.3430801Z Found existing installation: sympy 1.11.1 2025-08-14T21:47:55.7516682Z Uninstalling sympy-1.11.1: 2025-08-14T21:47:56.1463842Z Successfully uninstalled sympy-1.11.1 2025-08-14T21:48:03.9110983Z WARNING: The script isympy.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-14T21:48:03.9111830Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T21:48:26.5428245Z WARNING: The scripts torchfrtrace.exe and torchrun.exe are installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-14T21:48:26.5429234Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T21:48:26.8418482Z 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:48:26.9645537Z /c/actions-runner/_work/pytorch/pytorch 2025-08-14T21:48:26.9978419Z +++ dirname .ci/pytorch/win-test.sh 2025-08-14T21:48:27.0048107Z ++ cd .ci/pytorch 2025-08-14T21:48:27.0053043Z ++ pwd 2025-08-14T21:48:27.0058727Z + SCRIPT_PARENT_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch 2025-08-14T21:48:27.0059311Z + source /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common.sh 2025-08-14T21:48:27.0137144Z +++ dirname /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common.sh 2025-08-14T21:48:27.0262991Z ++ source /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common_utils.sh 2025-08-14T21:48:27.0266408Z +++ declare -f -t trap_add 2025-08-14T21:48:27.0274543Z ++ set -ex -o pipefail 2025-08-14T21:48:27.0275642Z ++ [[ win-vs2022-cpu-py3 == *rocm* ]] 2025-08-14T21:48:27.0275929Z ++ BUILD_TEST_LIBTORCH=0 2025-08-14T21:48:27.0276299Z + export TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-14T21:48:27.0276792Z + TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-14T21:48:27.0381143Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-14T21:48:27.0492770Z + TMP_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch\build\win_tmp' 2025-08-14T21:48:27.0493203Z + export TMP_DIR_WIN 2025-08-14T21:48:27.0493527Z + export PROJECT_DIR=/c/actions-runner/_work/pytorch/pytorch 2025-08-14T21:48:27.0493948Z + PROJECT_DIR=/c/actions-runner/_work/pytorch/pytorch 2025-08-14T21:48:27.0554002Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch 2025-08-14T21:48:27.0657759Z + PROJECT_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch' 2025-08-14T21:48:27.0658359Z + export PROJECT_DIR_WIN 2025-08-14T21:48:27.0658733Z + export TEST_DIR=/c/actions-runner/_work/pytorch/pytorch/test 2025-08-14T21:48:27.0659170Z + TEST_DIR=/c/actions-runner/_work/pytorch/pytorch/test 2025-08-14T21:48:27.0719178Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch/test 2025-08-14T21:48:27.0823267Z + TEST_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch\test' 2025-08-14T21:48:27.0824000Z + export TEST_DIR_WIN 2025-08-14T21:48:27.0824431Z + export PYTORCH_FINAL_PACKAGE_DIR=/c/16976255045/build-results/ 2025-08-14T21:48:27.0824875Z + PYTORCH_FINAL_PACKAGE_DIR=/c/16976255045/build-results/ 2025-08-14T21:48:27.0889177Z ++ cygpath -w /c/16976255045/build-results/ 2025-08-14T21:48:27.0990500Z + PYTORCH_FINAL_PACKAGE_DIR_WIN='C:\16976255045\build-results\' 2025-08-14T21:48:27.0990946Z + export PYTORCH_FINAL_PACKAGE_DIR_WIN 2025-08-14T21:48:27.0991250Z + export TORCH_SERIALIZATION_DEBUG=1 2025-08-14T21:48:27.0991547Z + TORCH_SERIALIZATION_DEBUG=1 2025-08-14T21:48:27.0992209Z + mkdir -p /c/actions-runner/_work/pytorch/pytorch/build/win_tmp/build/torch 2025-08-14T21:48:27.1131281Z + export SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-08-14T21:48:27.1132046Z + SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-08-14T21:48:27.1132555Z + [[ default = \f\o\r\c\e\_\o\n\_\c\p\u ]] 2025-08-14T21:48:27.1132885Z + [[ win-vs2022-cpu-py3 == *cuda* ]] 2025-08-14T21:48:27.1133625Z + 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:48:27.8789288Z Collecting pytest-rerunfailures==10.3 2025-08-14T21:48:28.0776817Z Downloading pytest_rerunfailures-10.3-py3-none-any.whl.metadata (15 kB) 2025-08-14T21:48:28.0864420Z Requirement already satisfied: pytest-cpp==2.3.0 in c:\jenkins\miniconda3\lib\site-packages (2.3.0) 2025-08-14T21:48:28.1413713Z Collecting tensorboard==2.13.0 2025-08-14T21:48:28.1472942Z Downloading tensorboard-2.13.0-py3-none-any.whl.metadata (1.8 kB) 2025-08-14T21:48:28.5534919Z Collecting protobuf==5.29.4 2025-08-14T21:48:28.5593801Z Downloading protobuf-5.29.4-cp39-cp39-win_amd64.whl.metadata (592 bytes) 2025-08-14T21:48:28.5841770Z Collecting pytest-subtests==0.13.1 2025-08-14T21:48:28.5897091Z Downloading pytest_subtests-0.13.1-py3-none-any.whl.metadata (6.1 kB) 2025-08-14T21:48:28.6011641Z Requirement already satisfied: packaging>=17.1 in c:\jenkins\miniconda3\lib\site-packages (from pytest-rerunfailures==10.3) (23.2) 2025-08-14T21:48:28.6018521Z Requirement already satisfied: pytest>=5.3 in c:\jenkins\miniconda3\lib\site-packages (from pytest-rerunfailures==10.3) (7.1.3) 2025-08-14T21:48:28.6045705Z Requirement already satisfied: colorama in c:\jenkins\miniconda3\lib\site-packages (from pytest-cpp==2.3.0) (0.4.6) 2025-08-14T21:48:28.6329167Z Collecting absl-py>=0.4 (from tensorboard==2.13.0) 2025-08-14T21:48:28.6437235Z Downloading absl_py-2.3.1-py3-none-any.whl.metadata (3.3 kB) 2025-08-14T21:48:29.4167912Z Collecting grpcio>=1.48.2 (from tensorboard==2.13.0) 2025-08-14T21:48:29.4224502Z Downloading grpcio-1.74.0-cp39-cp39-win_amd64.whl.metadata (4.0 kB) 2025-08-14T21:48:29.5398990Z Collecting google-auth<3,>=1.6.3 (from tensorboard==2.13.0) 2025-08-14T21:48:29.5449911Z Downloading google_auth-2.40.3-py2.py3-none-any.whl.metadata (6.2 kB) 2025-08-14T21:48:29.5712295Z Collecting google-auth-oauthlib<1.1,>=0.5 (from tensorboard==2.13.0) 2025-08-14T21:48:29.5776962Z Downloading google_auth_oauthlib-1.0.0-py2.py3-none-any.whl.metadata (2.7 kB) 2025-08-14T21:48:29.6130484Z Collecting markdown>=2.6.8 (from tensorboard==2.13.0) 2025-08-14T21:48:29.6180851Z Downloading markdown-3.8.2-py3-none-any.whl.metadata (5.1 kB) 2025-08-14T21:48:29.7347952Z 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:48:29.7567949Z 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:48:29.7575838Z 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:48:29.7733370Z Collecting tensorboard-data-server<0.8.0,>=0.7.0 (from tensorboard==2.13.0) 2025-08-14T21:48:29.7781184Z Downloading tensorboard_data_server-0.7.2-py3-none-any.whl.metadata (1.1 kB) 2025-08-14T21:48:29.8608115Z Collecting werkzeug>=1.0.1 (from tensorboard==2.13.0) 2025-08-14T21:48:29.8653496Z Downloading werkzeug-3.1.3-py3-none-any.whl.metadata (3.7 kB) 2025-08-14T21:48:29.8719292Z Requirement already satisfied: wheel>=0.26 in c:\jenkins\miniconda3\lib\site-packages (from tensorboard==2.13.0) (0.43.0) 2025-08-14T21:48:29.8771489Z Requirement already satisfied: attrs>=19.2.0 in c:\jenkins\miniconda3\lib\site-packages (from pytest-subtests==0.13.1) (25.3.0) 2025-08-14T21:48:29.9909027Z Collecting cachetools<6.0,>=2.0.0 (from google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-08-14T21:48:29.9968108Z Downloading cachetools-5.5.2-py3-none-any.whl.metadata (5.4 kB) 2025-08-14T21:48:30.0316516Z Collecting pyasn1-modules>=0.2.1 (from google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-08-14T21:48:30.0363297Z Downloading pyasn1_modules-0.4.2-py3-none-any.whl.metadata (3.5 kB) 2025-08-14T21:48:30.0652273Z Collecting rsa<5,>=3.1.4 (from google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-08-14T21:48:30.0714242Z Downloading rsa-4.9.1-py3-none-any.whl.metadata (5.6 kB) 2025-08-14T21:48:30.1260474Z Collecting requests-oauthlib>=0.7.0 (from google-auth-oauthlib<1.1,>=0.5->tensorboard==2.13.0) 2025-08-14T21:48:30.1302835Z Downloading requests_oauthlib-2.0.0-py2.py3-none-any.whl.metadata (11 kB) 2025-08-14T21:48:30.1537484Z Requirement already satisfied: importlib-metadata>=4.4 in c:\jenkins\miniconda3\lib\site-packages (from markdown>=2.6.8->tensorboard==2.13.0) (8.5.0) 2025-08-14T21:48:30.1708936Z Requirement already satisfied: iniconfig in c:\jenkins\miniconda3\lib\site-packages (from pytest>=5.3->pytest-rerunfailures==10.3) (2.1.0) 2025-08-14T21:48:30.1717181Z Requirement already satisfied: pluggy<2.0,>=0.12 in c:\jenkins\miniconda3\lib\site-packages (from pytest>=5.3->pytest-rerunfailures==10.3) (1.0.0) 2025-08-14T21:48:30.1728199Z Requirement already satisfied: py>=1.8.2 in c:\jenkins\miniconda3\lib\site-packages (from pytest>=5.3->pytest-rerunfailures==10.3) (1.11.0) 2025-08-14T21:48:30.1735074Z Requirement already satisfied: tomli>=1.0.0 in c:\jenkins\miniconda3\lib\site-packages (from pytest>=5.3->pytest-rerunfailures==10.3) (2.2.1) 2025-08-14T21:48:30.1869055Z Requirement already satisfied: urllib3<1.27,>=1.21.1 in c:\jenkins\miniconda3\lib\site-packages (from requests<3,>=2.21.0->tensorboard==2.13.0) (1.26.19) 2025-08-14T21:48:30.1878299Z Requirement already satisfied: certifi>=2017.4.17 in c:\jenkins\miniconda3\lib\site-packages (from requests<3,>=2.21.0->tensorboard==2.13.0) (2025.4.26) 2025-08-14T21:48:30.1891104Z Requirement already satisfied: charset-normalizer~=2.0.0 in c:\jenkins\miniconda3\lib\site-packages (from requests<3,>=2.21.0->tensorboard==2.13.0) (2.0.4) 2025-08-14T21:48:30.1905996Z Requirement already satisfied: idna<4,>=2.5 in c:\jenkins\miniconda3\lib\site-packages (from requests<3,>=2.21.0->tensorboard==2.13.0) (3.7) 2025-08-14T21:48:30.2206268Z Requirement already satisfied: MarkupSafe>=2.1.1 in c:\jenkins\miniconda3\lib\site-packages (from werkzeug>=1.0.1->tensorboard==2.13.0) (3.0.2) 2025-08-14T21:48:30.2627414Z Requirement already satisfied: zipp>=3.20 in c:\jenkins\miniconda3\lib\site-packages (from importlib-metadata>=4.4->markdown>=2.6.8->tensorboard==2.13.0) (3.21.0) 2025-08-14T21:48:30.3151351Z Collecting pyasn1<0.7.0,>=0.6.1 (from pyasn1-modules>=0.2.1->google-auth<3,>=1.6.3->tensorboard==2.13.0) 2025-08-14T21:48:30.3200461Z Downloading pyasn1-0.6.1-py3-none-any.whl.metadata (8.4 kB) 2025-08-14T21:48:30.3538715Z Collecting oauthlib>=3.0.0 (from requests-oauthlib>=0.7.0->google-auth-oauthlib<1.1,>=0.5->tensorboard==2.13.0) 2025-08-14T21:48:30.3587103Z Downloading oauthlib-3.3.1-py3-none-any.whl.metadata (7.9 kB) 2025-08-14T21:48:30.4440879Z Downloading pytest_rerunfailures-10.3-py3-none-any.whl (11 kB) 2025-08-14T21:48:30.4545347Z Downloading tensorboard-2.13.0-py3-none-any.whl (5.6 MB) 2025-08-14T21:48:30.5226369Z ---------------------------------------- 5.6/5.6 MB 88.2 MB/s eta 0:00:00 2025-08-14T21:48:30.5294021Z Downloading protobuf-5.29.4-cp39-cp39-win_amd64.whl (434 kB) 2025-08-14T21:48:30.5422135Z --------------------------------------- 434.6/434.6 kB 28.3 MB/s eta 0:00:00 2025-08-14T21:48:30.5473146Z Downloading pytest_subtests-0.13.1-py3-none-any.whl (8.0 kB) 2025-08-14T21:48:30.5581176Z Downloading absl_py-2.3.1-py3-none-any.whl (135 kB) 2025-08-14T21:48:30.5665975Z ---------------------------------------- 135.8/135.8 kB ? eta 0:00:00 2025-08-14T21:48:30.5710011Z Downloading google_auth-2.40.3-py2.py3-none-any.whl (216 kB) 2025-08-14T21:48:30.5818260Z --------------------------------------- 216.1/216.1 kB 13.7 MB/s eta 0:00:00 2025-08-14T21:48:30.5860905Z Downloading google_auth_oauthlib-1.0.0-py2.py3-none-any.whl (18 kB) 2025-08-14T21:48:30.5993160Z Downloading grpcio-1.74.0-cp39-cp39-win_amd64.whl (4.5 MB) 2025-08-14T21:48:30.6503970Z ---------------------------------------- 4.5/4.5 MB 95.4 MB/s eta 0:00:00 2025-08-14T21:48:30.6546569Z Downloading markdown-3.8.2-py3-none-any.whl (106 kB) 2025-08-14T21:48:30.6641081Z ---------------------------------------- 106.8/106.8 kB ? eta 0:00:00 2025-08-14T21:48:30.6685986Z Downloading tensorboard_data_server-0.7.2-py3-none-any.whl (2.4 kB) 2025-08-14T21:48:30.6791382Z Downloading werkzeug-3.1.3-py3-none-any.whl (224 kB) 2025-08-14T21:48:30.6887875Z ---------------------------------------- 224.5/224.5 kB ? eta 0:00:00 2025-08-14T21:48:30.6945792Z Downloading cachetools-5.5.2-py3-none-any.whl (10 kB) 2025-08-14T21:48:30.7050541Z Downloading pyasn1_modules-0.4.2-py3-none-any.whl (181 kB) 2025-08-14T21:48:30.7159781Z --------------------------------------- 181.3/181.3 kB 10.7 MB/s eta 0:00:00 2025-08-14T21:48:30.7201082Z Downloading requests_oauthlib-2.0.0-py2.py3-none-any.whl (24 kB) 2025-08-14T21:48:30.7296277Z Downloading rsa-4.9.1-py3-none-any.whl (34 kB) 2025-08-14T21:48:30.7411126Z Downloading oauthlib-3.3.1-py3-none-any.whl (160 kB) 2025-08-14T21:48:30.7525948Z --------------------------------------- 160.1/160.1 kB 10.0 MB/s eta 0:00:00 2025-08-14T21:48:30.7567654Z Downloading pyasn1-0.6.1-py3-none-any.whl (83 kB) 2025-08-14T21:48:30.7664004Z ---------------------------------------- 83.1/83.1 kB 4.6 MB/s eta 0:00:00 2025-08-14T21:48:31.7099895Z Installing collected packages: werkzeug, tensorboard-data-server, pyasn1, protobuf, oauthlib, grpcio, cachetools, absl-py, rsa, requests-oauthlib, pytest-subtests, pytest-rerunfailures, pyasn1-modules, markdown, google-auth, google-auth-oauthlib, tensorboard 2025-08-14T21:48:32.0217974Z Attempting uninstall: protobuf 2025-08-14T21:48:32.0230323Z Found existing installation: protobuf 5.29.3 2025-08-14T21:48:32.0422090Z Uninstalling protobuf-5.29.3: 2025-08-14T21:48:32.0468239Z Successfully uninstalled protobuf-5.29.3 2025-08-14T21:48:32.8333498Z WARNING: The scripts pyrsa-decrypt.exe, pyrsa-encrypt.exe, pyrsa-keygen.exe, pyrsa-priv2pub.exe, pyrsa-sign.exe and pyrsa-verify.exe are installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-14T21:48:32.8334832Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T21:48:32.9611835Z Attempting uninstall: pytest-rerunfailures 2025-08-14T21:48:32.9628079Z Found existing installation: pytest-rerunfailures 10.2 2025-08-14T21:48:32.9677668Z Uninstalling pytest-rerunfailures-10.2: 2025-08-14T21:48:33.4756565Z Successfully uninstalled pytest-rerunfailures-10.2 2025-08-14T21:48:33.8995241Z WARNING: The script markdown_py.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-14T21:48:33.8996162Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T21:48:34.1095029Z WARNING: The script google-oauthlib-tool.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-14T21:48:34.1095964Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T21:48:35.1265017Z WARNING: The script tensorboard.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-14T21:48:35.1266026Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T21:48:35.1897360Z Successfully installed absl-py-2.3.1 cachetools-5.5.2 google-auth-2.40.3 google-auth-oauthlib-1.0.0 grpcio-1.74.0 markdown-3.8.2 oauthlib-3.3.1 protobuf-5.29.4 pyasn1-0.6.1 pyasn1-modules-0.4.2 pytest-rerunfailures-10.3 pytest-subtests-0.13.1 requests-oauthlib-2.0.0 rsa-4.9.1 tensorboard-2.13.0 tensorboard-data-server-0.7.2 werkzeug-3.1.3 2025-08-14T21:48:35.4606496Z + python -m pip install z3-solver==4.15.1.0 2025-08-14T21:48:36.2860773Z Collecting z3-solver==4.15.1.0 2025-08-14T21:48:36.4835681Z Downloading z3_solver-4.15.1.0-py3-none-win_amd64.whl.metadata (778 bytes) 2025-08-14T21:48:36.4996245Z Downloading z3_solver-4.15.1.0-py3-none-win_amd64.whl (16.4 MB) 2025-08-14T21:48:36.9567242Z ---------------------------------------- 16.4/16.4 MB 109.9 MB/s eta 0:00:00 2025-08-14T21:48:38.0414517Z Installing collected packages: z3-solver 2025-08-14T21:48:38.5460293Z Successfully installed z3-solver-4.15.1.0 2025-08-14T21:48:38.6335876Z + python -m pip install tlparse==0.3.30 2025-08-14T21:48:39.5176814Z Collecting tlparse==0.3.30 2025-08-14T21:48:39.7131323Z Downloading tlparse-0.3.30-py3-none-win_amd64.whl.metadata (2.0 kB) 2025-08-14T21:48:39.7302497Z Downloading tlparse-0.3.30-py3-none-win_amd64.whl (1.8 MB) 2025-08-14T21:48:39.9226478Z ---------------------------------------- 1.8/1.8 MB 9.8 MB/s eta 0:00:00 2025-08-14T21:48:40.9671476Z Installing collected packages: tlparse 2025-08-14T21:48:41.0490596Z Successfully installed tlparse-0.3.30 2025-08-14T21:48:41.1546827Z + python -m pip install parameterized==0.8.1 2025-08-14T21:48:41.9066553Z Collecting parameterized==0.8.1 2025-08-14T21:48:42.1019362Z Downloading parameterized-0.8.1-py2.py3-none-any.whl.metadata (18 kB) 2025-08-14T21:48:42.1372232Z Downloading parameterized-0.8.1-py2.py3-none-any.whl (26 kB) 2025-08-14T21:48:43.1951499Z Installing collected packages: parameterized 2025-08-14T21:48:43.2782121Z Successfully installed parameterized-0.8.1 2025-08-14T21:48:43.3652810Z + python -m pip install pulp==2.9.0 2025-08-14T21:48:44.1454323Z Collecting pulp==2.9.0 2025-08-14T21:48:44.3464052Z Downloading PuLP-2.9.0-py3-none-any.whl.metadata (5.4 kB) 2025-08-14T21:48:44.3600988Z Downloading PuLP-2.9.0-py3-none-any.whl (17.7 MB) 2025-08-14T21:48:44.6561890Z ---------------------------------------- 17.7/17.7 MB 81.8 MB/s eta 0:00:00 2025-08-14T21:48:45.7567135Z Installing collected packages: pulp 2025-08-14T21:48:46.1936331Z WARNING: The script pulptest.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-14T21:48:46.1937201Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-14T21:48:46.2479200Z Successfully installed pulp-2.9.0 2025-08-14T21:48:46.3387998Z + python -m pip install expecttest==0.3.0 2025-08-14T21:48:47.1186552Z Collecting expecttest==0.3.0 2025-08-14T21:48:47.3154552Z Downloading expecttest-0.3.0-py3-none-any.whl.metadata (3.8 kB) 2025-08-14T21:48:47.3320246Z Downloading expecttest-0.3.0-py3-none-any.whl (8.2 kB) 2025-08-14T21:48:48.3913499Z Installing collected packages: expecttest 2025-08-14T21:48:48.3914954Z Attempting uninstall: expecttest 2025-08-14T21:48:48.3924224Z Found existing installation: expecttest 0.1.3 2025-08-14T21:48:48.3962306Z Uninstalling expecttest-0.1.3: 2025-08-14T21:48:48.3983095Z Successfully uninstalled expecttest-0.1.3 2025-08-14T21:48:48.4616365Z Successfully installed expecttest-0.3.0 2025-08-14T21:48:48.5517094Z + run_tests 2025-08-14T21:48:48.5517688Z + for path in '/c/Program Files/NVIDIA Corporation/NVSMI/nvidia-smi.exe' /c/Windows/System32/nvidia-smi.exe 2025-08-14T21:48:48.5518393Z + [[ -x /c/Program Files/NVIDIA Corporation/NVSMI/nvidia-smi.exe ]] 2025-08-14T21:48:48.5519296Z + for path in '/c/Program Files/NVIDIA Corporation/NVSMI/nvidia-smi.exe' /c/Windows/System32/nvidia-smi.exe 2025-08-14T21:48:48.5519895Z + [[ -x /c/Windows/System32/nvidia-smi.exe ]] 2025-08-14T21:48:48.5520232Z + /c/Windows/System32/nvidia-smi.exe 2025-08-14T21:48:48.5947915Z NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is installed and running. This can also be happening if non-NVIDIA GPU is running as primary display, and NVIDIA GPU is in WDDM mode. 2025-08-14T21:48:48.5949037Z 2025-08-14T21:48:48.5984581Z + echo true 2025-08-14T21:48:48.5984827Z + break 2025-08-14T21:48:48.5985034Z true 2025-08-14T21:48:48.5985310Z + [[ 3 -eq 1 ]] 2025-08-14T21:48:48.5985790Z + /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_python_shard.bat 2025-08-14T21:48:48.6142162Z 2025-08-14T21:48:48.6144792Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\setup_pytorch_env.bat 2025-08-14T21:48:48.6152875Z 2025-08-14T21:48:48.6155757Z C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\Amazon\cfn-bootstrap;C:\ProgramData\chocolatey\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Users\runneruser\AppData\Local\Microsoft\WindowsApps 2025-08-14T21:48:48.6158494Z 2025-08-14T21:48:48.6159050Z C:\actions-runner\_work\pytorch\pytorch>set INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-08-14T21:48:48.6160665Z 2025-08-14T21:48:48.6163255Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\activate_miniconda3.bat 2025-08-14T21:48:48.6172567Z 2025-08-14T21:48:48.6173302Z C:\actions-runner\_work\pytorch\pytorch>if "win-vs2022-cpu-py3" == "" (set CONDA_PARENT_DIR=C:\actions-runner\_work\pytorch\pytorch ) else (set CONDA_PARENT_DIR=C:\Jenkins ) 2025-08-14T21:48:48.6178196Z 2025-08-14T21:48:48.6178738Z C:\actions-runner\_work\pytorch\pytorch>if not exist C:\Jenkins\Miniconda3 (set INSTALL_FRESH_CONDA=1 ) 2025-08-14T21:48:48.6182418Z 2025-08-14T21:48:48.6183196Z C:\actions-runner\_work\pytorch\pytorch>if "" == "1" ( 2025-08-14T21:48:48.6184350Z curl --retry 3 --retry-all-errors -k https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe --output C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe 2025-08-14T21:48:48.6185412Z if errorlevel 1 exit /b 2025-08-14T21:48:48.6185681Z if not errorlevel 0 exit /b 2025-08-14T21:48:48.6186534Z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\Miniconda3-latest-Windows-x86_64.exe /InstallationType=JustMe /RegisterPython=0 /S /AddToPath=0 /D=C:\Jenkins\Miniconda3 2025-08-14T21:48:48.6187510Z if errorlevel 1 exit /b 2025-08-14T21:48:48.6187771Z if not errorlevel 0 exit /b 2025-08-14T21:48:48.6188028Z ) 2025-08-14T21:48:48.6188132Z 2025-08-14T21:48:48.6188597Z C:\actions-runner\_work\pytorch\pytorch>call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-08-14T21:48:49.3268037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\functional.py 2025-08-14T21:48:49.3273822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\hub.py 2025-08-14T21:48:49.3278079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\library.py 2025-08-14T21:48:49.3283180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\overrides.py 2025-08-14T21:48:49.3287858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\py.typed 2025-08-14T21:48:49.3296110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quasirandom.py 2025-08-14T21:48:49.3300122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\random.py 2025-08-14T21:48:49.3303675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\return_types.py 2025-08-14T21:48:49.3307380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\return_types.pyi 2025-08-14T21:48:49.3311264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\serialization.py 2025-08-14T21:48:49.3316075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\storage.py 2025-08-14T21:48:49.3320626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\torch_version.py 2025-08-14T21:48:49.3324615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\types.py 2025-08-14T21:48:49.3328190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\version.py 2025-08-14T21:48:49.3331864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_appdirs.py 2025-08-14T21:48:49.3336026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C.cp39-win_amd64.pyd 2025-08-14T21:48:49.3339807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_classes.py 2025-08-14T21:48:49.3343644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_compile.py 2025-08-14T21:48:49.3347241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_ops.py 2025-08-14T21:48:49.3351682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_environment.py 2025-08-14T21:48:49.3355778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_guards.py 2025-08-14T21:48:49.3359931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_jit_internal.py 2025-08-14T21:48:49.3364364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_linalg_utils.py 2025-08-14T21:48:49.3368328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lobpcg.py 2025-08-14T21:48:49.3373088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lowrank.py 2025-08-14T21:48:49.3381184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_meta_registrations.py 2025-08-14T21:48:49.3386506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_namedtensor_internals.py 2025-08-14T21:48:49.3390310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_ops.py 2025-08-14T21:48:49.3394329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_python_dispatcher.py 2025-08-14T21:48:49.3413303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_size_docs.py 2025-08-14T21:48:49.3413767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_sources.py 2025-08-14T21:48:49.3414234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_storage_docs.py 2025-08-14T21:48:49.3414698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_streambase.py 2025-08-14T21:48:49.3415157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_tensor.py 2025-08-14T21:48:49.3419710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_tensor_docs.py 2025-08-14T21:48:49.3425691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_tensor_str.py 2025-08-14T21:48:49.3432681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_thread_safe_fork.py 2025-08-14T21:48:49.3435666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_torch_docs.py 2025-08-14T21:48:49.3442595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_utils.py 2025-08-14T21:48:49.3446953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_utils_internal.py 2025-08-14T21:48:49.3451201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_VF.py 2025-08-14T21:48:49.3454582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_VF.pyi 2025-08-14T21:48:49.3465380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vmap_internals.py 2025-08-14T21:48:49.3470078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_weights_only_unpickler.py 2025-08-14T21:48:49.3473656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__config__.py 2025-08-14T21:48:49.3477544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__future__.py 2025-08-14T21:48:49.3482479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__init__.py 2025-08-14T21:48:49.3495178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\memory.py 2025-08-14T21:48:49.3498385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\_utils.py 2025-08-14T21:48:49.3502280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__init__.py 2025-08-14T21:48:49.3510838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__pycache__\memory.cpython-39.pyc 2025-08-14T21:48:49.3514865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:49.3520427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\accelerator\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.3533244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\autocast_mode.py 2025-08-14T21:48:49.3535651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\grad_scaler.py 2025-08-14T21:48:49.3540496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__init__.py 2025-08-14T21:48:49.3567771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__pycache__\autocast_mode.cpython-39.pyc 2025-08-14T21:48:49.3571792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__pycache__\grad_scaler.cpython-39.pyc 2025-08-14T21:48:49.3577418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\amp\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.3590928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\__init__.py 2025-08-14T21:48:49.3599495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\__init__.py 2025-08-14T21:48:49.3608956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\__init__.py 2025-08-14T21:48:49.3615493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\fused.py 2025-08-14T21:48:49.3619291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\__init__.py 2025-08-14T21:48:49.3627957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\__pycache__\fused.cpython-39.pyc 2025-08-14T21:48:49.3631124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.3640502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\__init__.py 2025-08-14T21:48:49.3647961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\conv_fused.py 2025-08-14T21:48:49.3653022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\linear_fused.py 2025-08-14T21:48:49.3655780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\linear_relu.py 2025-08-14T21:48:49.3659630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__init__.py 2025-08-14T21:48:49.3672746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\conv_fused.cpython-39.pyc 2025-08-14T21:48:49.3678269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\linear_fused.cpython-39.pyc 2025-08-14T21:48:49.3681033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-14T21:48:49.3690751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.3697805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\qat\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.3707159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\__init__.py 2025-08-14T21:48:49.3715773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\__init__.py 2025-08-14T21:48:49.3722953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\linear_relu.py 2025-08-14T21:48:49.3726872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\__init__.py 2025-08-14T21:48:49.3734499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-14T21:48:49.3738645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.3747009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.3755213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\bn_relu.py 2025-08-14T21:48:49.3759049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\conv_add.py 2025-08-14T21:48:49.3762605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\conv_relu.py 2025-08-14T21:48:49.3766348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\linear_relu.py 2025-08-14T21:48:49.3770086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__init__.py 2025-08-14T21:48:49.3784530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\bn_relu.cpython-39.pyc 2025-08-14T21:48:49.3788474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\conv_add.cpython-39.pyc 2025-08-14T21:48:49.3792506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\conv_relu.cpython-39.pyc 2025-08-14T21:48:49.3801225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-14T21:48:49.3805308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.3813692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.3828037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\intrinsic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.3837484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\__init__.py 2025-08-14T21:48:49.3845326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\__init__.py 2025-08-14T21:48:49.3852550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\linear.py 2025-08-14T21:48:49.3856256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\__init__.py 2025-08-14T21:48:49.3864586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:49.3868393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.3876582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.3885146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\conv.py 2025-08-14T21:48:49.3888775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\embedding_ops.py 2025-08-14T21:48:49.3893021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\linear.py 2025-08-14T21:48:49.3896602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__init__.py 2025-08-14T21:48:49.3910653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:48:49.3914678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-08-14T21:48:49.3918604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:49.3926816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.3935120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\qat\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.3944444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\__init__.py 2025-08-14T21:48:49.3951809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\activation.py 2025-08-14T21:48:49.3955887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\rnn.py 2025-08-14T21:48:49.3959976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__init__.py 2025-08-14T21:48:49.3967558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__pycache__\activation.cpython-39.pyc 2025-08-14T21:48:49.3971412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:48:49.3975444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.3987678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantizable\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.4001162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\functional.py 2025-08-14T21:48:49.4005407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\__init__.py 2025-08-14T21:48:49.4013200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\__init__.py 2025-08-14T21:48:49.4019971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\conv.py 2025-08-14T21:48:49.4023622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\linear.py 2025-08-14T21:48:49.4027162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\rnn.py 2025-08-14T21:48:49.4031040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__init__.py 2025-08-14T21:48:49.4038505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:48:49.4042569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:49.4046272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:48:49.4054893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.4063072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.4072644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\activation.py 2025-08-14T21:48:49.4075448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\batchnorm.py 2025-08-14T21:48:49.4079202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\conv.py 2025-08-14T21:48:49.4082979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\dropout.py 2025-08-14T21:48:49.4086597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\embedding_ops.py 2025-08-14T21:48:49.4095330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\functional_modules.py 2025-08-14T21:48:49.4099083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\linear.py 2025-08-14T21:48:49.4102735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\normalization.py 2025-08-14T21:48:49.4106400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\rnn.py 2025-08-14T21:48:49.4110181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\utils.py 2025-08-14T21:48:49.4114595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__init__.py 2025-08-14T21:48:49.4122366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\activation.cpython-39.pyc 2025-08-14T21:48:49.4126109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\batchnorm.cpython-39.pyc 2025-08-14T21:48:49.4129780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:48:49.4138547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\dropout.cpython-39.pyc 2025-08-14T21:48:49.4142652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-08-14T21:48:49.4146545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\functional_modules.cpython-39.pyc 2025-08-14T21:48:49.4150434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:49.4154457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\normalization.cpython-39.pyc 2025-08-14T21:48:49.4158197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:48:49.4161979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:49.4165834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.4180455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\__init__.py 2025-08-14T21:48:49.4188161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\conv.py 2025-08-14T21:48:49.4191032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\linear.py 2025-08-14T21:48:49.4194966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\rnn.py 2025-08-14T21:48:49.4200393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\sparse.py 2025-08-14T21:48:49.4202413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\utils.py 2025-08-14T21:48:49.4206878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__init__.py 2025-08-14T21:48:49.4219522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:48:49.4222606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:49.4226766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:48:49.4235505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\sparse.cpython-39.pyc 2025-08-14T21:48:49.4239622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:49.4244880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.4252085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\reference\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.4260842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\__pycache__\functional.cpython-39.pyc 2025-08-14T21:48:49.4343611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.4344295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\__init__.py 2025-08-14T21:48:49.4344883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\linear.py 2025-08-14T21:48:49.4345585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\utils.py 2025-08-14T21:48:49.4346195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__init__.py 2025-08-14T21:48:49.4346839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\linear.py 2025-08-14T21:48:49.4350239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\__init__.py 2025-08-14T21:48:49.4351013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:49.4351883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.4352722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:49.4353500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:49.4354293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.4357617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\sparse\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.4364670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\nn\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.4376202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\_numeric_suite.py 2025-08-14T21:48:49.4378068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\_numeric_suite_fx.py 2025-08-14T21:48:49.4382494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__init__.py 2025-08-14T21:48:49.4388923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\graph_matcher.py 2025-08-14T21:48:49.4393479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\graph_passes.py 2025-08-14T21:48:49.4397290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\mappings.py 2025-08-14T21:48:49.4400873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\ns_types.py 2025-08-14T21:48:49.4404500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\n_shadows_utils.py 2025-08-14T21:48:49.4414291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\pattern_utils.py 2025-08-14T21:48:49.4419822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\qconfig_multi_mapping.py 2025-08-14T21:48:49.4422227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\utils.py 2025-08-14T21:48:49.4426043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\weight_utils.py 2025-08-14T21:48:49.4429828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__init__.py 2025-08-14T21:48:49.4437122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\graph_matcher.cpython-39.pyc 2025-08-14T21:48:49.4441007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\graph_passes.cpython-39.pyc 2025-08-14T21:48:49.4444765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\mappings.cpython-39.pyc 2025-08-14T21:48:49.4453620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\ns_types.cpython-39.pyc 2025-08-14T21:48:49.4457592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\n_shadows_utils.cpython-39.pyc 2025-08-14T21:48:49.4461436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\pattern_utils.cpython-39.pyc 2025-08-14T21:48:49.4465292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\qconfig_multi_mapping.cpython-39.pyc 2025-08-14T21:48:49.4469438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:49.4473240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\weight_utils.cpython-39.pyc 2025-08-14T21:48:49.4477134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\fx\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.4491042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__pycache__\_numeric_suite.cpython-39.pyc 2025-08-14T21:48:49.4495249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__pycache__\_numeric_suite_fx.cpython-39.pyc 2025-08-14T21:48:49.4500274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\ns\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.4514490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_mappings.py 2025-08-14T21:48:49.4520115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\__init__.py 2025-08-14T21:48:49.4526561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\base_scheduler.py 2025-08-14T21:48:49.4530089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\cubic_scheduler.py 2025-08-14T21:48:49.4533954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\lambda_scheduler.py 2025-08-14T21:48:49.4543251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__init__.py 2025-08-14T21:48:49.4551990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\base_scheduler.cpython-39.pyc 2025-08-14T21:48:49.4554323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\cubic_scheduler.cpython-39.pyc 2025-08-14T21:48:49.4558497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\lambda_scheduler.cpython-39.pyc 2025-08-14T21:48:49.4567072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\scheduler\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.4580294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\base_sparsifier.py 2025-08-14T21:48:49.4584447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\nearly_diagonal_sparsifier.py 2025-08-14T21:48:49.4589942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\utils.py 2025-08-14T21:48:49.4597311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\weight_norm_sparsifier.py 2025-08-14T21:48:49.4602609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__init__.py 2025-08-14T21:48:49.4609023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\base_sparsifier.cpython-39.pyc 2025-08-14T21:48:49.4612543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\nearly_diagonal_sparsifier.cpython-39.pyc 2025-08-14T21:48:49.4616526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:49.4625323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\weight_norm_sparsifier.cpython-39.pyc 2025-08-14T21:48:49.4629618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\sparsifier\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.4640793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\__init__.py 2025-08-14T21:48:49.4647321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\activation_sparsifier.py 2025-08-14T21:48:49.4650839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\__init__.py 2025-08-14T21:48:49.4663141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\__pycache__\activation_sparsifier.cpython-39.pyc 2025-08-14T21:48:49.4667240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\activation_sparsifier\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.4675766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\base_data_scheduler.py 2025-08-14T21:48:49.4679896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\__init__.py 2025-08-14T21:48:49.4687614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\__pycache__\base_data_scheduler.cpython-39.pyc 2025-08-14T21:48:49.4691652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_scheduler\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.4704163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\base_data_sparsifier.py 2025-08-14T21:48:49.4707763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\data_norm_sparsifier.py 2025-08-14T21:48:49.4711965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\quantization_utils.py 2025-08-14T21:48:49.4719888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__init__.py 2025-08-14T21:48:49.4729315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\__init__.py 2025-08-14T21:48:49.4735725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\data_sparsity.py 2025-08-14T21:48:49.4738634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\_data_sparstity_utils.py 2025-08-14T21:48:49.4742585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__init__.py 2025-08-14T21:48:49.4789048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__pycache__\data_sparsity.cpython-39.pyc 2025-08-14T21:48:49.4790462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__pycache__\_data_sparstity_utils.cpython-39.pyc 2025-08-14T21:48:49.4791670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.4793272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\lightning\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.4802278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\base_data_sparsifier.cpython-39.pyc 2025-08-14T21:48:49.4809285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\data_norm_sparsifier.cpython-39.pyc 2025-08-14T21:48:49.4811133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\quantization_utils.cpython-39.pyc 2025-08-14T21:48:49.4821749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\data_sparsifier\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.4827676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\base_structured_sparsifier.py 2025-08-14T21:48:49.4831449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\FPGM_pruner.py 2025-08-14T21:48:49.4835256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\lstm_saliency_pruner.py 2025-08-14T21:48:49.4920126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\match_utils.py 2025-08-14T21:48:49.4920887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\parametrization.py 2025-08-14T21:48:49.4921653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\prune_functions.py 2025-08-14T21:48:49.4922390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\saliency_pruner.py 2025-08-14T21:48:49.4923127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__init__.py 2025-08-14T21:48:49.4925107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\base_structured_sparsifier.cpython-39.pyc 2025-08-14T21:48:49.4926848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\FPGM_pruner.cpython-39.pyc 2025-08-14T21:48:49.4927817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\lstm_saliency_pruner.cpython-39.pyc 2025-08-14T21:48:49.4928776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\match_utils.cpython-39.pyc 2025-08-14T21:48:49.4929726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\parametrization.cpython-39.pyc 2025-08-14T21:48:49.4932440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\prune_functions.cpython-39.pyc 2025-08-14T21:48:49.4933399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\saliency_pruner.cpython-39.pyc 2025-08-14T21:48:49.4934326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\pruner\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.4935175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\_experimental\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.4935976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\__pycache__\_mappings.cpython-39.pyc 2025-08-14T21:48:49.4938561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\pruning\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.4939231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fake_quantize.py 2025-08-14T21:48:49.4941172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fuser_method_mappings.py 2025-08-14T21:48:49.4956576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fuse_modules.py 2025-08-14T21:48:49.4957380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\observer.py 2025-08-14T21:48:49.4957969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\qconfig.py 2025-08-14T21:48:49.4961727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\qconfig_mapping.py 2025-08-14T21:48:49.4967009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantization_mappings.py 2025-08-14T21:48:49.4969159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize.py 2025-08-14T21:48:49.4972892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize_fx.py 2025-08-14T21:48:49.4976893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize_jit.py 2025-08-14T21:48:49.4980456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantize_pt2e.py 2025-08-14T21:48:49.4984282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quant_type.py 2025-08-14T21:48:49.4988007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\stubs.py 2025-08-14T21:48:49.4991925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\utils.py 2025-08-14T21:48:49.4995622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\_correct_bias.py 2025-08-14T21:48:49.4999409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\_equalize.py 2025-08-14T21:48:49.5003204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\_learnable_fake_quantize.py 2025-08-14T21:48:49.5006896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__init__.py 2025-08-14T21:48:49.5014909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\backend_config.py 2025-08-14T21:48:49.5018652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\executorch.py 2025-08-14T21:48:49.5022573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\fbgemm.py 2025-08-14T21:48:49.5026107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\native.py 2025-08-14T21:48:49.5036535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\observation_type.py 2025-08-14T21:48:49.5039633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\onednn.py 2025-08-14T21:48:49.5043334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\qnnpack.py 2025-08-14T21:48:49.5046927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\tensorrt.py 2025-08-14T21:48:49.5050527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\utils.py 2025-08-14T21:48:49.5055100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\x86.py 2025-08-14T21:48:49.5058118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\_common_operator_config_utils.py 2025-08-14T21:48:49.5062108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\_qnnpack_pt2e.py 2025-08-14T21:48:49.5066061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__init__.py 2025-08-14T21:48:49.5074283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\backend_config.cpython-39.pyc 2025-08-14T21:48:49.5078909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\executorch.cpython-39.pyc 2025-08-14T21:48:49.5082809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\fbgemm.cpython-39.pyc 2025-08-14T21:48:49.5090813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\native.cpython-39.pyc 2025-08-14T21:48:49.5094776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\observation_type.cpython-39.pyc 2025-08-14T21:48:49.5098601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\onednn.cpython-39.pyc 2025-08-14T21:48:49.5102597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\qnnpack.cpython-39.pyc 2025-08-14T21:48:49.5106823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\tensorrt.cpython-39.pyc 2025-08-14T21:48:49.5110522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:49.5114338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\x86.cpython-39.pyc 2025-08-14T21:48:49.5118285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\_common_operator_config_utils.cpython-39.pyc 2025-08-14T21:48:49.5122900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\_qnnpack_pt2e.cpython-39.pyc 2025-08-14T21:48:49.5126336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\backend_config\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.5135178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\convert.py 2025-08-14T21:48:49.5139106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\custom_config.py 2025-08-14T21:48:49.5142755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\fuse.py 2025-08-14T21:48:49.5147121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\fuse_handler.py 2025-08-14T21:48:49.5150984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\graph_module.py 2025-08-14T21:48:49.5159722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\lower_to_fbgemm.py 2025-08-14T21:48:49.5163599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\lower_to_qnnpack.py 2025-08-14T21:48:49.5167289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\lstm_utils.py 2025-08-14T21:48:49.5171551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\match_utils.py 2025-08-14T21:48:49.5175626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\pattern_utils.py 2025-08-14T21:48:49.5179076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\prepare.py 2025-08-14T21:48:49.5183435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\qconfig_mapping_utils.py 2025-08-14T21:48:49.5188155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\quantize_handler.py 2025-08-14T21:48:49.5191102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\tracer.py 2025-08-14T21:48:49.5194956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\utils.py 2025-08-14T21:48:49.5198639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_decomposed.py 2025-08-14T21:48:49.5202649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_equalize.py 2025-08-14T21:48:49.5207548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_lower_to_native_backend.py 2025-08-14T21:48:49.5210871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__init__.py 2025-08-14T21:48:49.5220032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\detector.py 2025-08-14T21:48:49.5223078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\model_report.py 2025-08-14T21:48:49.5227274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\model_report_observer.py 2025-08-14T21:48:49.5236079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\model_report_visualizer.py 2025-08-14T21:48:49.5240164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__init__.py 2025-08-14T21:48:49.5247402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\detector.cpython-39.pyc 2025-08-14T21:48:49.5251699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\model_report.cpython-39.pyc 2025-08-14T21:48:49.5257664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\model_report_observer.cpython-39.pyc 2025-08-14T21:48:49.5264655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\model_report_visualizer.cpython-39.pyc 2025-08-14T21:48:49.5330458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\_model_report\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.5331316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\convert.cpython-39.pyc 2025-08-14T21:48:49.5332132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\custom_config.cpython-39.pyc 2025-08-14T21:48:49.5333071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\fuse.cpython-39.pyc 2025-08-14T21:48:49.5333887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\fuse_handler.cpython-39.pyc 2025-08-14T21:48:49.5337337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\graph_module.cpython-39.pyc 2025-08-14T21:48:49.5338192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\lower_to_fbgemm.cpython-39.pyc 2025-08-14T21:48:49.5339041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\lower_to_qnnpack.cpython-39.pyc 2025-08-14T21:48:49.5339858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\lstm_utils.cpython-39.pyc 2025-08-14T21:48:49.5340671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\match_utils.cpython-39.pyc 2025-08-14T21:48:49.5344050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\pattern_utils.cpython-39.pyc 2025-08-14T21:48:49.5344872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\prepare.cpython-39.pyc 2025-08-14T21:48:49.5345709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\qconfig_mapping_utils.cpython-39.pyc 2025-08-14T21:48:49.5346566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\quantize_handler.cpython-39.pyc 2025-08-14T21:48:49.5347377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\tracer.cpython-39.pyc 2025-08-14T21:48:49.5348135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:49.5351470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\_decomposed.cpython-39.pyc 2025-08-14T21:48:49.5352473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\_equalize.cpython-39.pyc 2025-08-14T21:48:49.5361771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\_lower_to_native_backend.cpython-39.pyc 2025-08-14T21:48:49.5365706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\fx\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.5375302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\duplicate_dq_pass.py 2025-08-14T21:48:49.5380073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\export_utils.py 2025-08-14T21:48:49.5383227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\graph_utils.py 2025-08-14T21:48:49.5386862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\lowering.py 2025-08-14T21:48:49.5395749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\port_metadata_pass.py 2025-08-14T21:48:49.5399343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\prepare.py 2025-08-14T21:48:49.5403002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\qat_utils.py 2025-08-14T21:48:49.5407107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\utils.py 2025-08-14T21:48:49.5410806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\_affine_quantization.py 2025-08-14T21:48:49.5414764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\_numeric_debugger.py 2025-08-14T21:48:49.5418332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__init__.py 2025-08-14T21:48:49.5425595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\rewrite.py 2025-08-14T21:48:49.5429400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\__init__.py 2025-08-14T21:48:49.5436977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\__pycache__\rewrite.cpython-39.pyc 2025-08-14T21:48:49.5440766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\representation\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.5449161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\duplicate_dq_pass.cpython-39.pyc 2025-08-14T21:48:49.5452963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\export_utils.cpython-39.pyc 2025-08-14T21:48:49.5458755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\graph_utils.cpython-39.pyc 2025-08-14T21:48:49.5464864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\lowering.cpython-39.pyc 2025-08-14T21:48:49.5468826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\port_metadata_pass.cpython-39.pyc 2025-08-14T21:48:49.5472645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\prepare.cpython-39.pyc 2025-08-14T21:48:49.5476383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\qat_utils.cpython-39.pyc 2025-08-14T21:48:49.5480201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:49.5484080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\_affine_quantization.cpython-39.pyc 2025-08-14T21:48:49.5488160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\_numeric_debugger.cpython-39.pyc 2025-08-14T21:48:49.5491882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\pt2e\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.5500468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\composable_quantizer.py 2025-08-14T21:48:49.5504343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\embedding_quantizer.py 2025-08-14T21:48:49.5508049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\quantizer.py 2025-08-14T21:48:49.5516267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\utils.py 2025-08-14T21:48:49.5520092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\x86_inductor_quantizer.py 2025-08-14T21:48:49.5524422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\xnnpack_quantizer.py 2025-08-14T21:48:49.5528281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\xnnpack_quantizer_utils.py 2025-08-14T21:48:49.5532241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\xpu_inductor_quantizer.py 2025-08-14T21:48:49.5535976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__init__.py 2025-08-14T21:48:49.5551740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\composable_quantizer.cpython-39.pyc 2025-08-14T21:48:49.5554048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\embedding_quantizer.cpython-39.pyc 2025-08-14T21:48:49.5555140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\quantizer.cpython-39.pyc 2025-08-14T21:48:49.5564627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:49.5568893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\x86_inductor_quantizer.cpython-39.pyc 2025-08-14T21:48:49.5572862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\xnnpack_quantizer.cpython-39.pyc 2025-08-14T21:48:49.5576722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\xnnpack_quantizer_utils.cpython-39.pyc 2025-08-14T21:48:49.5580672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\xpu_inductor_quantizer.cpython-39.pyc 2025-08-14T21:48:49.5584763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\quantizer\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.5600462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\fake_quantize.cpython-39.pyc 2025-08-14T21:48:49.5604525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\fuser_method_mappings.cpython-39.pyc 2025-08-14T21:48:49.5609103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\fuse_modules.cpython-39.pyc 2025-08-14T21:48:49.5617151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\observer.cpython-39.pyc 2025-08-14T21:48:49.5621217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\qconfig.cpython-39.pyc 2025-08-14T21:48:49.5625027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\qconfig_mapping.cpython-39.pyc 2025-08-14T21:48:49.5629322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantization_mappings.cpython-39.pyc 2025-08-14T21:48:49.5632857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize.cpython-39.pyc 2025-08-14T21:48:49.5636645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize_fx.cpython-39.pyc 2025-08-14T21:48:49.5640490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize_jit.cpython-39.pyc 2025-08-14T21:48:49.5644285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quantize_pt2e.cpython-39.pyc 2025-08-14T21:48:49.5648036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\quant_type.cpython-39.pyc 2025-08-14T21:48:49.5652000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\stubs.cpython-39.pyc 2025-08-14T21:48:49.5655943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:49.5659807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\_correct_bias.cpython-39.pyc 2025-08-14T21:48:49.5663995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\_equalize.cpython-39.pyc 2025-08-14T21:48:49.5667915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\_learnable_fake_quantize.cpython-39.pyc 2025-08-14T21:48:49.5676134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\quantization\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.5690296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\ao\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.5700256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\anomaly_mode.py 2025-08-14T21:48:49.5704335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\forward_ad.py 2025-08-14T21:48:49.5708103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\function.py 2025-08-14T21:48:49.5711929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\functional.py 2025-08-14T21:48:49.5720449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\gradcheck.py 2025-08-14T21:48:49.5724686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\grad_mode.py 2025-08-14T21:48:49.5728239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\graph.py 2025-08-14T21:48:49.5731871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\profiler.py 2025-08-14T21:48:49.5735829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\profiler_legacy.py 2025-08-14T21:48:49.5739511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\profiler_util.py 2025-08-14T21:48:49.5743285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\variable.py 2025-08-14T21:48:49.5746921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__init__.py 2025-08-14T21:48:49.5754787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\tensor.py 2025-08-14T21:48:49.5758363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\utils.py 2025-08-14T21:48:49.5763342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__init__.py 2025-08-14T21:48:49.5770293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__pycache__\tensor.cpython-39.pyc 2025-08-14T21:48:49.5773988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:49.5778540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\_functions\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.5792823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\anomaly_mode.cpython-39.pyc 2025-08-14T21:48:49.5796593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\forward_ad.cpython-39.pyc 2025-08-14T21:48:49.5800534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\function.cpython-39.pyc 2025-08-14T21:48:49.5809557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\functional.cpython-39.pyc 2025-08-14T21:48:49.5814611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\gradcheck.cpython-39.pyc 2025-08-14T21:48:49.5858559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\grad_mode.cpython-39.pyc 2025-08-14T21:48:49.5859266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\graph.cpython-39.pyc 2025-08-14T21:48:49.5859959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\profiler.cpython-39.pyc 2025-08-14T21:48:49.5860680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\profiler_legacy.cpython-39.pyc 2025-08-14T21:48:49.5861430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\profiler_util.cpython-39.pyc 2025-08-14T21:48:49.5862132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\variable.cpython-39.pyc 2025-08-14T21:48:49.5862916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\autograd\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.5863507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\__init__.py 2025-08-14T21:48:49.5865709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cpu\__init__.py 2025-08-14T21:48:49.5873231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cpu\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.5881068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cuda\__init__.py 2025-08-14T21:48:49.5888628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cuda\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.5896433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\rnn.py 2025-08-14T21:48:49.5900068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\__init__.py 2025-08-14T21:48:49.5908171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:48:49.5911449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cudnn\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.5919517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cusparselt\__init__.py 2025-08-14T21:48:49.5942235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\cusparselt\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.5954353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\kleidiai\__init__.py 2025-08-14T21:48:49.5961688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\kleidiai\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.5969777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mha\__init__.py 2025-08-14T21:48:49.5977469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mha\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.5985191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\miopen\__init__.py 2025-08-14T21:48:49.5992514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\miopen\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.6000285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkl\__init__.py 2025-08-14T21:48:49.6007717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkl\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.6015391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkldnn\__init__.py 2025-08-14T21:48:49.6022581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mkldnn\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.6030252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mps\__init__.py 2025-08-14T21:48:49.6037557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\mps\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.6045748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\nnpack\__init__.py 2025-08-14T21:48:49.6053073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\nnpack\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.6060589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\openmp\__init__.py 2025-08-14T21:48:49.6067881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\openmp\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.6075990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\opt_einsum\__init__.py 2025-08-14T21:48:49.6083368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\opt_einsum\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.6091161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\quantized\__init__.py 2025-08-14T21:48:49.6098746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.6107492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\run_cpu.py 2025-08-14T21:48:49.6110766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\__init__.py 2025-08-14T21:48:49.6117379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\__pycache__\run_cpu.cpython-39.pyc 2025-08-14T21:48:49.6121601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xeon\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.6129477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xnnpack\__init__.py 2025-08-14T21:48:49.6137003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\xnnpack\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.6145206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\preprocess.py 2025-08-14T21:48:49.6148852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\__init__.py 2025-08-14T21:48:49.6155763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\__pycache__\preprocess.cpython-39.pyc 2025-08-14T21:48:49.6159780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_coreml\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.6168448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\prepare.py 2025-08-14T21:48:49.6172211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\serializer.py 2025-08-14T21:48:49.6176700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__init__.py 2025-08-14T21:48:49.6183746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__pycache__\prepare.cpython-39.pyc 2025-08-14T21:48:49.6187770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__pycache__\serializer.cpython-39.pyc 2025-08-14T21:48:49.6192528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\_nnapi\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.6206312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\backends\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.6214980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\FileStoreTest.exe 2025-08-14T21:48:49.6220907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\protoc.exe 2025-08-14T21:48:49.6240256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\TCPStoreTest.exe 2025-08-14T21:48:49.6246300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_api.exe 2025-08-14T21:48:49.6312313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_jit.exe 2025-08-14T21:48:49.6340598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_lazy.exe 2025-08-14T21:48:49.6357338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\bin\test_nativert.exe 2025-08-14T21:48:49.6375011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\config.py 2025-08-14T21:48:49.6378578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\_cache.py 2025-08-14T21:48:49.6382191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__init__.py 2025-08-14T21:48:49.6390157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__pycache__\config.cpython-39.pyc 2025-08-14T21:48:49.6394173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__pycache__\_cache.cpython-39.pyc 2025-08-14T21:48:49.6397797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\compiler\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.6411832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\_tensorboard_vis.py 2025-08-14T21:48:49.6415455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\__init__.py 2025-08-14T21:48:49.6421867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\__pycache__\_tensorboard_vis.cpython-39.pyc 2025-08-14T21:48:49.6425796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\contrib\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.6434458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\__init__.py 2025-08-14T21:48:49.6441902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\autocast_mode.py 2025-08-14T21:48:49.6446041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\grad_scaler.py 2025-08-14T21:48:49.6449573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__init__.py 2025-08-14T21:48:49.6461412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__pycache__\autocast_mode.cpython-39.pyc 2025-08-14T21:48:49.6465486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__pycache__\grad_scaler.cpython-39.pyc 2025-08-14T21:48:49.6469283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\amp\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.6481385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cpu\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.6497402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\csrc\inductor\aoti_runtime\model.h 2025-08-14T21:48:49.6506987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\comm.py 2025-08-14T21:48:49.6510683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\error.py 2025-08-14T21:48:49.6513901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\gds.py 2025-08-14T21:48:49.6517365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\graphs.py 2025-08-14T21:48:49.6521063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\jiterator.py 2025-08-14T21:48:49.6524579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\memory.py 2025-08-14T21:48:49.6532687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\nccl.py 2025-08-14T21:48:49.6536199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\nvtx.py 2025-08-14T21:48:49.6539764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\profiler.py 2025-08-14T21:48:49.6543486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\random.py 2025-08-14T21:48:49.6547161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\sparse.py 2025-08-14T21:48:49.6550837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\streams.py 2025-08-14T21:48:49.6554321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\tunable.py 2025-08-14T21:48:49.6558483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_gpu_trace.py 2025-08-14T21:48:49.6562174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_memory_viz.py 2025-08-14T21:48:49.6565908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_pin_memory_utils.py 2025-08-14T21:48:49.6569733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_sanitizer.py 2025-08-14T21:48:49.6573484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\_utils.py 2025-08-14T21:48:49.6577089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__init__.py 2025-08-14T21:48:49.6584801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\autocast_mode.py 2025-08-14T21:48:49.6588503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\common.py 2025-08-14T21:48:49.6592160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\grad_scaler.py 2025-08-14T21:48:49.6595733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__init__.py 2025-08-14T21:48:49.6607928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\autocast_mode.cpython-39.pyc 2025-08-14T21:48:49.6611784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\common.cpython-39.pyc 2025-08-14T21:48:49.6615749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\grad_scaler.cpython-39.pyc 2025-08-14T21:48:49.6623485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\amp\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.6632752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\comm.cpython-39.pyc 2025-08-14T21:48:49.6636617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\error.cpython-39.pyc 2025-08-14T21:48:49.6640344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\gds.cpython-39.pyc 2025-08-14T21:48:49.6650734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\graphs.cpython-39.pyc 2025-08-14T21:48:49.6654086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\jiterator.cpython-39.pyc 2025-08-14T21:48:49.6658585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\memory.cpython-39.pyc 2025-08-14T21:48:49.6663293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\nccl.cpython-39.pyc 2025-08-14T21:48:49.6666769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\nvtx.cpython-39.pyc 2025-08-14T21:48:49.6670768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\profiler.cpython-39.pyc 2025-08-14T21:48:49.6675136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\random.cpython-39.pyc 2025-08-14T21:48:49.6678389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\sparse.cpython-39.pyc 2025-08-14T21:48:49.6682262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\streams.cpython-39.pyc 2025-08-14T21:48:49.6686058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\tunable.cpython-39.pyc 2025-08-14T21:48:49.6690237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_gpu_trace.cpython-39.pyc 2025-08-14T21:48:49.6694438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_memory_viz.cpython-39.pyc 2025-08-14T21:48:49.6698304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_pin_memory_utils.cpython-39.pyc 2025-08-14T21:48:49.6702341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_sanitizer.cpython-39.pyc 2025-08-14T21:48:49.6710419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:49.6714214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\cuda\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.6725076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\argparse_util.py 2025-08-14T21:48:49.6729376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\c10d_logger.py 2025-08-14T21:48:49.6733338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\collective_utils.py 2025-08-14T21:48:49.6741657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\constants.py 2025-08-14T21:48:49.6745615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\device_mesh.py 2025-08-14T21:48:49.6749719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\distributed_c10d.py 2025-08-14T21:48:49.6755522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launch.py 2025-08-14T21:48:49.6759333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\logging_handlers.py 2025-08-14T21:48:49.6763244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\remote_device.py 2025-08-14T21:48:49.6767257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rendezvous.py 2025-08-14T21:48:49.6771826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\run.py 2025-08-14T21:48:49.6775555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\utils.py 2025-08-14T21:48:49.6780430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_checkpointable.py 2025-08-14T21:48:49.6784675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable_state.py 2025-08-14T21:48:49.6788989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_dist2.py 2025-08-14T21:48:49.6793037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_functional_collectives.py 2025-08-14T21:48:49.6797936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_functional_collectives_impl.py 2025-08-14T21:48:49.6802533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_serialization.py 2025-08-14T21:48:49.6807055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_state_dict_utils.py 2025-08-14T21:48:49.6840401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__init__.py 2025-08-14T21:48:49.6840979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\join.py 2025-08-14T21:48:49.6841573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\__init__.py 2025-08-14T21:48:49.6842267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\ddp_zero_hook.py 2025-08-14T21:48:49.6843060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\debugging_hooks.py 2025-08-14T21:48:49.6848009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py 2025-08-14T21:48:49.6854657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\mixed_precision_hooks.py 2025-08-14T21:48:49.6858232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\optimizer_overlap_hooks.py 2025-08-14T21:48:49.6862089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\post_localSGD_hook.py 2025-08-14T21:48:49.6865786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py 2025-08-14T21:48:49.6869736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py 2025-08-14T21:48:49.6873679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__init__.py 2025-08-14T21:48:49.6881908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\ddp_zero_hook.cpython-39.pyc 2025-08-14T21:48:49.6885659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\debugging_hooks.cpython-39.pyc 2025-08-14T21:48:49.6889571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\default_hooks.cpython-39.pyc 2025-08-14T21:48:49.6897345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\mixed_precision_hooks.cpython-39.pyc 2025-08-14T21:48:49.6901199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\optimizer_overlap_hooks.cpython-39.pyc 2025-08-14T21:48:49.6904975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\post_localSGD_hook.cpython-39.pyc 2025-08-14T21:48:49.6908986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\powerSGD_hook.cpython-39.pyc 2025-08-14T21:48:49.6913317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\quantization_hooks.cpython-39.pyc 2025-08-14T21:48:49.6917526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\ddp_comm_hooks\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.6930757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\averagers.py 2025-08-14T21:48:49.6934679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\hierarchical_model_averager.py 2025-08-14T21:48:49.6938283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\utils.py 2025-08-14T21:48:49.6947018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__init__.py 2025-08-14T21:48:49.6953752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\averagers.cpython-39.pyc 2025-08-14T21:48:49.6958100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\hierarchical_model_averager.cpython-39.pyc 2025-08-14T21:48:49.6962090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:49.6971184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\model_averaging\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.6979482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\checkpoint_wrapper.py 2025-08-14T21:48:49.6983163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\__init__.py 2025-08-14T21:48:49.6989906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\__pycache__\checkpoint_wrapper.cpython-39.pyc 2025-08-14T21:48:49.6993928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_checkpoint\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.7001976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\default_hooks.py 2025-08-14T21:48:49.7005706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\__init__.py 2025-08-14T21:48:49.7013229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\__pycache__\default_hooks.cpython-39.pyc 2025-08-14T21:48:49.7017537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_comm_hooks\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.7025723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\optimizer_overlap.py 2025-08-14T21:48:49.7029584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\__init__.py 2025-08-14T21:48:49.7037092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\__pycache__\optimizer_overlap.cpython-39.pyc 2025-08-14T21:48:49.7040890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_optimizer_overlap\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.7048781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\quantization.py 2025-08-14T21:48:49.7052350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\__init__.py 2025-08-14T21:48:49.7060924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\__pycache__\quantization.cpython-39.pyc 2025-08-14T21:48:49.7064687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\_quantization\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.7073010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\__pycache__\join.cpython-39.pyc 2025-08-14T21:48:49.7077893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\algorithms\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.7086126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\autograd\__init__.py 2025-08-14T21:48:49.7093473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\autograd\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.7101950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\api.py 2025-08-14T21:48:49.7105795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\default_planner.py 2025-08-14T21:48:49.7110012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\filesystem.py 2025-08-14T21:48:49.7113952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\format_utils.py 2025-08-14T21:48:49.7123907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\hf_storage.py 2025-08-14T21:48:49.7128648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\logger.py 2025-08-14T21:48:49.7131245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\logging_handlers.py 2025-08-14T21:48:49.7135236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\metadata.py 2025-08-14T21:48:49.7138815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\optimizer.py 2025-08-14T21:48:49.7143027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\planner.py 2025-08-14T21:48:49.7146954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\planner_helpers.py 2025-08-14T21:48:49.7150988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\resharding.py 2025-08-14T21:48:49.7154858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\staging.py 2025-08-14T21:48:49.7158664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\stateful.py 2025-08-14T21:48:49.7162225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\state_dict.py 2025-08-14T21:48:49.7183228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\state_dict_loader.py 2025-08-14T21:48:49.7187437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\state_dict_saver.py 2025-08-14T21:48:49.7191493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\storage.py 2025-08-14T21:48:49.7195226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\utils.py 2025-08-14T21:48:49.7199115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_async_executor.py 2025-08-14T21:48:49.7203018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_async_process_executor.py 2025-08-14T21:48:49.7206956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_async_thread_executor.py 2025-08-14T21:48:49.7210965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_checkpointer.py 2025-08-14T21:48:49.7218818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_consolidate_hf_safetensors.py 2025-08-14T21:48:49.7223150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_dedup_save_plans.py 2025-08-14T21:48:49.7228161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_dedup_tensors.py 2025-08-14T21:48:49.7232189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_extension.py 2025-08-14T21:48:49.7236065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_fsspec_filesystem.py 2025-08-14T21:48:49.7239809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_hf_utils.py 2025-08-14T21:48:49.7243672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_nested_dict.py 2025-08-14T21:48:49.7247528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_pg_transport.py 2025-08-14T21:48:49.7251415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_sharded_tensor_utils.py 2025-08-14T21:48:49.7259870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_state_dict_stager.py 2025-08-14T21:48:49.7264327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_storage_utils.py 2025-08-14T21:48:49.7268259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_traverse.py 2025-08-14T21:48:49.7272056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_version.py 2025-08-14T21:48:49.7275784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__init__.py 2025-08-14T21:48:49.7286166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\barriers.py 2025-08-14T21:48:49.7290211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\builder.py 2025-08-14T21:48:49.7294072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\checkpointer.py 2025-08-14T21:48:49.7298380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\checkpoint_process.py 2025-08-14T21:48:49.7307704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\checkpoint_reader.py 2025-08-14T21:48:49.7311940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\checkpoint_writer.py 2025-08-14T21:48:49.7315773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\config.py 2025-08-14T21:48:49.7319950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\staging.py 2025-08-14T21:48:49.7323591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\types.py 2025-08-14T21:48:49.7327913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\utils.py 2025-08-14T21:48:49.7331638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__init__.py 2025-08-14T21:48:49.7340216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\barriers.cpython-39.pyc 2025-08-14T21:48:49.7344243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\builder.cpython-39.pyc 2025-08-14T21:48:49.7348015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\checkpointer.cpython-39.pyc 2025-08-14T21:48:49.7357059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\checkpoint_process.cpython-39.pyc 2025-08-14T21:48:49.7361112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\checkpoint_reader.cpython-39.pyc 2025-08-14T21:48:49.7365185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\checkpoint_writer.cpython-39.pyc 2025-08-14T21:48:49.7369060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\config.cpython-39.pyc 2025-08-14T21:48:49.7373080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\staging.cpython-39.pyc 2025-08-14T21:48:49.7376811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\types.cpython-39.pyc 2025-08-14T21:48:49.7382243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:49.7384956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\_experimental\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.7394177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:49.7398117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\default_planner.cpython-39.pyc 2025-08-14T21:48:49.7401940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\filesystem.cpython-39.pyc 2025-08-14T21:48:49.7410952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\format_utils.cpython-39.pyc 2025-08-14T21:48:49.7414831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\hf_storage.cpython-39.pyc 2025-08-14T21:48:49.7418589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\logger.cpython-39.pyc 2025-08-14T21:48:49.7422642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\logging_handlers.cpython-39.pyc 2025-08-14T21:48:49.7426392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\metadata.cpython-39.pyc 2025-08-14T21:48:49.7430413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\optimizer.cpython-39.pyc 2025-08-14T21:48:49.7434252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\planner.cpython-39.pyc 2025-08-14T21:48:49.7438278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\planner_helpers.cpython-39.pyc 2025-08-14T21:48:49.7442174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\resharding.cpython-39.pyc 2025-08-14T21:48:49.7446048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\staging.cpython-39.pyc 2025-08-14T21:48:49.7449848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\stateful.cpython-39.pyc 2025-08-14T21:48:49.7453967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\state_dict.cpython-39.pyc 2025-08-14T21:48:49.7457800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\state_dict_loader.cpython-39.pyc 2025-08-14T21:48:49.7461683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\state_dict_saver.cpython-39.pyc 2025-08-14T21:48:49.7470836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\storage.cpython-39.pyc 2025-08-14T21:48:49.7475478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:49.7479332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_async_executor.cpython-39.pyc 2025-08-14T21:48:49.7483316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_async_process_executor.cpython-39.pyc 2025-08-14T21:48:49.7487315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_async_thread_executor.cpython-39.pyc 2025-08-14T21:48:49.7491241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_checkpointer.cpython-39.pyc 2025-08-14T21:48:49.7495136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_consolidate_hf_safetensors.cpython-39.pyc 2025-08-14T21:48:49.7499530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_dedup_save_plans.cpython-39.pyc 2025-08-14T21:48:49.7507816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_dedup_tensors.cpython-39.pyc 2025-08-14T21:48:49.7511926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_extension.cpython-39.pyc 2025-08-14T21:48:49.7515794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_fsspec_filesystem.cpython-39.pyc 2025-08-14T21:48:49.7519731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_hf_utils.cpython-39.pyc 2025-08-14T21:48:49.7523600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_nested_dict.cpython-39.pyc 2025-08-14T21:48:49.7527631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_pg_transport.cpython-39.pyc 2025-08-14T21:48:49.7531472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_sharded_tensor_utils.cpython-39.pyc 2025-08-14T21:48:49.7535453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_state_dict_stager.cpython-39.pyc 2025-08-14T21:48:49.7543848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_storage_utils.cpython-39.pyc 2025-08-14T21:48:49.7547721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_traverse.cpython-39.pyc 2025-08-14T21:48:49.7551596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\_version.cpython-39.pyc 2025-08-14T21:48:49.7555399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\checkpoint\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.7566200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\control_plane.py 2025-08-14T21:48:49.7570260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\__init__.py 2025-08-14T21:48:49.7578168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\__init__.py 2025-08-14T21:48:49.7584360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\api.py 2025-08-14T21:48:49.7588211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\health_check_server.py 2025-08-14T21:48:49.7591999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\local_elastic_agent.py 2025-08-14T21:48:49.7596717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__init__.py 2025-08-14T21:48:49.7613259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:49.7614744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\health_check_server.cpython-39.pyc 2025-08-14T21:48:49.7672414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\local_elastic_agent.cpython-39.pyc 2025-08-14T21:48:49.7673443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\server\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.7674342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\agent\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.7675073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\api.py 2025-08-14T21:48:49.7675727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\handlers.py 2025-08-14T21:48:49.7676496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__init__.py 2025-08-14T21:48:49.7677330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:49.7678279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__pycache__\handlers.cpython-39.pyc 2025-08-14T21:48:49.7679314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\events\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.7685911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\api.py 2025-08-14T21:48:49.7689805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\__init__.py 2025-08-14T21:48:49.7697279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:49.7701792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\metrics\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.7713789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\api.py 2025-08-14T21:48:49.7717709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\redirects.py 2025-08-14T21:48:49.7721825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\tail_log.py 2025-08-14T21:48:49.7726460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__init__.py 2025-08-14T21:48:49.7739326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\error_handler.py 2025-08-14T21:48:49.7742058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\handlers.py 2025-08-14T21:48:49.7746079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__init__.py 2025-08-14T21:48:49.7754669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__pycache__\error_handler.cpython-39.pyc 2025-08-14T21:48:49.7758710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__pycache__\handlers.cpython-39.pyc 2025-08-14T21:48:49.7762338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\errors\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.7775749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\handlers.py 2025-08-14T21:48:49.7779328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\subprocess_handler.py 2025-08-14T21:48:49.7783841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__init__.py 2025-08-14T21:48:49.7799654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__pycache__\handlers.cpython-39.pyc 2025-08-14T21:48:49.7802590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__pycache__\subprocess_handler.cpython-39.pyc 2025-08-14T21:48:49.7806593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\subprocess_handler\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.7819201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:49.7823178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\redirects.cpython-39.pyc 2025-08-14T21:48:49.7827728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\tail_log.cpython-39.pyc 2025-08-14T21:48:49.7836028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\multiprocessing\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.7843994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\api.py 2025-08-14T21:48:49.7847700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\c10d_rendezvous_backend.py 2025-08-14T21:48:49.7851678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\dynamic_rendezvous.py 2025-08-14T21:48:49.7860276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_rendezvous.py 2025-08-14T21:48:49.7864096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_rendezvous_backend.py 2025-08-14T21:48:49.7867873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_server.py 2025-08-14T21:48:49.7872104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\etcd_store.py 2025-08-14T21:48:49.7875855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\registry.py 2025-08-14T21:48:49.7879656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\static_tcp_rendezvous.py 2025-08-14T21:48:49.7883686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\utils.py 2025-08-14T21:48:49.7887633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\_etcd_stub.py 2025-08-14T21:48:49.7891389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__init__.py 2025-08-14T21:48:49.7899399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:49.7904131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\c10d_rendezvous_backend.cpython-39.pyc 2025-08-14T21:48:49.7908098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\dynamic_rendezvous.cpython-39.pyc 2025-08-14T21:48:49.7917554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_rendezvous.cpython-39.pyc 2025-08-14T21:48:49.7921390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_rendezvous_backend.cpython-39.pyc 2025-08-14T21:48:49.7925413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_server.cpython-39.pyc 2025-08-14T21:48:49.7929667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\etcd_store.cpython-39.pyc 2025-08-14T21:48:49.7933458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\registry.cpython-39.pyc 2025-08-14T21:48:49.7937430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\static_tcp_rendezvous.cpython-39.pyc 2025-08-14T21:48:49.7941277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:49.7945612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\_etcd_stub.cpython-39.pyc 2025-08-14T21:48:49.7949213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\rendezvous\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.7957842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\api.py 2025-08-14T21:48:49.7961343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\debug_info_logging.py 2025-08-14T21:48:49.7965683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\file_based_local_timer.py 2025-08-14T21:48:49.7969395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\local_timer.py 2025-08-14T21:48:49.7977645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__init__.py 2025-08-14T21:48:49.7985519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:49.7989547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\debug_info_logging.cpython-39.pyc 2025-08-14T21:48:49.7993644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\file_based_local_timer.cpython-39.pyc 2025-08-14T21:48:49.8002706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\local_timer.cpython-39.pyc 2025-08-14T21:48:49.8006512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\timer\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.8014477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\api.py 2025-08-14T21:48:49.8018206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\distributed.py 2025-08-14T21:48:49.8021770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\logging.py 2025-08-14T21:48:49.8025391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\log_level.py 2025-08-14T21:48:49.8029261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\store.py 2025-08-14T21:48:49.8037924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__init__.py 2025-08-14T21:48:49.8045264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\cycling_iterator.py 2025-08-14T21:48:49.8049494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\elastic_distributed_sampler.py 2025-08-14T21:48:49.8053125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__init__.py 2025-08-14T21:48:49.8066775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__pycache__\cycling_iterator.cpython-39.pyc 2025-08-14T21:48:49.8071303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__pycache__\elastic_distributed_sampler.cpython-39.pyc 2025-08-14T21:48:49.8075109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\data\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.8087697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:49.8091566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\distributed.cpython-39.pyc 2025-08-14T21:48:49.8095300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\logging.cpython-39.pyc 2025-08-14T21:48:49.8103525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\log_level.cpython-39.pyc 2025-08-14T21:48:49.8107138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\store.cpython-39.pyc 2025-08-14T21:48:49.8111526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\utils\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.8119520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\__pycache__\control_plane.cpython-39.pyc 2025-08-14T21:48:49.8123328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\elastic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.8132501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\api.py 2025-08-14T21:48:49.8136215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\fully_sharded_data_parallel.py 2025-08-14T21:48:49.8141043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\sharded_grad_scaler.py 2025-08-14T21:48:49.8144384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\wrap.py 2025-08-14T21:48:49.8147958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_common_utils.py 2025-08-14T21:48:49.8156194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_debug_utils.py 2025-08-14T21:48:49.8159880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_dynamo_utils.py 2025-08-14T21:48:49.8163632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_exec_order_utils.py 2025-08-14T21:48:49.8167339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_flat_param.py 2025-08-14T21:48:49.8171666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fsdp_extensions.py 2025-08-14T21:48:49.8175300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_init_utils.py 2025-08-14T21:48:49.8179366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_limiter_utils.py 2025-08-14T21:48:49.8183292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_optim_utils.py 2025-08-14T21:48:49.8188260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_runtime_utils.py 2025-08-14T21:48:49.8192228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_shard_utils.py 2025-08-14T21:48:49.8196090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_state_dict_utils.py 2025-08-14T21:48:49.8200867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_trace_utils.py 2025-08-14T21:48:49.8204273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_traversal_utils.py 2025-08-14T21:48:49.8208213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_unshard_param_utils.py 2025-08-14T21:48:49.8211924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_wrap_utils.py 2025-08-14T21:48:49.8221286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__init__.py 2025-08-14T21:48:49.8229712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_api.py 2025-08-14T21:48:49.8233840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_collectives.py 2025-08-14T21:48:49.8238572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_common.py 2025-08-14T21:48:49.8246229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_init.py 2025-08-14T21:48:49.8251196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_param.py 2025-08-14T21:48:49.8265490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_param_group.py 2025-08-14T21:48:49.8266238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fsdp_state.py 2025-08-14T21:48:49.8266938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\_fully_shard.py 2025-08-14T21:48:49.8267642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__init__.py 2025-08-14T21:48:49.8274789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_api.cpython-39.pyc 2025-08-14T21:48:49.8278947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_collectives.cpython-39.pyc 2025-08-14T21:48:49.8282850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_common.cpython-39.pyc 2025-08-14T21:48:49.8291483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_init.cpython-39.pyc 2025-08-14T21:48:49.8295991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_param.cpython-39.pyc 2025-08-14T21:48:49.8300114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_param_group.cpython-39.pyc 2025-08-14T21:48:49.8304447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fsdp_state.cpython-39.pyc 2025-08-14T21:48:49.8308620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\_fully_shard.cpython-39.pyc 2025-08-14T21:48:49.8312932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\_fully_shard\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.8322240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:49.8326658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\fully_sharded_data_parallel.cpython-39.pyc 2025-08-14T21:48:49.8331162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\sharded_grad_scaler.cpython-39.pyc 2025-08-14T21:48:49.8340916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\wrap.cpython-39.pyc 2025-08-14T21:48:49.8344959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_common_utils.cpython-39.pyc 2025-08-14T21:48:49.8349043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_debug_utils.cpython-39.pyc 2025-08-14T21:48:49.8353195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_dynamo_utils.cpython-39.pyc 2025-08-14T21:48:49.8357291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_exec_order_utils.cpython-39.pyc 2025-08-14T21:48:49.8361611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_flat_param.cpython-39.pyc 2025-08-14T21:48:49.8381218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_fsdp_extensions.cpython-39.pyc 2025-08-14T21:48:49.8385151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_init_utils.cpython-39.pyc 2025-08-14T21:48:49.8389153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_limiter_utils.cpython-39.pyc 2025-08-14T21:48:49.8393144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_optim_utils.cpython-39.pyc 2025-08-14T21:48:49.8397634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_runtime_utils.cpython-39.pyc 2025-08-14T21:48:49.8401595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_shard_utils.cpython-39.pyc 2025-08-14T21:48:49.8405735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_state_dict_utils.cpython-39.pyc 2025-08-14T21:48:49.8414418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_trace_utils.cpython-39.pyc 2025-08-14T21:48:49.8418826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_traversal_utils.cpython-39.pyc 2025-08-14T21:48:49.8446602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_unshard_param_utils.cpython-39.pyc 2025-08-14T21:48:49.8447485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\_wrap_utils.cpython-39.pyc 2025-08-14T21:48:49.8448508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\fsdp\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.8449171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\api.py 2025-08-14T21:48:49.8449760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\__init__.py 2025-08-14T21:48:49.8454877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:49.8458880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\launcher\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.8467447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\functional.py 2025-08-14T21:48:49.8471505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\__init__.py 2025-08-14T21:48:49.8478934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\remote_module.py 2025-08-14T21:48:49.8483145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\__init__.py 2025-08-14T21:48:49.8490450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\__pycache__\remote_module.cpython-39.pyc 2025-08-14T21:48:49.8494026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\api\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.8502696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\instantiator.py 2025-08-14T21:48:49.8505972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\__init__.py 2025-08-14T21:48:49.8512769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\remote_module_template.py 2025-08-14T21:48:49.8516801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\__init__.py 2025-08-14T21:48:49.8523565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\__pycache__\remote_module_template.cpython-39.pyc 2025-08-14T21:48:49.8527916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\templates\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.8540888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\__pycache__\instantiator.cpython-39.pyc 2025-08-14T21:48:49.8544424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\jit\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.8559024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\__pycache__\functional.cpython-39.pyc 2025-08-14T21:48:49.8561881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\nn\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.8571586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\apply_optimizer_in_backward.py 2025-08-14T21:48:49.8574549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adadelta.py 2025-08-14T21:48:49.8578514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adagrad.py 2025-08-14T21:48:49.8586930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adam.py 2025-08-14T21:48:49.8591040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adamax.py 2025-08-14T21:48:49.8595165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_adamw.py 2025-08-14T21:48:49.8599274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_rmsprop.py 2025-08-14T21:48:49.8603562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_rprop.py 2025-08-14T21:48:49.8607010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\functional_sgd.py 2025-08-14T21:48:49.8610904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\named_optimizer.py 2025-08-14T21:48:49.8615381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\optimizer.py 2025-08-14T21:48:49.8618638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\post_localSGD_optimizer.py 2025-08-14T21:48:49.8622581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\utils.py 2025-08-14T21:48:49.8628053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\zero_redundancy_optimizer.py 2025-08-14T21:48:49.8631377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\zero_redundancy_optimizer.pyi 2025-08-14T21:48:49.8635465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\_deprecation_warning.py 2025-08-14T21:48:49.8639301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__init__.py 2025-08-14T21:48:49.8648584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\apply_optimizer_in_backward.cpython-39.pyc 2025-08-14T21:48:49.8653217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adadelta.cpython-39.pyc 2025-08-14T21:48:49.8656435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adagrad.cpython-39.pyc 2025-08-14T21:48:49.8666901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adam.cpython-39.pyc 2025-08-14T21:48:49.8671096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adamax.cpython-39.pyc 2025-08-14T21:48:49.8675253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_adamw.cpython-39.pyc 2025-08-14T21:48:49.8679465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_rmsprop.cpython-39.pyc 2025-08-14T21:48:49.8684104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_rprop.cpython-39.pyc 2025-08-14T21:48:49.8688400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\functional_sgd.cpython-39.pyc 2025-08-14T21:48:49.8692658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\named_optimizer.cpython-39.pyc 2025-08-14T21:48:49.8696575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\optimizer.cpython-39.pyc 2025-08-14T21:48:49.8700506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\post_localSGD_optimizer.cpython-39.pyc 2025-08-14T21:48:49.8704330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:49.8708675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\zero_redundancy_optimizer.cpython-39.pyc 2025-08-14T21:48:49.8713011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\_deprecation_warning.cpython-39.pyc 2025-08-14T21:48:49.8717132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\optim\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.8731388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\microbatch.py 2025-08-14T21:48:49.8734852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\schedules.py 2025-08-14T21:48:49.8739411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\stage.py 2025-08-14T21:48:49.8743384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_backward.py 2025-08-14T21:48:49.8751956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_debug.py 2025-08-14T21:48:49.8756456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_IR.py 2025-08-14T21:48:49.8759443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_schedule_visualizer.py 2025-08-14T21:48:49.8763326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_unflatten.py 2025-08-14T21:48:49.8767330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\_utils.py 2025-08-14T21:48:49.8770923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__init__.py 2025-08-14T21:48:49.8779200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\microbatch.cpython-39.pyc 2025-08-14T21:48:49.8784419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\schedules.cpython-39.pyc 2025-08-14T21:48:49.8788447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\stage.cpython-39.pyc 2025-08-14T21:48:49.8797667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_backward.cpython-39.pyc 2025-08-14T21:48:49.8802012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_debug.cpython-39.pyc 2025-08-14T21:48:49.8806101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_IR.cpython-39.pyc 2025-08-14T21:48:49.8810241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_schedule_visualizer.cpython-39.pyc 2025-08-14T21:48:49.8814289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_unflatten.cpython-39.pyc 2025-08-14T21:48:49.8818341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:49.8822388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\pipelining\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.8831156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\api.py 2025-08-14T21:48:49.8835340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\backend_registry.py 2025-08-14T21:48:49.8839250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\constants.py 2025-08-14T21:48:49.8843016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\functions.py 2025-08-14T21:48:49.8852530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\internal.py 2025-08-14T21:48:49.8856274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\options.py 2025-08-14T21:48:49.8860131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\rref_proxy.py 2025-08-14T21:48:49.8863996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\server_process_global_profiler.py 2025-08-14T21:48:49.8867749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_utils.py 2025-08-14T21:48:49.8871960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__init__.py 2025-08-14T21:48:49.8879833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\faulty_agent_backend_registry.py 2025-08-14T21:48:49.8883855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\__init__.py 2025-08-14T21:48:49.8891349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\__pycache__\faulty_agent_backend_registry.cpython-39.pyc 2025-08-14T21:48:49.8895558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\_testing\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.8903683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:49.8908373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\backend_registry.cpython-39.pyc 2025-08-14T21:48:49.8914168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\constants.cpython-39.pyc 2025-08-14T21:48:49.8946817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\functions.cpython-39.pyc 2025-08-14T21:48:49.8947622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\internal.cpython-39.pyc 2025-08-14T21:48:49.8948390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\options.cpython-39.pyc 2025-08-14T21:48:49.8949244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\rref_proxy.cpython-39.pyc 2025-08-14T21:48:49.8950093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\server_process_global_profiler.cpython-39.pyc 2025-08-14T21:48:49.8950934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:49.8951777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\rpc\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.8956930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\device_mesh.py 2025-08-14T21:48:49.8960882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\placement_types.py 2025-08-14T21:48:49.8965513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_api.py 2025-08-14T21:48:49.8969285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_collective_utils.py 2025-08-14T21:48:49.8978207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_dispatch.py 2025-08-14T21:48:49.8981541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_dtensor_spec.py 2025-08-14T21:48:49.8985401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_op_schema.py 2025-08-14T21:48:49.8989165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_random.py 2025-08-14T21:48:49.8993043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_redistribute.py 2025-08-14T21:48:49.8997135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_sharding_prop.py 2025-08-14T21:48:49.9000875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_shards_wrapper.py 2025-08-14T21:48:49.9004594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_tp_conv.py 2025-08-14T21:48:49.9008214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_utils.py 2025-08-14T21:48:49.9011921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__init__.py 2025-08-14T21:48:49.9019596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\_comm_mode.py 2025-08-14T21:48:49.9023467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\_op_coverage.py 2025-08-14T21:48:49.9028419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\_visualize_sharding.py 2025-08-14T21:48:49.9031116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__init__.py 2025-08-14T21:48:49.9043528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\_comm_mode.cpython-39.pyc 2025-08-14T21:48:49.9047491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\_op_coverage.cpython-39.pyc 2025-08-14T21:48:49.9051458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\_visualize_sharding.cpython-39.pyc 2025-08-14T21:48:49.9059752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\debug\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.9068916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_attention.py 2025-08-14T21:48:49.9072928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_func_map.py 2025-08-14T21:48:49.9076727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_register_sharding.py 2025-08-14T21:48:49.9085613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\_tp_transform.py 2025-08-14T21:48:49.9089387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__init__.py 2025-08-14T21:48:49.9097372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_attention.cpython-39.pyc 2025-08-14T21:48:49.9101514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_func_map.cpython-39.pyc 2025-08-14T21:48:49.9106684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_register_sharding.cpython-39.pyc 2025-08-14T21:48:49.9115254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\_tp_transform.cpython-39.pyc 2025-08-14T21:48:49.9119114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\experimental\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.9127927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\api.py 2025-08-14T21:48:49.9131843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\ddp.py 2025-08-14T21:48:49.9136095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\fsdp.py 2025-08-14T21:48:49.9140180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\input_reshard.py 2025-08-14T21:48:49.9150389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\loss.py 2025-08-14T21:48:49.9151499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\style.py 2025-08-14T21:48:49.9159815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\_data_parallel_utils.py 2025-08-14T21:48:49.9163590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__init__.py 2025-08-14T21:48:49.9171451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:49.9175303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\ddp.cpython-39.pyc 2025-08-14T21:48:49.9179791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\fsdp.cpython-39.pyc 2025-08-14T21:48:49.9189438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\input_reshard.cpython-39.pyc 2025-08-14T21:48:49.9193829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\loss.cpython-39.pyc 2025-08-14T21:48:49.9197627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\style.cpython-39.pyc 2025-08-14T21:48:49.9201710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\_data_parallel_utils.cpython-39.pyc 2025-08-14T21:48:49.9205718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\parallel\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.9214308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\utils.py 2025-08-14T21:48:49.9218007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_common_rules.py 2025-08-14T21:48:49.9221621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_conv_ops.py 2025-08-14T21:48:49.9225442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_einsum_strategy.py 2025-08-14T21:48:49.9234133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_embedding_ops.py 2025-08-14T21:48:49.9238164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_math_ops.py 2025-08-14T21:48:49.9242018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_matrix_ops.py 2025-08-14T21:48:49.9245790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_pointwise_ops.py 2025-08-14T21:48:49.9249536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_random_ops.py 2025-08-14T21:48:49.9253397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_tensor_ops.py 2025-08-14T21:48:49.9257300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\_view_ops.py 2025-08-14T21:48:49.9261057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__init__.py 2025-08-14T21:48:49.9269140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:49.9272982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_common_rules.cpython-39.pyc 2025-08-14T21:48:49.9276673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_conv_ops.cpython-39.pyc 2025-08-14T21:48:49.9286190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_einsum_strategy.cpython-39.pyc 2025-08-14T21:48:49.9290425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_embedding_ops.cpython-39.pyc 2025-08-14T21:48:49.9294440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_math_ops.cpython-39.pyc 2025-08-14T21:48:49.9298219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_matrix_ops.cpython-39.pyc 2025-08-14T21:48:49.9302201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_pointwise_ops.cpython-39.pyc 2025-08-14T21:48:49.9306400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_random_ops.cpython-39.pyc 2025-08-14T21:48:49.9310340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_tensor_ops.cpython-39.pyc 2025-08-14T21:48:49.9314745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\_view_ops.cpython-39.pyc 2025-08-14T21:48:49.9318718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\_ops\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.9327506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\device_mesh.cpython-39.pyc 2025-08-14T21:48:49.9331338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\placement_types.cpython-39.pyc 2025-08-14T21:48:49.9335256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_api.cpython-39.pyc 2025-08-14T21:48:49.9344315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_collective_utils.cpython-39.pyc 2025-08-14T21:48:49.9348103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_dispatch.cpython-39.pyc 2025-08-14T21:48:49.9352770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_dtensor_spec.cpython-39.pyc 2025-08-14T21:48:49.9356599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_op_schema.cpython-39.pyc 2025-08-14T21:48:49.9360456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_random.cpython-39.pyc 2025-08-14T21:48:49.9364262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_redistribute.cpython-39.pyc 2025-08-14T21:48:49.9368006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_sharding_prop.cpython-39.pyc 2025-08-14T21:48:49.9371879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_shards_wrapper.cpython-39.pyc 2025-08-14T21:48:49.9375699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_tp_conv.cpython-39.pyc 2025-08-14T21:48:49.9379668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:49.9383407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\tensor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.9392789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\checkpoint_activation.py 2025-08-14T21:48:49.9396756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\contract.py 2025-08-14T21:48:49.9400607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\replicate.py 2025-08-14T21:48:49.9404443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\replicate_with_fsdp.py 2025-08-14T21:48:49.9414154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__init__.py 2025-08-14T21:48:49.9422551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\fully_shard.py 2025-08-14T21:48:49.9426386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\__init__.py 2025-08-14T21:48:49.9435396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\__pycache__\fully_shard.cpython-39.pyc 2025-08-14T21:48:49.9439925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\fsdp\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.9448969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\checkpoint_activation.cpython-39.pyc 2025-08-14T21:48:49.9453540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\contract.cpython-39.pyc 2025-08-14T21:48:49.9457311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\replicate.cpython-39.pyc 2025-08-14T21:48:49.9466027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\replicate_with_fsdp.cpython-39.pyc 2025-08-14T21:48:49.9470020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_composable\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.9478597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\api.py 2025-08-14T21:48:49.9482286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\common_op_utils.py 2025-08-14T21:48:49.9486678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\metadata.py 2025-08-14T21:48:49.9490430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\op_registry_utils.py 2025-08-14T21:48:49.9494489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharder.py 2025-08-14T21:48:49.9503641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\_utils.py 2025-08-14T21:48:49.9507216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__init__.py 2025-08-14T21:48:49.9514858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\checkpoint\__init__.py 2025-08-14T21:48:49.9522545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\checkpoint\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.9530468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\api.py 2025-08-14T21:48:49.9534427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\__init__.py 2025-08-14T21:48:49.9558711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:49.9562620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_optim\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.9570732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\api.py 2025-08-14T21:48:49.9575124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\logger.py 2025-08-14T21:48:49.9579130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\logging_handlers.py 2025-08-14T21:48:49.9582822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\metadata.py 2025-08-14T21:48:49.9586870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\reshard.py 2025-08-14T21:48:49.9595931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\shard.py 2025-08-14T21:48:49.9599790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\utils.py 2025-08-14T21:48:49.9603938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__init__.py 2025-08-14T21:48:49.9611856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\binary_cmp.py 2025-08-14T21:48:49.9616227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\init.py 2025-08-14T21:48:49.9619954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\misc_ops.py 2025-08-14T21:48:49.9623651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\tensor_ops.py 2025-08-14T21:48:49.9627256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\_common.py 2025-08-14T21:48:49.9635619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__init__.py 2025-08-14T21:48:49.9643311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\binary_cmp.cpython-39.pyc 2025-08-14T21:48:49.9647141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\init.cpython-39.pyc 2025-08-14T21:48:49.9651017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\misc_ops.cpython-39.pyc 2025-08-14T21:48:49.9659364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\tensor_ops.cpython-39.pyc 2025-08-14T21:48:49.9662834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\_common.cpython-39.pyc 2025-08-14T21:48:49.9666594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\_ops\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.9675266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:49.9679633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\logger.cpython-39.pyc 2025-08-14T21:48:49.9683704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\logging_handlers.cpython-39.pyc 2025-08-14T21:48:49.9691422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\metadata.cpython-39.pyc 2025-08-14T21:48:49.9695420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\reshard.cpython-39.pyc 2025-08-14T21:48:49.9699036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\shard.cpython-39.pyc 2025-08-14T21:48:49.9702952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:49.9706817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharded_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.9715114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\api.py 2025-08-14T21:48:49.9718780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\__init__.py 2025-08-14T21:48:49.9726113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:49.9729909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_plan\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.9738128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\api.py 2025-08-14T21:48:49.9741908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec.py 2025-08-14T21:48:49.9745754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\_internals.py 2025-08-14T21:48:49.9750111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__init__.py 2025-08-14T21:48:49.9762577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding.py 2025-08-14T21:48:49.9766452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\embedding_bag.py 2025-08-14T21:48:49.9770398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\_common.py 2025-08-14T21:48:49.9778330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__init__.py 2025-08-14T21:48:49.9785702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\embedding.cpython-39.pyc 2025-08-14T21:48:49.9789819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\embedding_bag.cpython-39.pyc 2025-08-14T21:48:49.9793682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\_common.cpython-39.pyc 2025-08-14T21:48:49.9802128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.9810802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:49.9814975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\chunk_sharding_spec.cpython-39.pyc 2025-08-14T21:48:49.9819157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\_internals.cpython-39.pyc 2025-08-14T21:48:49.9827296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\sharding_spec\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.9836130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:49.9840169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\common_op_utils.cpython-39.pyc 2025-08-14T21:48:49.9844880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\metadata.cpython-39.pyc 2025-08-14T21:48:49.9854566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\op_registry_utils.cpython-39.pyc 2025-08-14T21:48:49.9858919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\sharder.cpython-39.pyc 2025-08-14T21:48:49.9862930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:49.9866647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_shard\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.9875341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharded_tensor\__init__.py 2025-08-14T21:48:49.9883044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharded_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.9891246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharding_spec\__init__.py 2025-08-14T21:48:49.9899221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_sharding_spec\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.9907374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\_nvshmem_triton.py 2025-08-14T21:48:49.9912007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\__init__.py 2025-08-14T21:48:49.9920004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\__pycache__\_nvshmem_triton.cpython-39.pyc 2025-08-14T21:48:49.9924049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_symmetric_memory\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.9932579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\api.py 2025-08-14T21:48:49.9936553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\placement_types.py 2025-08-14T21:48:49.9940143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__init__.py 2025-08-14T21:48:49.9947719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__pycache__\api.cpython-39.pyc 2025-08-14T21:48:49.9951704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__pycache__\placement_types.cpython-39.pyc 2025-08-14T21:48:49.9955413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:49.9968663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\common_utils.py 2025-08-14T21:48:49.9972437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\fake_collectives.py 2025-08-14T21:48:49.9976111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\fsdp2_mem_tracker.py 2025-08-14T21:48:49.9979787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\ilp_utils.py 2025-08-14T21:48:49.9988123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\memory_tracker.py 2025-08-14T21:48:49.9991862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\mem_tracker.py 2025-08-14T21:48:49.9995795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\mod_tracker.py 2025-08-14T21:48:49.9999504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\runtime_estimator.py 2025-08-14T21:48:50.0003474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\sac_estimator.py 2025-08-14T21:48:50.0007470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\sac_ilp.py 2025-08-14T21:48:50.0011065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__init__.py 2025-08-14T21:48:50.0018945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\common_utils.cpython-39.pyc 2025-08-14T21:48:50.0022894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\fake_collectives.cpython-39.pyc 2025-08-14T21:48:50.0026751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\fsdp2_mem_tracker.cpython-39.pyc 2025-08-14T21:48:50.0034896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\ilp_utils.cpython-39.pyc 2025-08-14T21:48:50.0038863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\memory_tracker.cpython-39.pyc 2025-08-14T21:48:50.0042583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\mem_tracker.cpython-39.pyc 2025-08-14T21:48:50.0046561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\mod_tracker.cpython-39.pyc 2025-08-14T21:48:50.0050178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\runtime_estimator.cpython-39.pyc 2025-08-14T21:48:50.0054422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\sac_estimator.cpython-39.pyc 2025-08-14T21:48:50.0058269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\sac_ilp.cpython-39.pyc 2025-08-14T21:48:50.0061929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\_tools\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:50.0070897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\argparse_util.cpython-39.pyc 2025-08-14T21:48:50.0074752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\c10d_logger.cpython-39.pyc 2025-08-14T21:48:50.0078565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\collective_utils.cpython-39.pyc 2025-08-14T21:48:50.0088379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\constants.cpython-39.pyc 2025-08-14T21:48:50.0092256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\device_mesh.cpython-39.pyc 2025-08-14T21:48:50.0096196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\distributed_c10d.cpython-39.pyc 2025-08-14T21:48:50.0101315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\launch.cpython-39.pyc 2025-08-14T21:48:50.0105222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\logging_handlers.cpython-39.pyc 2025-08-14T21:48:50.0109059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\remote_device.cpython-39.pyc 2025-08-14T21:48:50.0112967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\rendezvous.cpython-39.pyc 2025-08-14T21:48:50.0116971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\run.cpython-39.pyc 2025-08-14T21:48:50.0121091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:50.0125044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_checkpointable.cpython-39.pyc 2025-08-14T21:48:50.0129072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_composable_state.cpython-39.pyc 2025-08-14T21:48:50.0133074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_dist2.cpython-39.pyc 2025-08-14T21:48:50.0137131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_functional_collectives.cpython-39.pyc 2025-08-14T21:48:50.0141266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_functional_collectives_impl.cpython-39.pyc 2025-08-14T21:48:50.0150395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_serialization.cpython-39.pyc 2025-08-14T21:48:50.0154372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\_state_dict_utils.cpython-39.pyc 2025-08-14T21:48:50.0158206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributed\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:50.0168754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\bernoulli.py 2025-08-14T21:48:50.0172536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\beta.py 2025-08-14T21:48:50.0176110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\binomial.py 2025-08-14T21:48:50.0180252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\categorical.py 2025-08-14T21:48:50.0188745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\cauchy.py 2025-08-14T21:48:50.0192502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\chi2.py 2025-08-14T21:48:50.0196113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\constraints.py 2025-08-14T21:48:50.0199976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\constraint_registry.py 2025-08-14T21:48:50.0204311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\continuous_bernoulli.py 2025-08-14T21:48:50.0208151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\dirichlet.py 2025-08-14T21:48:50.0211691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\distribution.py 2025-08-14T21:48:50.0215372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\exponential.py 2025-08-14T21:48:50.0219147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\exp_family.py 2025-08-14T21:48:50.0222995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\fishersnedecor.py 2025-08-14T21:48:50.0226747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\gamma.py 2025-08-14T21:48:50.0230983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\generalized_pareto.py 2025-08-14T21:48:50.0234626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\geometric.py 2025-08-14T21:48:50.0238541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\gumbel.py 2025-08-14T21:48:50.0242358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\half_cauchy.py 2025-08-14T21:48:50.0246073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\half_normal.py 2025-08-14T21:48:50.0249847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\independent.py 2025-08-14T21:48:50.0253486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\inverse_gamma.py 2025-08-14T21:48:50.0261700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\kl.py 2025-08-14T21:48:50.0265491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\kumaraswamy.py 2025-08-14T21:48:50.0269344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\laplace.py 2025-08-14T21:48:50.0273031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\lkj_cholesky.py 2025-08-14T21:48:50.0277090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\logistic_normal.py 2025-08-14T21:48:50.0281656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\log_normal.py 2025-08-14T21:48:50.0285712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\lowrank_multivariate_normal.py 2025-08-14T21:48:50.0290192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\mixture_same_family.py 2025-08-14T21:48:50.0294009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\multinomial.py 2025-08-14T21:48:50.0297925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\multivariate_normal.py 2025-08-14T21:48:50.0306845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\negative_binomial.py 2025-08-14T21:48:50.0311032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\normal.py 2025-08-14T21:48:50.0315424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\one_hot_categorical.py 2025-08-14T21:48:50.0319562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\pareto.py 2025-08-14T21:48:50.0323534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\poisson.py 2025-08-14T21:48:50.0327353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\relaxed_bernoulli.py 2025-08-14T21:48:50.0331634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\relaxed_categorical.py 2025-08-14T21:48:50.0335578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\studentT.py 2025-08-14T21:48:50.0339957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\transformed_distribution.py 2025-08-14T21:48:50.0343852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\transforms.py 2025-08-14T21:48:50.0347969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\uniform.py 2025-08-14T21:48:50.0352272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\utils.py 2025-08-14T21:48:50.0356013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\von_mises.py 2025-08-14T21:48:50.0364558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\weibull.py 2025-08-14T21:48:50.0368261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\wishart.py 2025-08-14T21:48:50.0372071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__init__.py 2025-08-14T21:48:50.0381242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\bernoulli.cpython-39.pyc 2025-08-14T21:48:50.0384875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\beta.cpython-39.pyc 2025-08-14T21:48:50.0388730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\binomial.cpython-39.pyc 2025-08-14T21:48:50.0397194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\categorical.cpython-39.pyc 2025-08-14T21:48:50.0400957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\cauchy.cpython-39.pyc 2025-08-14T21:48:50.0404699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\chi2.cpython-39.pyc 2025-08-14T21:48:50.0408528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\constraints.cpython-39.pyc 2025-08-14T21:48:50.0413143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\constraint_registry.cpython-39.pyc 2025-08-14T21:48:50.0416956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\continuous_bernoulli.cpython-39.pyc 2025-08-14T21:48:50.0420640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\dirichlet.cpython-39.pyc 2025-08-14T21:48:50.0424560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\distribution.cpython-39.pyc 2025-08-14T21:48:50.0428326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\exponential.cpython-39.pyc 2025-08-14T21:48:50.0432259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\exp_family.cpython-39.pyc 2025-08-14T21:48:50.0436087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\fishersnedecor.cpython-39.pyc 2025-08-14T21:48:50.0440526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\gamma.cpython-39.pyc 2025-08-14T21:48:50.0444353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\generalized_pareto.cpython-39.pyc 2025-08-14T21:48:50.0448077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\geometric.cpython-39.pyc 2025-08-14T21:48:50.0456264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\gumbel.cpython-39.pyc 2025-08-14T21:48:50.0460214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\half_cauchy.cpython-39.pyc 2025-08-14T21:48:50.0463930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\half_normal.cpython-39.pyc 2025-08-14T21:48:50.0467752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\independent.cpython-39.pyc 2025-08-14T21:48:50.0471564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\inverse_gamma.cpython-39.pyc 2025-08-14T21:48:50.0475326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\kl.cpython-39.pyc 2025-08-14T21:48:50.0479208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\kumaraswamy.cpython-39.pyc 2025-08-14T21:48:50.0483613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\laplace.cpython-39.pyc 2025-08-14T21:48:50.0491595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\lkj_cholesky.cpython-39.pyc 2025-08-14T21:48:50.0495649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\logistic_normal.cpython-39.pyc 2025-08-14T21:48:50.0499535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\log_normal.cpython-39.pyc 2025-08-14T21:48:50.0503435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\lowrank_multivariate_normal.cpython-39.pyc 2025-08-14T21:48:50.0507203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\mixture_same_family.cpython-39.pyc 2025-08-14T21:48:50.0511073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\multinomial.cpython-39.pyc 2025-08-14T21:48:50.0515188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\multivariate_normal.cpython-39.pyc 2025-08-14T21:48:50.0518889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\negative_binomial.cpython-39.pyc 2025-08-14T21:48:50.0527507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\normal.cpython-39.pyc 2025-08-14T21:48:50.0531293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\one_hot_categorical.cpython-39.pyc 2025-08-14T21:48:50.0534950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\pareto.cpython-39.pyc 2025-08-14T21:48:50.0538714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\poisson.cpython-39.pyc 2025-08-14T21:48:50.0542574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\relaxed_bernoulli.cpython-39.pyc 2025-08-14T21:48:50.0546518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\relaxed_categorical.cpython-39.pyc 2025-08-14T21:48:50.0550430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\studentT.cpython-39.pyc 2025-08-14T21:48:50.0554354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\transformed_distribution.cpython-39.pyc 2025-08-14T21:48:50.0562315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\transforms.cpython-39.pyc 2025-08-14T21:48:50.0566589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\uniform.cpython-39.pyc 2025-08-14T21:48:50.0570403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:50.0574265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\von_mises.cpython-39.pyc 2025-08-14T21:48:50.0578241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\weibull.cpython-39.pyc 2025-08-14T21:48:50.0582066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\wishart.cpython-39.pyc 2025-08-14T21:48:50.0585923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\distributions\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:50.0595792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\custom_obj.py 2025-08-14T21:48:50.0599445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\custom_ops.py 2025-08-14T21:48:50.0603125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\decomp_utils.py 2025-08-14T21:48:50.0606662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\dynamic_shapes.py 2025-08-14T21:48:50.0615937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\exported_program.py 2025-08-14T21:48:50.0620615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\graph_signature.py 2025-08-14T21:48:50.0624564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\unflatten.py 2025-08-14T21:48:50.0628964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_draft_export.py 2025-08-14T21:48:50.0633048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_remove_auto_functionalized_pass.py 2025-08-14T21:48:50.0636843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_remove_effect_tokens_pass.py 2025-08-14T21:48:50.0640841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_safeguard.py 2025-08-14T21:48:50.0645133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_swap.py 2025-08-14T21:48:50.0648949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_trace.py 2025-08-14T21:48:50.0653543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_tree_utils.py 2025-08-14T21:48:50.0657876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_unlift.py 2025-08-14T21:48:50.0661254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\_wrapper_utils.py 2025-08-14T21:48:50.0664934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__init__.py 2025-08-14T21:48:50.0672643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\_utils.py 2025-08-14T21:48:50.0676333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\__init__.py 2025-08-14T21:48:50.0699598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:50.0703490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\experimental\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:50.0712246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\passes\__init__.py 2025-08-14T21:48:50.0719640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\passes\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:50.0727997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\constants.py 2025-08-14T21:48:50.0731883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\_package.py 2025-08-14T21:48:50.0735669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\_package_weights.py 2025-08-14T21:48:50.0739630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__init__.py 2025-08-14T21:48:50.0752414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\constants.cpython-39.pyc 2025-08-14T21:48:50.0756448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\_package.cpython-39.pyc 2025-08-14T21:48:50.0760329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\_package_weights.cpython-39.pyc 2025-08-14T21:48:50.0770107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\pt2_archive\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:50.0786004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\custom_obj.cpython-39.pyc 2025-08-14T21:48:50.0789994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\custom_ops.cpython-39.pyc 2025-08-14T21:48:50.0793891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\decomp_utils.cpython-39.pyc 2025-08-14T21:48:50.0802742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\dynamic_shapes.cpython-39.pyc 2025-08-14T21:48:50.0807088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\exported_program.cpython-39.pyc 2025-08-14T21:48:50.0811180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\graph_signature.cpython-39.pyc 2025-08-14T21:48:50.0815493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\unflatten.cpython-39.pyc 2025-08-14T21:48:50.0819661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_draft_export.cpython-39.pyc 2025-08-14T21:48:50.0823739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_remove_auto_functionalized_pass.cpython-39.pyc 2025-08-14T21:48:50.0828217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_remove_effect_tokens_pass.cpython-39.pyc 2025-08-14T21:48:50.0832748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_safeguard.cpython-39.pyc 2025-08-14T21:48:50.0837091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_swap.cpython-39.pyc 2025-08-14T21:48:50.0841275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_trace.cpython-39.pyc 2025-08-14T21:48:50.0845812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_tree_utils.cpython-39.pyc 2025-08-14T21:48:50.0850480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_unlift.cpython-39.pyc 2025-08-14T21:48:50.0854596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\_wrapper_utils.cpython-39.pyc 2025-08-14T21:48:50.0863429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\export\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:50.0874014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fft\__init__.py 2025-08-14T21:48:50.0881705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fft\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:50.0891085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\func\__init__.py 2025-08-14T21:48:50.0898367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\func\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:50.0906471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\futures\__init__.py 2025-08-14T21:48:50.0914560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\futures\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:50.0921945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\annotate.py 2025-08-14T21:48:50.0925717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\config.py 2025-08-14T21:48:50.0929369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\graph.py 2025-08-14T21:48:50.0933567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\graph_module.py 2025-08-14T21:48:50.0937665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\immutable_collections.py 2025-08-14T21:48:50.0946980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\interpreter.py 2025-08-14T21:48:50.0950767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\node.py 2025-08-14T21:48:50.0954546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\operator_schemas.py 2025-08-14T21:48:50.0958321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\proxy.py 2025-08-14T21:48:50.0963957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\subgraph_rewriter.py 2025-08-14T21:48:50.0968223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\tensor_type.py 2025-08-14T21:48:50.0971904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\traceback.py 2025-08-14T21:48:50.0975634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_compatibility.py 2025-08-14T21:48:50.0979315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_graph_pickler.py 2025-08-14T21:48:50.0982989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_lazy_graph_module.py 2025-08-14T21:48:50.0986567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_pytree.py 2025-08-14T21:48:50.0990399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_symbolic_trace.py 2025-08-14T21:48:50.0994325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\_utils.py 2025-08-14T21:48:50.0997934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__init__.py 2025-08-14T21:48:50.1005890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\accelerator_partitioner.py 2025-08-14T21:48:50.1009872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\const_fold.py 2025-08-14T21:48:50.1013600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\debug.py 2025-08-14T21:48:50.1022600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\graph_gradual_typechecker.py 2025-08-14T21:48:50.1026492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\merge_matmul.py 2025-08-14T21:48:50.1030316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\meta_tracer.py 2025-08-14T21:48:50.1033991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\normalize.py 2025-08-14T21:48:50.1037647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\optimization.py 2025-08-14T21:48:50.1041611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\partitioner_utils.py 2025-08-14T21:48:50.1045274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\proxy_tensor.py 2025-08-14T21:48:50.1049571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\recording.py 2025-08-14T21:48:50.1053269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\refinement_types.py 2025-08-14T21:48:50.1056986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\rewriter.py 2025-08-14T21:48:50.1060995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\schema_type_annotation.py 2025-08-14T21:48:50.1064815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\symbolic_shapes.py 2025-08-14T21:48:50.1070541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\sym_node.py 2025-08-14T21:48:50.1075198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unify_refinements.py 2025-08-14T21:48:50.1079507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\validator.py 2025-08-14T21:48:50.1083474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_backward_state.py 2025-08-14T21:48:50.1087183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_config.py 2025-08-14T21:48:50.1090776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_constant_symnode.py 2025-08-14T21:48:50.1100707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\_dynamism.py 2025-08-14T21:48:50.1104110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__init__.py 2025-08-14T21:48:50.1111356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\constraint.py 2025-08-14T21:48:50.1115415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\constraint_generator.py 2025-08-14T21:48:50.1119703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\constraint_transformation.py 2025-08-14T21:48:50.1128270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\operation.py 2025-08-14T21:48:50.1132058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\transform_to_z3.py 2025-08-14T21:48:50.1136296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\util.py 2025-08-14T21:48:50.1140132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\z3_types.py 2025-08-14T21:48:50.1143729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__init__.py 2025-08-14T21:48:50.1150778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\constraint.cpython-39.pyc 2025-08-14T21:48:50.1154878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\constraint_generator.cpython-39.pyc 2025-08-14T21:48:50.1158857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\constraint_transformation.cpython-39.pyc 2025-08-14T21:48:50.1167238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\operation.cpython-39.pyc 2025-08-14T21:48:50.1171131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\transform_to_z3.cpython-39.pyc 2025-08-14T21:48:50.1174928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\util.cpython-39.pyc 2025-08-14T21:48:50.1179134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\z3_types.cpython-39.pyc 2025-08-14T21:48:50.1182896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\migrate_gradual_types\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:50.1191613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\core.py 2025-08-14T21:48:50.1195820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\dispatch.py 2025-08-14T21:48:50.1199400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\match.py 2025-08-14T21:48:50.1203003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\more.py 2025-08-14T21:48:50.1206635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\unification_tools.py 2025-08-14T21:48:50.1214358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\utils.py 2025-08-14T21:48:50.1218065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\variable.py 2025-08-14T21:48:50.1222690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__init__.py 2025-08-14T21:48:50.1230833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\conflict.py 2025-08-14T21:48:50.1234737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\core.py 2025-08-14T21:48:50.1238776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\dispatcher.py 2025-08-14T21:48:50.1242397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\utils.py 2025-08-14T21:48:50.1245976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\variadic.py 2025-08-14T21:48:50.1254896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__init__.py 2025-08-14T21:48:50.1262574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\conflict.cpython-39.pyc 2025-08-14T21:48:50.1266548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\core.cpython-39.pyc 2025-08-14T21:48:50.1270487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\dispatcher.cpython-39.pyc 2025-08-14T21:48:50.1278605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:50.1282331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\variadic.cpython-39.pyc 2025-08-14T21:48:50.1286140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\multipledispatch\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:50.1294567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\core.cpython-39.pyc 2025-08-14T21:48:50.1298498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\dispatch.cpython-39.pyc 2025-08-14T21:48:50.1302408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\match.cpython-39.pyc 2025-08-14T21:48:50.1325302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\more.cpython-39.pyc 2025-08-14T21:48:50.1326366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\unification_tools.cpython-39.pyc 2025-08-14T21:48:50.1327252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:50.1328108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\variable.cpython-39.pyc 2025-08-14T21:48:50.1328984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\unification\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:50.1334661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\accelerator_partitioner.cpython-39.pyc 2025-08-14T21:48:50.1338693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\const_fold.cpython-39.pyc 2025-08-14T21:48:50.1342574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\debug.cpython-39.pyc 2025-08-14T21:48:50.1353331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\graph_gradual_typechecker.cpython-39.pyc 2025-08-14T21:48:50.1357244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\merge_matmul.cpython-39.pyc 2025-08-14T21:48:50.1360911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\meta_tracer.cpython-39.pyc 2025-08-14T21:48:50.1364596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\normalize.cpython-39.pyc 2025-08-14T21:48:50.1368578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\optimization.cpython-39.pyc 2025-08-14T21:48:50.1372379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\partitioner_utils.cpython-39.pyc 2025-08-14T21:48:50.1376198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\proxy_tensor.cpython-39.pyc 2025-08-14T21:48:50.1380200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\recording.cpython-39.pyc 2025-08-14T21:48:50.1383975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\refinement_types.cpython-39.pyc 2025-08-14T21:48:50.1387812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\rewriter.cpython-39.pyc 2025-08-14T21:48:50.1392116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\schema_type_annotation.cpython-39.pyc 2025-08-14T21:48:50.1396273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\symbolic_shapes.cpython-39.pyc 2025-08-14T21:48:50.1400825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\sym_node.cpython-39.pyc 2025-08-14T21:48:50.1409117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\unify_refinements.cpython-39.pyc 2025-08-14T21:48:50.1413369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\validator.cpython-39.pyc 2025-08-14T21:48:50.1417151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_backward_state.cpython-39.pyc 2025-08-14T21:48:50.1420918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_config.cpython-39.pyc 2025-08-14T21:48:50.1425482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_constant_symnode.cpython-39.pyc 2025-08-14T21:48:50.1429259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\_dynamism.cpython-39.pyc 2025-08-14T21:48:50.1433427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\experimental\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:50.1443591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\annotate_getitem_nodes.py 2025-08-14T21:48:50.1447573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\fake_tensor_prop.py 2025-08-14T21:48:50.1451733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\graph_drawer.py 2025-08-14T21:48:50.1455817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\graph_manipulation.py 2025-08-14T21:48:50.1464830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\graph_transform_observer.py 2025-08-14T21:48:50.1468244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\net_min_base.py 2025-08-14T21:48:50.1472442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\operator_support.py 2025-08-14T21:48:50.1476927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\param_fetch.py 2025-08-14T21:48:50.1480528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\pass_manager.py 2025-08-14T21:48:50.1484356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\reinplace.py 2025-08-14T21:48:50.1488708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\runtime_assert.py 2025-08-14T21:48:50.1492543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\shape_prop.py 2025-08-14T21:48:50.1496240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\splitter_base.py 2025-08-14T21:48:50.1500205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\split_module.py 2025-08-14T21:48:50.1504245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\split_utils.py 2025-08-14T21:48:50.1508129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tools_common.py 2025-08-14T21:48:50.1512402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\_tensorify_python_scalars.py 2025-08-14T21:48:50.1516493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__init__.py 2025-08-14T21:48:50.1523638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\cudagraphs.py 2025-08-14T21:48:50.1529038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\__init__.py 2025-08-14T21:48:50.1534671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\__pycache__\cudagraphs.cpython-39.pyc 2025-08-14T21:48:50.1539325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\backends\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:50.1552413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\__init__.py 2025-08-14T21:48:50.1558783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\cse_pass.py 2025-08-14T21:48:50.1562548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\__init__.py 2025-08-14T21:48:50.1569121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\__pycache__\cse_pass.cpython-39.pyc 2025-08-14T21:48:50.1573184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\common\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:50.1581820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\dialect\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:50.1591930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\partitioner.py 2025-08-14T21:48:50.1594098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\pass_base.py 2025-08-14T21:48:50.1598098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\pass_manager.py 2025-08-14T21:48:50.1601388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__init__.py 2025-08-14T21:48:50.1613441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\partitioner.cpython-39.pyc 2025-08-14T21:48:50.1617374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\pass_base.cpython-39.pyc 2025-08-14T21:48:50.1621101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\pass_manager.cpython-39.pyc 2025-08-14T21:48:50.1628970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\infra\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:50.1637413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\test_pass_manager.py 2025-08-14T21:48:50.1641889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\__init__.py 2025-08-14T21:48:50.1649235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\__pycache__\test_pass_manager.cpython-39.pyc 2025-08-14T21:48:50.1652980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\tests\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:50.1661034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\common.py 2025-08-14T21:48:50.1664652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\fuser_utils.py 2025-08-14T21:48:50.1668392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\matcher_utils.py 2025-08-14T21:48:50.1672627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\matcher_with_name_node_map_utils.py 2025-08-14T21:48:50.1680706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\source_matcher_utils.py 2025-08-14T21:48:50.1684547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__init__.py 2025-08-14T21:48:50.1692377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\common.cpython-39.pyc 2025-08-14T21:48:50.1696214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\fuser_utils.cpython-39.pyc 2025-08-14T21:48:50.1699954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\matcher_utils.cpython-39.pyc 2025-08-14T21:48:50.1708561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\matcher_with_name_node_map_utils.cpython-39.pyc 2025-08-14T21:48:50.1713244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\source_matcher_utils.cpython-39.pyc 2025-08-14T21:48:50.1717208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\utils\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:50.1725824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\annotate_getitem_nodes.cpython-39.pyc 2025-08-14T21:48:50.1729642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\fake_tensor_prop.cpython-39.pyc 2025-08-14T21:48:50.1733413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\graph_drawer.cpython-39.pyc 2025-08-14T21:48:50.1741751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\graph_manipulation.cpython-39.pyc 2025-08-14T21:48:50.1745630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\graph_transform_observer.cpython-39.pyc 2025-08-14T21:48:50.1749793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\net_min_base.cpython-39.pyc 2025-08-14T21:48:50.1753638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\operator_support.cpython-39.pyc 2025-08-14T21:48:50.1757812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\param_fetch.cpython-39.pyc 2025-08-14T21:48:50.1761749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\pass_manager.cpython-39.pyc 2025-08-14T21:48:50.1765390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\reinplace.cpython-39.pyc 2025-08-14T21:48:50.1769213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\runtime_assert.cpython-39.pyc 2025-08-14T21:48:50.1773106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\shape_prop.cpython-39.pyc 2025-08-14T21:48:50.1776888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\splitter_base.cpython-39.pyc 2025-08-14T21:48:50.1780828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\split_module.cpython-39.pyc 2025-08-14T21:48:50.1784602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\split_utils.cpython-39.pyc 2025-08-14T21:48:50.1788403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\tools_common.cpython-39.pyc 2025-08-14T21:48:50.1797018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\_tensorify_python_scalars.cpython-39.pyc 2025-08-14T21:48:50.1800651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\passes\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:50.1810203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\annotate.cpython-39.pyc 2025-08-14T21:48:50.1814111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\config.cpython-39.pyc 2025-08-14T21:48:50.1817831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\graph.cpython-39.pyc 2025-08-14T21:48:50.1826375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\graph_module.cpython-39.pyc 2025-08-14T21:48:50.1831411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\immutable_collections.cpython-39.pyc 2025-08-14T21:48:50.1835599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\interpreter.cpython-39.pyc 2025-08-14T21:48:50.1857558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\node.cpython-39.pyc 2025-08-14T21:48:50.1862016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\operator_schemas.cpython-39.pyc 2025-08-14T21:48:50.1866121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\proxy.cpython-39.pyc 2025-08-14T21:48:50.1870524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\subgraph_rewriter.cpython-39.pyc 2025-08-14T21:48:50.1875008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\tensor_type.cpython-39.pyc 2025-08-14T21:48:50.1879326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\traceback.cpython-39.pyc 2025-08-14T21:48:50.1884131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_compatibility.cpython-39.pyc 2025-08-14T21:48:50.1888628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_graph_pickler.cpython-39.pyc 2025-08-14T21:48:50.1892951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_lazy_graph_module.cpython-39.pyc 2025-08-14T21:48:50.1897123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_pytree.cpython-39.pyc 2025-08-14T21:48:50.1901388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_symbolic_trace.cpython-39.pyc 2025-08-14T21:48:50.1909827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:50.1913731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\fx\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:50.1928643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\advisor-annotate.h 2025-08-14T21:48:50.1932705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\cpuinfo.h 2025-08-14T21:48:50.1937008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl.h 2025-08-14T21:48:50.1940608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl.hpp 2025-08-14T21:48:50.1944644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_config.h 2025-08-14T21:48:50.1953205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_debug.h 2025-08-14T21:48:50.1956898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_ocl.h 2025-08-14T21:48:50.1960329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_ocl.hpp 2025-08-14T21:48:50.1964017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_sycl.h 2025-08-14T21:48:50.1967690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_sycl.hpp 2025-08-14T21:48:50.1971613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_sycl_types.h 2025-08-14T21:48:50.1975314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_threadpool.h 2025-08-14T21:48:50.1978975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_threadpool.hpp 2025-08-14T21:48:50.1982797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_threadpool_iface.hpp 2025-08-14T21:48:50.1986734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_types.h 2025-08-14T21:48:50.1991072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\dnnl_version.h 2025-08-14T21:48:50.1994824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\experiments-config.h 2025-08-14T21:48:50.1998520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16.h 2025-08-14T21:48:50.2002106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fxdiv.h 2025-08-14T21:48:50.2006038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ittnotify-zca.h 2025-08-14T21:48:50.2009824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ittnotify.h 2025-08-14T21:48:50.2015436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\jitprofiling.h 2025-08-14T21:48:50.2023686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\libittnotify.h 2025-08-14T21:48:50.2027440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\libshm.h 2025-08-14T21:48:50.2031274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\psimd.h 2025-08-14T21:48:50.2035234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pthreadpool.h 2025-08-14T21:48:50.2039795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\sleef.h 2025-08-14T21:48:50.2045403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\xnnpack.h 2025-08-14T21:48:50.2056047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\AccumulateType.h 2025-08-14T21:48:50.2059743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ArrayRef.h 2025-08-14T21:48:50.2063322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ATen.h 2025-08-14T21:48:50.2066936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\autocast_mode.h 2025-08-14T21:48:50.2070975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Backend.h 2025-08-14T21:48:50.2079271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Backtrace.h 2025-08-14T21:48:50.2082981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\BlasBackend.h 2025-08-14T21:48:50.2086706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CachedTensorUtils.h 2025-08-14T21:48:50.2090321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ceil_div.h 2025-08-14T21:48:50.2094095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\code_template.h 2025-08-14T21:48:50.2098272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CollapseDims.h 2025-08-14T21:48:50.2102158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradFunctions.h 2025-08-14T21:48:50.2105953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h 2025-08-14T21:48:50.2110105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h 2025-08-14T21:48:50.2114061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h 2025-08-14T21:48:50.2120327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradFunctions.h 2025-08-14T21:48:50.2123026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h 2025-08-14T21:48:50.2128136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h 2025-08-14T21:48:50.2133305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h 2025-08-14T21:48:50.2140953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Config.h 2025-08-14T21:48:50.2145840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Context.h 2025-08-14T21:48:50.2148766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpp_custom_type_hack.h 2025-08-14T21:48:50.2153089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUApplyUtils.h 2025-08-14T21:48:50.2158405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUFixedAllocator.h 2025-08-14T21:48:50.2161063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUFunctions.h 2025-08-14T21:48:50.2165112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUFunctions_inl.h 2025-08-14T21:48:50.2170945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CPUGeneratorImpl.h 2025-08-14T21:48:50.2174318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CUDAFunctions.h 2025-08-14T21:48:50.2178216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\CUDAFunctions_inl.h 2025-08-14T21:48:50.2187231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Device.h 2025-08-14T21:48:50.2191812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DeviceAccelerator.h 2025-08-14T21:48:50.2196224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DeviceGuard.h 2025-08-14T21:48:50.2199762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Dimname.h 2025-08-14T21:48:50.2203608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DimVector.h 2025-08-14T21:48:50.2208190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Dispatch.h 2025-08-14T21:48:50.2211378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Dispatch_v2.h 2025-08-14T21:48:50.2215586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\div_rtn.h 2025-08-14T21:48:50.2219266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DLConvertor.h 2025-08-14T21:48:50.2223251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\dlpack.h 2025-08-14T21:48:50.2227524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\DynamicLibrary.h 2025-08-14T21:48:50.2231089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\EmptyTensor.h 2025-08-14T21:48:50.2239381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ExpandBase.h 2025-08-14T21:48:50.2243057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ExpandUtils.h 2025-08-14T21:48:50.2247153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Formatting.h 2025-08-14T21:48:50.2250850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\FunctionalStorageImpl.h 2025-08-14T21:48:50.2254807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\FunctionalTensorWrapper.h 2025-08-14T21:48:50.2259075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Functions.h 2025-08-14T21:48:50.2264504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\FuncTorchTLS.h 2025-08-14T21:48:50.2267580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Generator.h 2025-08-14T21:48:50.2271811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\InferSize.h 2025-08-14T21:48:50.2275565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\InitialTensorOptions.h 2025-08-14T21:48:50.2284243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\jiterator_macros.h 2025-08-14T21:48:50.2288047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\jit_macros.h 2025-08-14T21:48:50.2291993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Layout.h 2025-08-14T21:48:50.2296746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyBatchedFallback.h 2025-08-14T21:48:50.2301185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyBatchedTensorImpl.h 2025-08-14T21:48:50.2305474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyVmapMode.h 2025-08-14T21:48:50.2360921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LegacyVmapTransforms.h 2025-08-14T21:48:50.2361560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\LinalgBackend.h 2025-08-14T21:48:50.2362132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MapAllocator.h 2025-08-14T21:48:50.2362694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MatrixRef.h 2025-08-14T21:48:50.2363240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MemoryOverlap.h 2025-08-14T21:48:50.2363795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MetaFunctions.h 2025-08-14T21:48:50.2364365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MetaFunctions_inl.h 2025-08-14T21:48:50.2367509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\MethodOperators.h 2025-08-14T21:48:50.2368086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NamedTensor.h 2025-08-14T21:48:50.2368664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NamedTensorUtils.h 2025-08-14T21:48:50.2369248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NativeFunctions.h 2025-08-14T21:48:50.2369850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NativeMetaFunctions.h 2025-08-14T21:48:50.2370652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NestedTensorImpl.h 2025-08-14T21:48:50.2381603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\NumericUtils.h 2025-08-14T21:48:50.2383197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\OpaqueTensorImpl.h 2025-08-14T21:48:50.2386857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Operators.h 2025-08-14T21:48:50.2393599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\OpMathType.h 2025-08-14T21:48:50.2395243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\PadNd.h 2025-08-14T21:48:50.2398881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Parallel-inl.h 2025-08-14T21:48:50.2402660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Parallel.h 2025-08-14T21:48:50.2407152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ParallelFuture.h 2025-08-14T21:48:50.2411021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ParallelNative.h 2025-08-14T21:48:50.2414768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ParallelOpenMP.h 2025-08-14T21:48:50.2423761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\PTThreadPool.h 2025-08-14T21:48:50.2427913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\PythonTorchFunctionTLS.h 2025-08-14T21:48:50.2432060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\record_function.h 2025-08-14T21:48:50.2436089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\RedispatchFunctions.h 2025-08-14T21:48:50.2452725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\RegistrationDeclarations.h 2025-08-14T21:48:50.2461240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ROCmFABackend.h 2025-08-14T21:48:50.2465192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SavedTensorHooks.h 2025-08-14T21:48:50.2469336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Scalar.h 2025-08-14T21:48:50.2473353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ScalarOps.h 2025-08-14T21:48:50.2477278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ScalarType.h 2025-08-14T21:48:50.2481116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SDPBackend.h 2025-08-14T21:48:50.2485485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SequenceNumber.h 2025-08-14T21:48:50.2489174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SmallVector.h 2025-08-14T21:48:50.2492923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SparseCsrTensorImpl.h 2025-08-14T21:48:50.2496668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SparseCsrTensorUtils.h 2025-08-14T21:48:50.2500669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\SparseTensorImpl.h 2025-08-14T21:48:50.2504290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Storage.h 2025-08-14T21:48:50.2507903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\StorageUtils.h 2025-08-14T21:48:50.2511756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Tensor.h 2025-08-14T21:48:50.2515337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorAccessor.h 2025-08-14T21:48:50.2524347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorGeometry.h 2025-08-14T21:48:50.2528719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorIndexing.h 2025-08-14T21:48:50.2532527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorIterator.h 2025-08-14T21:48:50.2536413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorIteratorInternal.h 2025-08-14T21:48:50.2540248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorMeta.h 2025-08-14T21:48:50.2543994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorNames.h 2025-08-14T21:48:50.2547895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorOperators.h 2025-08-14T21:48:50.2552356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorOptions.h 2025-08-14T21:48:50.2556356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorSubclassLikeUtils.h 2025-08-14T21:48:50.2560350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TensorUtils.h 2025-08-14T21:48:50.2564171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ThreadLocalPythonObjects.h 2025-08-14T21:48:50.2567997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ThreadLocalState.h 2025-08-14T21:48:50.2571655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TracerMode.h 2025-08-14T21:48:50.2575346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\TypeDefault.h 2025-08-14T21:48:50.2579024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Utils.h 2025-08-14T21:48:50.2582654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\Version.h 2025-08-14T21:48:50.2586363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\VmapGeneratedPlumbing.h 2025-08-14T21:48:50.2598547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\WrapDimUtils.h 2025-08-14T21:48:50.2602437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\WrapDimUtilsMulti.h 2025-08-14T21:48:50.2611558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\alias_info.h 2025-08-14T21:48:50.2615255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Array.h 2025-08-14T21:48:50.2618880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATenGeneral.h 2025-08-14T21:48:50.2622537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATenOpList.h 2025-08-14T21:48:50.2631014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATen_fwd.h 2025-08-14T21:48:50.2634785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\aten_interned_strings.h 2025-08-14T21:48:50.2639100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ATen_pch.h 2025-08-14T21:48:50.2642718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Backtrace.h 2025-08-14T21:48:50.2646503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\blob.h 2025-08-14T21:48:50.2650306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\builtin_function.h 2025-08-14T21:48:50.2654088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\CachingHostAllocator.h 2025-08-14T21:48:50.2658228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\CheckMemoryFormat.h 2025-08-14T21:48:50.2670552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\class_type.h 2025-08-14T21:48:50.2671412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\custom_class.h 2025-08-14T21:48:50.2676401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DeprecatedTypeProperties.h 2025-08-14T21:48:50.2680690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DeprecatedTypePropertiesRegistry.h 2025-08-14T21:48:50.2684552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Dict.h 2025-08-14T21:48:50.2688492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Dict_inl.h 2025-08-14T21:48:50.2692854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Dimname.h 2025-08-14T21:48:50.2696900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DimVector.h 2025-08-14T21:48:50.2701567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\DistributionsHelper.h 2025-08-14T21:48:50.2706092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dynamic_type.h 2025-08-14T21:48:50.2714414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\enum_tag.h 2025-08-14T21:48:50.2718733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\enum_type.h 2025-08-14T21:48:50.2722446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Formatting.h 2025-08-14T21:48:50.2726505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\function.h 2025-08-14T21:48:50.2731111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\functional.h 2025-08-14T21:48:50.2734872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\function_schema.h 2025-08-14T21:48:50.2739026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\function_schema_inl.h 2025-08-14T21:48:50.2743771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Generator.h 2025-08-14T21:48:50.2747348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\GeneratorForPrivateuseone.h 2025-08-14T21:48:50.2751543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\grad_mode.h 2025-08-14T21:48:50.2755890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\IListRef.h 2025-08-14T21:48:50.2764011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\IListRef_inl.h 2025-08-14T21:48:50.2767917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\interned_strings.h 2025-08-14T21:48:50.2771876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\interned_strings_class.h 2025-08-14T21:48:50.2775756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ivalue.h 2025-08-14T21:48:50.2781363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ivalue_inl.h 2025-08-14T21:48:50.2783888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ivalue_to.h 2025-08-14T21:48:50.2788045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\jit_type.h 2025-08-14T21:48:50.2793979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\jit_type_base.h 2025-08-14T21:48:50.2796375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\LegacyTypeDispatch.h 2025-08-14T21:48:50.2800441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\List.h 2025-08-14T21:48:50.2804077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\List_inl.h 2025-08-14T21:48:50.2807909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\MT19937RNGEngine.h 2025-08-14T21:48:50.2856817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\NamedTensor.h 2025-08-14T21:48:50.2857668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\NestedIntSymNodeImpl.h 2025-08-14T21:48:50.2858310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\operator_name.h 2025-08-14T21:48:50.2858574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\PhiloxRNGEngine.h 2025-08-14T21:48:50.2858845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\PythonFallbackKernel.h 2025-08-14T21:48:50.2859173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\PythonOpRegistrationTrampoline.h 2025-08-14T21:48:50.2859523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\qualified_name.h 2025-08-14T21:48:50.2859778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\QuantizerBase.h 2025-08-14T21:48:50.2859994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Range.h 2025-08-14T21:48:50.2860216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Reduction.h 2025-08-14T21:48:50.2866784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\rref_interface.h 2025-08-14T21:48:50.2871096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Scalar.h 2025-08-14T21:48:50.2874787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\ScalarType.h 2025-08-14T21:48:50.2878851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\stack.h 2025-08-14T21:48:50.2882412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\symbol.h 2025-08-14T21:48:50.2885956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Tensor.h 2025-08-14T21:48:50.2889812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TensorAccessor.h 2025-08-14T21:48:50.2893483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TensorBase.h 2025-08-14T21:48:50.2897241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TensorBody.h 2025-08-14T21:48:50.2902450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TorchDispatchUtils.h 2025-08-14T21:48:50.2907311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\TransformationHelper.h 2025-08-14T21:48:50.2919434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\typeid.h 2025-08-14T21:48:50.2923110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\type_factory.h 2025-08-14T21:48:50.2927080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\type_ptr.h 2025-08-14T21:48:50.2933436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\UndefinedTensorImpl.h 2025-08-14T21:48:50.2934898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\UnsafeFromTH.h 2025-08-14T21:48:50.2938740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\VariableHooksInterface.h 2025-08-14T21:48:50.2943169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Variadic.h 2025-08-14T21:48:50.2946823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\Vitals.h 2025-08-14T21:48:50.2954600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\BoxedKernel.h 2025-08-14T21:48:50.2958328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\BoxedKernel_impl.h 2025-08-14T21:48:50.2962323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\KernelFunction.h 2025-08-14T21:48:50.2966014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\KernelFunction_impl.h 2025-08-14T21:48:50.2976718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\OperatorKernel.h 2025-08-14T21:48:50.2986732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\boxing.h 2025-08-14T21:48:50.2988178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\make_boxed_from_unboxed_functor.h 2025-08-14T21:48:50.2992014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\test_helpers.h 2025-08-14T21:48:50.2995657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\WrapFunctionIntoFunctor.h 2025-08-14T21:48:50.3004009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\boxing\impl\WrapFunctionIntoRuntimeFunctor.h 2025-08-14T21:48:50.3012517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\CppSignature.h 2025-08-14T21:48:50.3016188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\Dispatcher.h 2025-08-14T21:48:50.3020078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\DispatchKeyExtractor.h 2025-08-14T21:48:50.3024301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\ObservedOperators.h 2025-08-14T21:48:50.3032764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\OperatorEntry.h 2025-08-14T21:48:50.3038619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\OperatorOptions.h 2025-08-14T21:48:50.3063573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\dispatch\RegistrationHandleRAII.h 2025-08-14T21:48:50.3072465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\adaption.h 2025-08-14T21:48:50.3076195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\infer_schema.h 2025-08-14T21:48:50.3079904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\op_allowlist.h 2025-08-14T21:48:50.3083492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\core\op_registration\op_registration.h 2025-08-14T21:48:50.3097819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\FlushDenormal.h 2025-08-14T21:48:50.3101478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\Utils.h 2025-08-14T21:48:50.3105207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vml.h 2025-08-14T21:48:50.3112680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\functional.h 2025-08-14T21:48:50.3116375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\functional_base.h 2025-08-14T21:48:50.3120105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\functional_bfloat16.h 2025-08-14T21:48:50.3123816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\intrinsics.h 2025-08-14T21:48:50.3132641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec.h 2025-08-14T21:48:50.3136391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_base.h 2025-08-14T21:48:50.3140112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_convert.h 2025-08-14T21:48:50.3143851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_half.h 2025-08-14T21:48:50.3147575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_mask.h 2025-08-14T21:48:50.3151193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_n.h 2025-08-14T21:48:50.3155210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec_quant.h 2025-08-14T21:48:50.3163076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\sve_helper.h 2025-08-14T21:48:50.3167796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_bfloat16.h 2025-08-14T21:48:50.3171711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_common_sve.h 2025-08-14T21:48:50.3176040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_double.h 2025-08-14T21:48:50.3184338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_float.h 2025-08-14T21:48:50.3188694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_int.h 2025-08-14T21:48:50.3193289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\sve\vec_qint.h 2025-08-14T21:48:50.3201243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128.h 2025-08-14T21:48:50.3204946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_bfloat16_neon.h 2025-08-14T21:48:50.3208700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_convert.h 2025-08-14T21:48:50.3212494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_float_neon.h 2025-08-14T21:48:50.3220297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_half_neon.h 2025-08-14T21:48:50.3224252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec128\vec128_reduced_precision_common_neon.h 2025-08-14T21:48:50.3232961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\missing_vld1_neon.h 2025-08-14T21:48:50.3236542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\missing_vst1_neon.h 2025-08-14T21:48:50.3240262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256.h 2025-08-14T21:48:50.3243744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_16bit_float.h 2025-08-14T21:48:50.3251974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_bfloat16.h 2025-08-14T21:48:50.3255737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_complex_double.h 2025-08-14T21:48:50.3259483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_complex_float.h 2025-08-14T21:48:50.3263419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_convert.h 2025-08-14T21:48:50.3267337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_double.h 2025-08-14T21:48:50.3271168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_float.h 2025-08-14T21:48:50.3275050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_half.h 2025-08-14T21:48:50.3278741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_int.h 2025-08-14T21:48:50.3282845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_mask.h 2025-08-14T21:48:50.3286609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vec256_qint.h 2025-08-14T21:48:50.3294963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_bfloat16_vsx.h 2025-08-14T21:48:50.3299056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_common_vsx.h 2025-08-14T21:48:50.3303410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_double_vsx.h 2025-08-14T21:48:50.3312012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_complex_float_vsx.h 2025-08-14T21:48:50.3315896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_double_vsx.h 2025-08-14T21:48:50.3319686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_float_vsx.h 2025-08-14T21:48:50.3323485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int16_vsx.h 2025-08-14T21:48:50.3327300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int32_vsx.h 2025-08-14T21:48:50.3331100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_int64_vsx.h 2025-08-14T21:48:50.3335035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint32_vsx.h 2025-08-14T21:48:50.3338878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_qint8_vsx.h 2025-08-14T21:48:50.3342805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vec256_quint8_vsx.h 2025-08-14T21:48:50.3346653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\vsx\vsx_helpers.h 2025-08-14T21:48:50.3354870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec256\zarch\vec256_zarch.h 2025-08-14T21:48:50.3363518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512.h 2025-08-14T21:48:50.3367135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_bfloat16.h 2025-08-14T21:48:50.3371221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_complex_double.h 2025-08-14T21:48:50.3375042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_complex_float.h 2025-08-14T21:48:50.3383739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_convert.h 2025-08-14T21:48:50.3387637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_double.h 2025-08-14T21:48:50.3391369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_float.h 2025-08-14T21:48:50.3471929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_float8.h 2025-08-14T21:48:50.3472209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_int.h 2025-08-14T21:48:50.3472486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_mask.h 2025-08-14T21:48:50.3472768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cpu\vec\vec512\vec512_qint.h 2025-08-14T21:48:50.3473023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ApplyGridUtils.cuh 2025-08-14T21:48:50.3473257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\AsmUtils.cuh 2025-08-14T21:48:50.3473523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ATenCUDAGeneral.h 2025-08-14T21:48:50.3473751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\Atomic.cuh 2025-08-14T21:48:50.3474018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CachingHostAllocator.h 2025-08-14T21:48:50.3474294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub-RadixSortPairs.cuh 2025-08-14T21:48:50.3474518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub.cuh 2025-08-14T21:48:50.3474727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub.h 2025-08-14T21:48:50.3474976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\cub_definitions.cuh 2025-08-14T21:48:50.3475230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAApplyUtils.cuh 2025-08-14T21:48:50.3475450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDABlas.h 2025-08-14T21:48:50.3475678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAContext.h 2025-08-14T21:48:50.3478132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAContextLight.h 2025-08-14T21:48:50.3480443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDADataType.h 2025-08-14T21:48:50.3484454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDADevice.h 2025-08-14T21:48:50.3487959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAEvent.h 2025-08-14T21:48:50.3491997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAGeneratorImpl.h 2025-08-14T21:48:50.3496960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAGraph.h 2025-08-14T21:48:50.3499943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAGraphsUtils.cuh 2025-08-14T21:48:50.3504004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDASparse.h 2025-08-14T21:48:50.3508862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDASparseBlas.h 2025-08-14T21:48:50.3516402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDASparseDescriptors.h 2025-08-14T21:48:50.3519976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDATensorMethods.cuh 2025-08-14T21:48:50.3523843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\CUDAUtils.h 2025-08-14T21:48:50.3527661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\DeviceUtils.cuh 2025-08-14T21:48:50.3531534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\EmptyTensor.h 2025-08-14T21:48:50.3535526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\Exceptions.h 2025-08-14T21:48:50.3539197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\jiterator.h 2025-08-14T21:48:50.3542932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\jiterator_impl.h 2025-08-14T21:48:50.3546649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\llvm_jit_strings.h 2025-08-14T21:48:50.3555088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\NumericLimits.cuh 2025-08-14T21:48:50.3558987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PeerToPeerAccess.h 2025-08-14T21:48:50.3562616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PhiloxCudaState.h 2025-08-14T21:48:50.3566318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PhiloxUtils.cuh 2025-08-14T21:48:50.3570250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\PinnedMemoryAllocator.h 2025-08-14T21:48:50.3573975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ScanUtils.cuh 2025-08-14T21:48:50.3577670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\Sleep.h 2025-08-14T21:48:50.3581991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\ThrustAllocator.h 2025-08-14T21:48:50.3590664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\CUDAHooks.h 2025-08-14T21:48:50.3594532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\DeviceThreadHandles.h 2025-08-14T21:48:50.3598167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\IndexUtils.cuh 2025-08-14T21:48:50.3601850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\IntegerDivider.cuh 2025-08-14T21:48:50.3611342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\KernelUtils.h 2025-08-14T21:48:50.3615072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\LazyNVRTC.h 2025-08-14T21:48:50.3618791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\OffsetCalculator.cuh 2025-08-14T21:48:50.3622482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\PhiloxCudaStateRaw.cuh 2025-08-14T21:48:50.3626298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\TensorInfo.cuh 2025-08-14T21:48:50.3630058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\detail\UnpackRaw.cuh 2025-08-14T21:48:50.3638804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\GemmCommon.h 2025-08-14T21:48:50.3642711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\GemmHipblaslt.h 2025-08-14T21:48:50.3646568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\GemmRocblas.h 2025-08-14T21:48:50.3650176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\StreamTimer.h 2025-08-14T21:48:50.3658427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\Tunable.h 2025-08-14T21:48:50.3662013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\TunableGemm.h 2025-08-14T21:48:50.3665654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cuda\tunable\TunableOp.h 2025-08-14T21:48:50.3674431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\cudnn-wrapper.h 2025-08-14T21:48:50.3678141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Descriptors.h 2025-08-14T21:48:50.3681722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Handle.h 2025-08-14T21:48:50.3685483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Handles.h 2025-08-14T21:48:50.3688897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Types.h 2025-08-14T21:48:50.3697048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\cudnn\Utils.h 2025-08-14T21:48:50.3704934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\AcceleratorHooksInterface.h 2025-08-14T21:48:50.3708984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\CUDAHooksInterface.h 2025-08-14T21:48:50.3712606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\FunctionTraits.h 2025-08-14T21:48:50.3720661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\HIPHooksInterface.h 2025-08-14T21:48:50.3724378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\HPUHooksInterface.h 2025-08-14T21:48:50.3728209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\IPUHooksInterface.h 2025-08-14T21:48:50.3732962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\MAIAHooksInterface.h 2025-08-14T21:48:50.3736163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\MPSHooksInterface.h 2025-08-14T21:48:50.3740034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\MTIAHooksInterface.h 2025-08-14T21:48:50.3745480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\PrivateUse1HooksInterface.h 2025-08-14T21:48:50.3747627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\detail\XPUHooksInterface.h 2025-08-14T21:48:50.3757638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\ADInterpreters.h 2025-08-14T21:48:50.3761162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchedFallback.h 2025-08-14T21:48:50.3765169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchedTensorImpl.h 2025-08-14T21:48:50.3773425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchingMetaprogramming.h 2025-08-14T21:48:50.3777715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\BatchRulesHelper.h 2025-08-14T21:48:50.3781461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\DynamicLayer.h 2025-08-14T21:48:50.3785440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\FunctionalizeInterpreter.h 2025-08-14T21:48:50.3790447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\Interpreter.h 2025-08-14T21:48:50.3793685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\LegacyVmapTransforms.h 2025-08-14T21:48:50.3797752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\Macros.h 2025-08-14T21:48:50.3802947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\PlumbingHelper.h 2025-08-14T21:48:50.3805368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\TensorWrapper.h 2025-08-14T21:48:50.3809340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\functorch\VmapInterpreter.h 2025-08-14T21:48:50.3884149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPAllocatorMasqueradingAsCUDA.h 2025-08-14T21:48:50.3884889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPCachingAllocatorMasqueradingAsCUDA.h 2025-08-14T21:48:50.3885250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPGuardImplMasqueradingAsCUDA.h 2025-08-14T21:48:50.3885596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\hip\impl\HIPStreamMasqueradingAsCUDA.h 2025-08-14T21:48:50.3885835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\metal\Context.h 2025-08-14T21:48:50.3886079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Descriptors.h 2025-08-14T21:48:50.3886313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Exceptions.h 2025-08-14T21:48:50.3886538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Handle.h 2025-08-14T21:48:50.3886799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\miopen-wrapper.h 2025-08-14T21:48:50.3887013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Types.h 2025-08-14T21:48:50.3887229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\miopen\Utils.h 2025-08-14T21:48:50.3892391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\EmptyTensor.h 2025-08-14T21:48:50.3897170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\IndexKernels.h 2025-08-14T21:48:50.3900567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSAllocator.h 2025-08-14T21:48:50.3904649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSAllocatorInterface.h 2025-08-14T21:48:50.3915778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSDevice.h 2025-08-14T21:48:50.3918135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSEvent.h 2025-08-14T21:48:50.3921968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSGeneratorImpl.h 2025-08-14T21:48:50.3925784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSGuardImpl.h 2025-08-14T21:48:50.3929132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSHooks.h 2025-08-14T21:48:50.3934034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSProfiler.h 2025-08-14T21:48:50.3937891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\mps\MPSStream.h 2025-08-14T21:48:50.3946880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Activation.h 2025-08-14T21:48:50.3950703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\AdaptivePooling.h 2025-08-14T21:48:50.3954585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\AmpKernels.h 2025-08-14T21:48:50.3959934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\BatchLinearAlgebra.h 2025-08-14T21:48:50.3967661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\batch_norm.h 2025-08-14T21:48:50.3971469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\BinaryOps.h 2025-08-14T21:48:50.3976120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\BucketizationUtils.h 2025-08-14T21:48:50.3978972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CanUse32BitIndexMath.h 2025-08-14T21:48:50.3982675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ComplexHelper.h 2025-08-14T21:48:50.3986373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CompositeRandomAccessor.h 2025-08-14T21:48:50.3990292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CompositeRandomAccessorCommon.h 2025-08-14T21:48:50.3994425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ConvolutionMM3d.h 2025-08-14T21:48:50.3998141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ConvUtils.h 2025-08-14T21:48:50.4001909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Copy.h 2025-08-14T21:48:50.4005580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CPUBlas.h 2025-08-14T21:48:50.4009172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\CPUFallback.h 2025-08-14T21:48:50.4013091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Cross.h 2025-08-14T21:48:50.4016895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\DilatedConvolutionUtils.h 2025-08-14T21:48:50.4020572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\DispatchStub.h 2025-08-14T21:48:50.4024296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Distance.h 2025-08-14T21:48:50.4028533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Distributions.h 2025-08-14T21:48:50.4038106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\DistributionTemplates.h 2025-08-14T21:48:50.4041847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\EmbeddingBag.h 2025-08-14T21:48:50.4045518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Fill.h 2025-08-14T21:48:50.4049118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ForeachUtils.h 2025-08-14T21:48:50.4052915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FractionalMaxPooling.h 2025-08-14T21:48:50.4056670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FunctionOfAMatrixUtils.h 2025-08-14T21:48:50.4060437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FusedAdagrad.h 2025-08-14T21:48:50.4064400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FusedAdam.h 2025-08-14T21:48:50.4068486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\FusedSGD.h 2025-08-14T21:48:50.4072151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Gelu.h 2025-08-14T21:48:50.4075809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\GridSampler.h 2025-08-14T21:48:50.4084966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\GridSamplerUtils.h 2025-08-14T21:48:50.4088727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\group_norm.h 2025-08-14T21:48:50.4092485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Histogram.h 2025-08-14T21:48:50.4096173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\im2col.h 2025-08-14T21:48:50.4099755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\im2col_shape_check.h 2025-08-14T21:48:50.4103578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\IndexingUtils.h 2025-08-14T21:48:50.4107487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\IndexKernel.h 2025-08-14T21:48:50.4111340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\layer_norm.h 2025-08-14T21:48:50.4115707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Lerp.h 2025-08-14T21:48:50.4120201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\LinearAlgebra.h 2025-08-14T21:48:50.4123343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\LinearAlgebraUtils.h 2025-08-14T21:48:50.4132996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\LossMulti.h 2025-08-14T21:48:50.4136722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Math.h 2025-08-14T21:48:50.4141736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\MathBitFallThroughLists.h 2025-08-14T21:48:50.4145684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\MathBitsFallback.h 2025-08-14T21:48:50.4151341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\MaxPooling.h 2025-08-14T21:48:50.4154452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\NonEmptyUtils.h 2025-08-14T21:48:50.4158323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\NonSymbolicBC.h 2025-08-14T21:48:50.4163844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Normalization.h 2025-08-14T21:48:50.4166414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Padding.h 2025-08-14T21:48:50.4170305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\PixelShuffle.h 2025-08-14T21:48:50.4180500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\PointwiseOps.h 2025-08-14T21:48:50.4184670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Pool.h 2025-08-14T21:48:50.4188985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Pow.h 2025-08-14T21:48:50.4192600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\RangeFactories.h 2025-08-14T21:48:50.4226688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\RangeUtils.h 2025-08-14T21:48:50.4231558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReduceAllOps.h 2025-08-14T21:48:50.4234717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReduceOps.h 2025-08-14T21:48:50.4238941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReduceOpsUtils.h 2025-08-14T21:48:50.4242627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ReductionType.h 2025-08-14T21:48:50.4246678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Repeat.h 2025-08-14T21:48:50.4251251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Resize.h 2025-08-14T21:48:50.4254181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ResizeCommon.h 2025-08-14T21:48:50.4270216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\RNN.h 2025-08-14T21:48:50.4272984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ScatterGatherChecks.h 2025-08-14T21:48:50.4277088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SegmentReduce.h 2025-08-14T21:48:50.4281888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SharedReduceOps.h 2025-08-14T21:48:50.4285182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SobolEngineOpsUtils.h 2025-08-14T21:48:50.4289383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Sorting.h 2025-08-14T21:48:50.4292960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SortingUtils.h 2025-08-14T21:48:50.4297190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SparseTensorUtils.h 2025-08-14T21:48:50.4301602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\SpectralOpsUtils.h 2025-08-14T21:48:50.4305176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\StridedRandomAccessor.h 2025-08-14T21:48:50.4315917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorAdvancedIndexing.h 2025-08-14T21:48:50.4320646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorAdvancedIndexingUtils.h 2025-08-14T21:48:50.4324327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorCompare.h 2025-08-14T21:48:50.4333803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorConversions.h 2025-08-14T21:48:50.4334069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorDimApply.h 2025-08-14T21:48:50.4337940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorFactories.h 2025-08-14T21:48:50.4350580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorIterator.h 2025-08-14T21:48:50.4357564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorIteratorDynamicCasting.h 2025-08-14T21:48:50.4357846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorProperties.h 2025-08-14T21:48:50.4364740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorShape.h 2025-08-14T21:48:50.4367701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TensorTransformations.h 2025-08-14T21:48:50.4372050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TopKImpl.h 2025-08-14T21:48:50.4375770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TransposeType.h 2025-08-14T21:48:50.4380145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TriangularOpsUtils.h 2025-08-14T21:48:50.4384051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\TypeProperties.h 2025-08-14T21:48:50.4390104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\UnaryOps.h 2025-08-14T21:48:50.4392103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Unfold2d.h 2025-08-14T21:48:50.4395740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\Unfold3d.h 2025-08-14T21:48:50.4399398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\UnfoldBackward.h 2025-08-14T21:48:50.4403187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\UpSample.h 2025-08-14T21:48:50.4407406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\verbose_wrapper.h 2025-08-14T21:48:50.4411196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\vol2col.h 2025-08-14T21:48:50.4427675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ao_sparse\quantized\cpu\fbgemm_utils.h 2025-08-14T21:48:50.4433207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ao_sparse\quantized\cpu\packed_params.h 2025-08-14T21:48:50.4435559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\ao_sparse\quantized\cpu\qnnpack_utils.h 2025-08-14T21:48:50.4445489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\AtomicAddFloat.h 2025-08-14T21:48:50.4449210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\avx_mathfun.h 2025-08-14T21:48:50.4452840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\CatKernel.h 2025-08-14T21:48:50.4456564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\ChannelShuffleKernel.h 2025-08-14T21:48:50.4468438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\CopyKernel.h 2025-08-14T21:48:50.4472676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\DepthwiseConvKernel.h 2025-08-14T21:48:50.4477308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\DistributionTemplates.h 2025-08-14T21:48:50.4481049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Elu.h 2025-08-14T21:48:50.4484676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Gelu.h 2025-08-14T21:48:50.4488520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\GridSamplerKernel.h 2025-08-14T21:48:50.4492759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\IndexKernelUtils.h 2025-08-14T21:48:50.4496475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Intrinsics.h 2025-08-14T21:48:50.4501021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\int_mm_kernel.h 2025-08-14T21:48:50.4504820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\IsContiguous.h 2025-08-14T21:48:50.4508742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\LogAddExp.h 2025-08-14T21:48:50.4512577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\LogSoftmaxKernelImpl.h 2025-08-14T21:48:50.4516233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Loops.h 2025-08-14T21:48:50.4519897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\MaxUnpoolKernel.h 2025-08-14T21:48:50.4523617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\mixed_data_type.h 2025-08-14T21:48:50.4527368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\moments_utils.h 2025-08-14T21:48:50.4538889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\PixelShuffleKernel.h 2025-08-14T21:48:50.4542662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\Reduce.h 2025-08-14T21:48:50.4546513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.h 2025-08-14T21:48:50.4550494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\ReduceUtils.h 2025-08-14T21:48:50.4554291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SampledAddmmKernel.h 2025-08-14T21:48:50.4558120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SerialStackImpl.h 2025-08-14T21:48:50.4561847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SoftmaxKernel.h 2025-08-14T21:48:50.4565580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\SpmmReduceKernel.h 2025-08-14T21:48:50.4569293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\StackKernel.h 2025-08-14T21:48:50.4573142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\UpSampleKernelAVXAntialias.h 2025-08-14T21:48:50.4583723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\utils.h 2025-08-14T21:48:50.4587568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\WeightNormKernel.h 2025-08-14T21:48:50.4591355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cpu\zmath.h 2025-08-14T21:48:50.4600542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Activation.h 2025-08-14T21:48:50.4604214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\BinaryInternal.h 2025-08-14T21:48:50.4607873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\block_reduce.cuh 2025-08-14T21:48:50.4611598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CompositeRandomAccessor.h 2025-08-14T21:48:50.4622869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Copy.h 2025-08-14T21:48:50.4626511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CUDAJitLoops.cuh 2025-08-14T21:48:50.4630484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CUDALoops.cuh 2025-08-14T21:48:50.4636602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CuFFTPlanCache.h 2025-08-14T21:48:50.4638807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\CuFFTUtils.h 2025-08-14T21:48:50.4643362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\cutlass_common.cuh 2025-08-14T21:48:50.4646485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\DeviceSqrt.cuh 2025-08-14T21:48:50.4650418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Distributions.h 2025-08-14T21:48:50.4655784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\DistributionTemplates.h 2025-08-14T21:48:50.4658254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\EmbeddingBackwardKernel.cuh 2025-08-14T21:48:50.4662465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ForeachFunctors.cuh 2025-08-14T21:48:50.4667313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ForeachMinMaxFunctors.cuh 2025-08-14T21:48:50.4670451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adagrad_impl.cuh 2025-08-14T21:48:50.4674945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adagrad_utils.cuh 2025-08-14T21:48:50.4678941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adamw_amsgrad_impl.cuh 2025-08-14T21:48:50.4690349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adamw_impl.cuh 2025-08-14T21:48:50.4694508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adam_amsgrad_impl.cuh 2025-08-14T21:48:50.4699545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adam_impl.cuh 2025-08-14T21:48:50.4702587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\fused_adam_utils.cuh 2025-08-14T21:48:50.4706662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GridSampler.cuh 2025-08-14T21:48:50.4712014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GridSampler.h 2025-08-14T21:48:50.4714905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GroupMM.h 2025-08-14T21:48:50.4718938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\GroupMMCommon.cuh 2025-08-14T21:48:50.4723154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\im2col.cuh 2025-08-14T21:48:50.4734281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\IndexKernel.h 2025-08-14T21:48:50.4738845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\IndexKernelUtils.h 2025-08-14T21:48:50.4743515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\JitLoops.cuh 2025-08-14T21:48:50.4746933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\jit_utils.h 2025-08-14T21:48:50.4751401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\KernelUtils.cuh 2025-08-14T21:48:50.4755906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\LaunchUtils.h 2025-08-14T21:48:50.4759196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Loops.cuh 2025-08-14T21:48:50.4763033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Math.cuh 2025-08-14T21:48:50.4768370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\MemoryAccess.cuh 2025-08-14T21:48:50.4771827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\MiscUtils.h 2025-08-14T21:48:50.4775818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\MultiTensorApply.cuh 2025-08-14T21:48:50.4787989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Normalization.cuh 2025-08-14T21:48:50.4792271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\PersistentSoftmax.cuh 2025-08-14T21:48:50.4796355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Pow.cuh 2025-08-14T21:48:50.4800386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Randperm.cuh 2025-08-14T21:48:50.4803911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Reduce.cuh 2025-08-14T21:48:50.4807894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ReduceOps.h 2025-08-14T21:48:50.4812590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\reduction_template.cuh 2025-08-14T21:48:50.4815849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Resize.h 2025-08-14T21:48:50.4819779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\RowwiseScaledMM.h 2025-08-14T21:48:50.4831488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ScaledGroupMM.h 2025-08-14T21:48:50.4847830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ScanKernels.h 2025-08-14T21:48:50.4850475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\ScanUtils.cuh 2025-08-14T21:48:50.4851098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Sort.h 2025-08-14T21:48:50.4851677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\Sorting.h 2025-08-14T21:48:50.4853737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortingCommon.cuh 2025-08-14T21:48:50.4860729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortingRadixSelect.cuh 2025-08-14T21:48:50.4862484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortStable.h 2025-08-14T21:48:50.4867673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\SortUtils.cuh 2025-08-14T21:48:50.4870994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\TensorModeKernel.cuh 2025-08-14T21:48:50.4875353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\TensorModeKernel.h 2025-08-14T21:48:50.4881407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\TensorTopK.h 2025-08-14T21:48:50.4883892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\thread_constants.h 2025-08-14T21:48:50.4903406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\UniqueCub.cuh 2025-08-14T21:48:50.4907176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\UpSample.cuh 2025-08-14T21:48:50.4911230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\cuda\vol2col.cuh 2025-08-14T21:48:50.4922110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_bgemm.h 2025-08-14T21:48:50.4925826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_gemm.h 2025-08-14T21:48:50.4929606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_gemm_template.h 2025-08-14T21:48:50.4933826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\ck_types.h 2025-08-14T21:48:50.4949270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_collection.h 2025-08-14T21:48:50.4953728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\hip\bgemm_kernels\bgemm_kernel_template.h 2025-08-14T21:48:50.4962289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\kleidiai\kai_kernels.h 2025-08-14T21:48:50.4965997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\kleidiai\kai_pack.h 2025-08-14T21:48:50.4969679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\kleidiai\kai_ukernel_interface.h 2025-08-14T21:48:50.4982102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\Conv.h 2025-08-14T21:48:50.4985163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\FusionUtils.h 2025-08-14T21:48:50.4993374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\Attr.h 2025-08-14T21:48:50.4996384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\DnnlExt.h 2025-08-14T21:48:50.4999837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\LRUCache.h 2025-08-14T21:48:50.5003510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\oneDNN.h 2025-08-14T21:48:50.5007149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\oneDNNContext.h 2025-08-14T21:48:50.5011020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mkldnn\xpu\detail\Utils.h 2025-08-14T21:48:50.5027471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\Copy.h 2025-08-14T21:48:50.5031239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MetalShaderLibrary.h 2025-08-14T21:48:50.5035092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MPSGraphSequoiaOps.h 2025-08-14T21:48:50.5038790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MPSGraphSonomaOps.h 2025-08-14T21:48:50.5051061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\MPSGraphVenturaOps.h 2025-08-14T21:48:50.5054838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\OperationUtils.h 2025-08-14T21:48:50.5058613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\TensorFactory.h 2025-08-14T21:48:50.5066126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\kernels\Pooling.h 2025-08-14T21:48:50.5070302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\kernels\UpSample.h 2025-08-14T21:48:50.5077766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\BinaryKernel.h 2025-08-14T21:48:50.5081753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamAmsgradKernelImpl.h 2025-08-14T21:48:50.5085437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamKernelImpl.h 2025-08-14T21:48:50.5098177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamWAmsgradKernelImpl.h 2025-08-14T21:48:50.5102465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\FusedAdamWKernelImpl.h 2025-08-14T21:48:50.5106765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mps\operations\MultiTensorApply.h 2025-08-14T21:48:50.5115003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\mtia\EmptyTensor.h 2025-08-14T21:48:50.5123373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorBinaryOps.h 2025-08-14T21:48:50.5127245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorMath.h 2025-08-14T21:48:50.5132702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorTransformerFunctions.h 2025-08-14T21:48:50.5144133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorTransformerUtils.h 2025-08-14T21:48:50.5147460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\nested\NestedTensorUtils.h 2025-08-14T21:48:50.5157711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\AffineQuantizer.h 2025-08-14T21:48:50.5160505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\AffineQuantizerBase.h 2025-08-14T21:48:50.5164389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\ConvUtils.h 2025-08-14T21:48:50.5176894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\Copy.h 2025-08-14T21:48:50.5180676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\FakeQuantAffine.h 2025-08-14T21:48:50.5184610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\IndexKernel.h 2025-08-14T21:48:50.5189141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\library.h 2025-08-14T21:48:50.5192640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\PackedParams.h 2025-08-14T21:48:50.5202097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\ACLUtils.h 2025-08-14T21:48:50.5218009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\BinaryOps.h 2025-08-14T21:48:50.5218875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\conv_serialization.h 2025-08-14T21:48:50.5219816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\EmbeddingPackedParams.h 2025-08-14T21:48:50.5225305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\fbgemm_utils.h 2025-08-14T21:48:50.5229534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\init_qnnpack.h 2025-08-14T21:48:50.5233451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\OnednnUtils.h 2025-08-14T21:48:50.5237180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qconv.h 2025-08-14T21:48:50.5240905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qembeddingbag.h 2025-08-14T21:48:50.5244644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qembeddingbag_prepack.h 2025-08-14T21:48:50.5248753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\qlinear.h 2025-08-14T21:48:50.5253393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\QnnpackUtils.h 2025-08-14T21:48:50.5256359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\QuantizedOps.h 2025-08-14T21:48:50.5260623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\QuantUtils.h 2025-08-14T21:48:50.5265706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\RuyUtils.h 2025-08-14T21:48:50.5268104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cpu\XnnpackUtils.h 2025-08-14T21:48:50.5278129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\quantized\cudnn\utils.h 2025-08-14T21:48:50.5286322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\attention.h 2025-08-14T21:48:50.5290172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\sdp_utils.h 2025-08-14T21:48:50.5293987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\sdp_utils_cpp.h 2025-08-14T21:48:50.5310277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\sdp_utils.h 2025-08-14T21:48:50.5317810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\flash_attn\flash_api.h 2025-08-14T21:48:50.5321546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\flash_attn\static_switch.h 2025-08-14T21:48:50.5329740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\debug_utils.h 2025-08-14T21:48:50.5333793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm_kernel_utils.h 2025-08-14T21:48:50.5348940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_backward.h 2025-08-14T21:48:50.5353235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernel_forward.h 2025-08-14T21:48:50.5355859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\pytorch_utils.h 2025-08-14T21:48:50.5366638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_pipelined.h 2025-08-14T21:48:50.5368897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_rescale_output.h 2025-08-14T21:48:50.5377152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue\epilogue_thread_apply_logsumexp.h 2025-08-14T21:48:50.5393593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma.h 2025-08-14T21:48:50.5394841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_base.h 2025-08-14T21:48:50.5398603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_multistage.h 2025-08-14T21:48:50.5402577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\custom_mma_pipelined.h 2025-08-14T21:48:50.5424656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\find_default_mma.h 2025-08-14T21:48:50.5425690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_accum_lambda_iterator.h 2025-08-14T21:48:50.5426693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm\mma_from_smem.h 2025-08-14T21:48:50.5440271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\default_warp_iterator_from_smem.h 2025-08-14T21:48:50.5441444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\epilogue_predicated_tile_iterator.h 2025-08-14T21:48:50.5442540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\make_residual_last.h 2025-08-14T21:48:50.5454614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_access_iterator_residual_last.h 2025-08-14T21:48:50.5461151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\predicated_tile_iterator_residual_last.h 2025-08-14T21:48:50.5463781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\transpose_warp_iterator.h 2025-08-14T21:48:50.5500863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators\warp_iterator_from_smem.h 2025-08-14T21:48:50.5508966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassB.h 2025-08-14T21:48:50.5513466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF.h 2025-08-14T21:48:50.5522385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform\tile_smem_loader.h 2025-08-14T21:48:50.5531201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\hip\aotriton_adapter.h 2025-08-14T21:48:50.5539036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\hip\flash_attn\flash_api.h 2025-08-14T21:48:50.5546299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\transformers\hip\flash_attn\ck\me_ck_api.h 2025-08-14T21:48:50.5555508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\utils\Factory.h 2025-08-14T21:48:50.5559113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\utils\ParamsHash.h 2025-08-14T21:48:50.5562951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\native\utils\ParamUtils.h 2025-08-14T21:48:50.5572239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs.h 2025-08-14T21:48:50.5575894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute.h 2025-08-14T21:48:50.5579678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.5583286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute_native.h 2025-08-14T21:48:50.5591613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\absolute_ops.h 2025-08-14T21:48:50.5595351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.5599238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_cpu_dispatch.h 2025-08-14T21:48:50.5603020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_cuda_dispatch.h 2025-08-14T21:48:50.5606770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_native.h 2025-08-14T21:48:50.5610455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\abs_ops.h 2025-08-14T21:48:50.5614215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos.h 2025-08-14T21:48:50.5617779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh.h 2025-08-14T21:48:50.5621614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.5625282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_cpu_dispatch.h 2025-08-14T21:48:50.5629290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_cuda_dispatch.h 2025-08-14T21:48:50.5633084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_meta.h 2025-08-14T21:48:50.5636908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_meta_dispatch.h 2025-08-14T21:48:50.5641369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_native.h 2025-08-14T21:48:50.5644753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acosh_ops.h 2025-08-14T21:48:50.5648892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.5661804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_cpu_dispatch.h 2025-08-14T21:48:50.5665787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_cuda_dispatch.h 2025-08-14T21:48:50.5670680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_meta.h 2025-08-14T21:48:50.5675279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_meta_dispatch.h 2025-08-14T21:48:50.5679211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_native.h 2025-08-14T21:48:50.5684536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\acos_ops.h 2025-08-14T21:48:50.5686775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d.h 2025-08-14T21:48:50.5691351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.5696258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.5710135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_native.h 2025-08-14T21:48:50.5712967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool1d_ops.h 2025-08-14T21:48:50.5717087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d.h 2025-08-14T21:48:50.5722648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.5725041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_cpu_dispatch.h 2025-08-14T21:48:50.5729199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_cuda_dispatch.h 2025-08-14T21:48:50.5735111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_native.h 2025-08-14T21:48:50.5737596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool2d_ops.h 2025-08-14T21:48:50.5751220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d.h 2025-08-14T21:48:50.5755401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward.h 2025-08-14T21:48:50.5760448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_cpu_dispatch.h 2025-08-14T21:48:50.5763348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_cuda_dispatch.h 2025-08-14T21:48:50.5767687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_native.h 2025-08-14T21:48:50.5772961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_backward_ops.h 2025-08-14T21:48:50.5776059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.5780178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_cpu_dispatch.h 2025-08-14T21:48:50.5785473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_cuda_dispatch.h 2025-08-14T21:48:50.5788183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_native.h 2025-08-14T21:48:50.5792643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_avg_pool3d_ops.h 2025-08-14T21:48:50.5813825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d.h 2025-08-14T21:48:50.5818727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.5822384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d_native.h 2025-08-14T21:48:50.5827100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool1d_ops.h 2025-08-14T21:48:50.5831395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d.h 2025-08-14T21:48:50.5836519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward.h 2025-08-14T21:48:50.5841470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.5845633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_cpu_dispatch.h 2025-08-14T21:48:50.5850000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_cuda_dispatch.h 2025-08-14T21:48:50.5854862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_meta.h 2025-08-14T21:48:50.5859198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_meta_dispatch.h 2025-08-14T21:48:50.5873109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_native.h 2025-08-14T21:48:50.5877327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_backward_ops.h 2025-08-14T21:48:50.5881501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.5885497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_cpu_dispatch.h 2025-08-14T21:48:50.5889549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_cuda_dispatch.h 2025-08-14T21:48:50.5893585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_meta.h 2025-08-14T21:48:50.5897915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_meta_dispatch.h 2025-08-14T21:48:50.5912083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_native.h 2025-08-14T21:48:50.5916227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool2d_ops.h 2025-08-14T21:48:50.5920212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d.h 2025-08-14T21:48:50.5924271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward.h 2025-08-14T21:48:50.5929090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.5943544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_cpu_dispatch.h 2025-08-14T21:48:50.5947636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_cuda_dispatch.h 2025-08-14T21:48:50.5951867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_meta.h 2025-08-14T21:48:50.5956119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_meta_dispatch.h 2025-08-14T21:48:50.5960044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_native.h 2025-08-14T21:48:50.5964694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_backward_ops.h 2025-08-14T21:48:50.5968933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.5972922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_cpu_dispatch.h 2025-08-14T21:48:50.5977080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_cuda_dispatch.h 2025-08-14T21:48:50.5981530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_meta.h 2025-08-14T21:48:50.5986014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_meta_dispatch.h 2025-08-14T21:48:50.5990184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_native.h 2025-08-14T21:48:50.5995096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adaptive_max_pool3d_ops.h 2025-08-14T21:48:50.5999101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add.h 2025-08-14T21:48:50.6002739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm.h 2025-08-14T21:48:50.6006519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_cpu_dispatch.h 2025-08-14T21:48:50.6010375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_cuda_dispatch.h 2025-08-14T21:48:50.6014157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_meta_dispatch.h 2025-08-14T21:48:50.6018002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_native.h 2025-08-14T21:48:50.6022003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addbmm_ops.h 2025-08-14T21:48:50.6026265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv.h 2025-08-14T21:48:50.6030269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.6034044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_cpu_dispatch.h 2025-08-14T21:48:50.6037954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_cuda_dispatch.h 2025-08-14T21:48:50.6055548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_meta.h 2025-08-14T21:48:50.6059311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_meta_dispatch.h 2025-08-14T21:48:50.6063355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_native.h 2025-08-14T21:48:50.6067469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcdiv_ops.h 2025-08-14T21:48:50.6072045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul.h 2025-08-14T21:48:50.6076176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.6079917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_cpu_dispatch.h 2025-08-14T21:48:50.6083836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_cuda_dispatch.h 2025-08-14T21:48:50.6088329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_meta.h 2025-08-14T21:48:50.6092117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_meta_dispatch.h 2025-08-14T21:48:50.6096365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_native.h 2025-08-14T21:48:50.6100309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addcmul_ops.h 2025-08-14T21:48:50.6104252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm.h 2025-08-14T21:48:50.6108243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.6112025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_cpu_dispatch.h 2025-08-14T21:48:50.6115959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_cuda_dispatch.h 2025-08-14T21:48:50.6119949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_meta.h 2025-08-14T21:48:50.6123833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_meta_dispatch.h 2025-08-14T21:48:50.6128549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_native.h 2025-08-14T21:48:50.6132954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmm_ops.h 2025-08-14T21:48:50.6136839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv.h 2025-08-14T21:48:50.6140693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.6154995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_cpu_dispatch.h 2025-08-14T21:48:50.6158852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_cuda_dispatch.h 2025-08-14T21:48:50.6162726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_meta.h 2025-08-14T21:48:50.6166562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_meta_dispatch.h 2025-08-14T21:48:50.6171374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_native.h 2025-08-14T21:48:50.6175422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addmv_ops.h 2025-08-14T21:48:50.6179529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr.h 2025-08-14T21:48:50.6183317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.6187105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_cpu_dispatch.h 2025-08-14T21:48:50.6191412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_cuda_dispatch.h 2025-08-14T21:48:50.6195672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_native.h 2025-08-14T21:48:50.6199615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\addr_ops.h 2025-08-14T21:48:50.6203682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.6207580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.6211397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_cpu_dispatch.h 2025-08-14T21:48:50.6215666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_cuda_dispatch.h 2025-08-14T21:48:50.6219425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_meta.h 2025-08-14T21:48:50.6223296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_meta_dispatch.h 2025-08-14T21:48:50.6227157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_native.h 2025-08-14T21:48:50.6231259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\add_ops.h 2025-08-14T21:48:50.6234852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint.h 2025-08-14T21:48:50.6238666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.6242687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint_native.h 2025-08-14T21:48:50.6246531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\adjoint_ops.h 2025-08-14T21:48:50.6250478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator.h 2025-08-14T21:48:50.6254589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward.h 2025-08-14T21:48:50.6259399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.6263596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward_native.h 2025-08-14T21:48:50.6267676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_backward_ops.h 2025-08-14T21:48:50.6272114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.6287365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_native.h 2025-08-14T21:48:50.6291404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\affine_grid_generator_ops.h 2025-08-14T21:48:50.6296753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias.h 2025-08-14T21:48:50.6299764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.6303973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy.h 2025-08-14T21:48:50.6309608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.6312451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.6316726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_native.h 2025-08-14T21:48:50.6321990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_copy_ops.h 2025-08-14T21:48:50.6325250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_native.h 2025-08-14T21:48:50.6329514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alias_ops.h 2025-08-14T21:48:50.6338386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as.h 2025-08-14T21:48:50.6339115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.6347885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as_native.h 2025-08-14T21:48:50.6362112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_as_ops.h 2025-08-14T21:48:50.6364693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors.h 2025-08-14T21:48:50.6365427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.6366216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors_native.h 2025-08-14T21:48:50.6367114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_tensors_ops.h 2025-08-14T21:48:50.6405775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to.h 2025-08-14T21:48:50.6406504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.6407438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to_native.h 2025-08-14T21:48:50.6408030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\align_to_ops.h 2025-08-14T21:48:50.6408589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all.h 2025-08-14T21:48:50.6409119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose.h 2025-08-14T21:48:50.6412400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.6413288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose_native.h 2025-08-14T21:48:50.6413892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\allclose_ops.h 2025-08-14T21:48:50.6414657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.6419799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.6421624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.6426580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_cpu_dispatch.h 2025-08-14T21:48:50.6429944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_cuda_dispatch.h 2025-08-14T21:48:50.6433690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_meta.h 2025-08-14T21:48:50.6438459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_meta_dispatch.h 2025-08-14T21:48:50.6441536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_native.h 2025-08-14T21:48:50.6445651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\all_ops.h 2025-08-14T21:48:50.6449056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout.h 2025-08-14T21:48:50.6455771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.6457716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout_native.h 2025-08-14T21:48:50.6473309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\alpha_dropout_ops.h 2025-08-14T21:48:50.6477146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax.h 2025-08-14T21:48:50.6481372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.6485420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_cpu_dispatch.h 2025-08-14T21:48:50.6489519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_cuda_dispatch.h 2025-08-14T21:48:50.6493327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_meta.h 2025-08-14T21:48:50.6497371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_meta_dispatch.h 2025-08-14T21:48:50.6501222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_native.h 2025-08-14T21:48:50.6505024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amax_ops.h 2025-08-14T21:48:50.6508673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin.h 2025-08-14T21:48:50.6512482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax.h 2025-08-14T21:48:50.6516627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.6520384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_cpu_dispatch.h 2025-08-14T21:48:50.6524639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_cuda_dispatch.h 2025-08-14T21:48:50.6528695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_meta.h 2025-08-14T21:48:50.6532620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_meta_dispatch.h 2025-08-14T21:48:50.6537068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_native.h 2025-08-14T21:48:50.6540888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\aminmax_ops.h 2025-08-14T21:48:50.6545089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.6548923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_cpu_dispatch.h 2025-08-14T21:48:50.6552939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_cuda_dispatch.h 2025-08-14T21:48:50.6557250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_meta.h 2025-08-14T21:48:50.6560858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_meta_dispatch.h 2025-08-14T21:48:50.6564703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_native.h 2025-08-14T21:48:50.6568502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\amin_ops.h 2025-08-14T21:48:50.6572155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and.h 2025-08-14T21:48:50.6576197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.6579980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and_native.h 2025-08-14T21:48:50.6583882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\and_ops.h 2025-08-14T21:48:50.6587508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle.h 2025-08-14T21:48:50.6592393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_cpu_dispatch.h 2025-08-14T21:48:50.6596514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_cuda_dispatch.h 2025-08-14T21:48:50.6600384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_native.h 2025-08-14T21:48:50.6604243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\angle_ops.h 2025-08-14T21:48:50.6608044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any.h 2025-08-14T21:48:50.6611935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.6615883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.6619795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.6623858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_cpu_dispatch.h 2025-08-14T21:48:50.6627725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_cuda_dispatch.h 2025-08-14T21:48:50.6642767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_meta.h 2025-08-14T21:48:50.6646689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_meta_dispatch.h 2025-08-14T21:48:50.6650468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_native.h 2025-08-14T21:48:50.6654433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\any_ops.h 2025-08-14T21:48:50.6658251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange.h 2025-08-14T21:48:50.6662015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.6666802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_cpu_dispatch.h 2025-08-14T21:48:50.6670893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_cuda_dispatch.h 2025-08-14T21:48:50.6675012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_meta_dispatch.h 2025-08-14T21:48:50.6679152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_native.h 2025-08-14T21:48:50.6683967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arange_ops.h 2025-08-14T21:48:50.6687909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos.h 2025-08-14T21:48:50.6724764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh.h 2025-08-14T21:48:50.6728703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.6732964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh_native.h 2025-08-14T21:48:50.6736945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccosh_ops.h 2025-08-14T21:48:50.6741056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.6745140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos_native.h 2025-08-14T21:48:50.6749217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arccos_ops.h 2025-08-14T21:48:50.6753957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin.h 2025-08-14T21:48:50.6758291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh.h 2025-08-14T21:48:50.6762475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.6767764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh_native.h 2025-08-14T21:48:50.6771645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsinh_ops.h 2025-08-14T21:48:50.6775828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.6779793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin_native.h 2025-08-14T21:48:50.6783836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arcsin_ops.h 2025-08-14T21:48:50.6787813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan.h 2025-08-14T21:48:50.6791599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2.h 2025-08-14T21:48:50.6795602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.6800002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2_native.h 2025-08-14T21:48:50.6803624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan2_ops.h 2025-08-14T21:48:50.6807825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh.h 2025-08-14T21:48:50.6811797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.6815719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh_native.h 2025-08-14T21:48:50.6819885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctanh_ops.h 2025-08-14T21:48:50.6825323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.6829500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan_native.h 2025-08-14T21:48:50.6833593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\arctan_ops.h 2025-08-14T21:48:50.6837578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax.h 2025-08-14T21:48:50.6841980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.6846193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_cpu_dispatch.h 2025-08-14T21:48:50.6850730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_cuda_dispatch.h 2025-08-14T21:48:50.6855227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_meta.h 2025-08-14T21:48:50.6860074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_meta_dispatch.h 2025-08-14T21:48:50.6864864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_native.h 2025-08-14T21:48:50.6869308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmax_ops.h 2025-08-14T21:48:50.6873841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin.h 2025-08-14T21:48:50.6878132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.6882300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_cpu_dispatch.h 2025-08-14T21:48:50.6886173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_cuda_dispatch.h 2025-08-14T21:48:50.6890502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_meta.h 2025-08-14T21:48:50.6895007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_meta_dispatch.h 2025-08-14T21:48:50.6899610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_native.h 2025-08-14T21:48:50.6903523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argmin_ops.h 2025-08-14T21:48:50.6907447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort.h 2025-08-14T21:48:50.6911357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.6915764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort_native.h 2025-08-14T21:48:50.6919397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argsort_ops.h 2025-08-14T21:48:50.6923193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere.h 2025-08-14T21:48:50.6927271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.6931296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere_native.h 2025-08-14T21:48:50.6935198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\argwhere_ops.h 2025-08-14T21:48:50.6939339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin.h 2025-08-14T21:48:50.6942813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh.h 2025-08-14T21:48:50.6946670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.6951191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_cpu_dispatch.h 2025-08-14T21:48:50.6955299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_cuda_dispatch.h 2025-08-14T21:48:50.6959963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_meta.h 2025-08-14T21:48:50.6963708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_meta_dispatch.h 2025-08-14T21:48:50.6967607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_native.h 2025-08-14T21:48:50.6971532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asinh_ops.h 2025-08-14T21:48:50.6975698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.6979450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_cpu_dispatch.h 2025-08-14T21:48:50.6983304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_cuda_dispatch.h 2025-08-14T21:48:50.6987367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_meta.h 2025-08-14T21:48:50.6991859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_meta_dispatch.h 2025-08-14T21:48:50.6996477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_native.h 2025-08-14T21:48:50.7000290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\asin_ops.h 2025-08-14T21:48:50.7003922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided.h 2025-08-14T21:48:50.7008019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.7012282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy.h 2025-08-14T21:48:50.7016912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.7021325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.7025328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_native.h 2025-08-14T21:48:50.7036711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_copy_ops.h 2025-08-14T21:48:50.7040710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_cpu_dispatch.h 2025-08-14T21:48:50.7044618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_cuda_dispatch.h 2025-08-14T21:48:50.7048680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_meta_dispatch.h 2025-08-14T21:48:50.7052650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_native.h 2025-08-14T21:48:50.7056534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_ops.h 2025-08-14T21:48:50.7060409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter.h 2025-08-14T21:48:50.7064577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.7068723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.7072737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_native.h 2025-08-14T21:48:50.7076885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\as_strided_scatter_ops.h 2025-08-14T21:48:50.7081456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan.h 2025-08-14T21:48:50.7085105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2.h 2025-08-14T21:48:50.7089024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.7092882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_cpu_dispatch.h 2025-08-14T21:48:50.7096923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_cuda_dispatch.h 2025-08-14T21:48:50.7100837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_meta.h 2025-08-14T21:48:50.7104713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_meta_dispatch.h 2025-08-14T21:48:50.7108851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_native.h 2025-08-14T21:48:50.7113673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan2_ops.h 2025-08-14T21:48:50.7117501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh.h 2025-08-14T21:48:50.7121404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.7125448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_cpu_dispatch.h 2025-08-14T21:48:50.7129168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_cuda_dispatch.h 2025-08-14T21:48:50.7133202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_meta.h 2025-08-14T21:48:50.7137046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_meta_dispatch.h 2025-08-14T21:48:50.7141132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_native.h 2025-08-14T21:48:50.7145043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atanh_ops.h 2025-08-14T21:48:50.7149243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.7153009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_cpu_dispatch.h 2025-08-14T21:48:50.7156885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_cuda_dispatch.h 2025-08-14T21:48:50.7160797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_meta.h 2025-08-14T21:48:50.7164713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_meta_dispatch.h 2025-08-14T21:48:50.7169270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_native.h 2025-08-14T21:48:50.7173047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atan_ops.h 2025-08-14T21:48:50.7176730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d.h 2025-08-14T21:48:50.7180653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.7184436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d_native.h 2025-08-14T21:48:50.7188406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_1d_ops.h 2025-08-14T21:48:50.7192230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d.h 2025-08-14T21:48:50.7196316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.7200957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d_native.h 2025-08-14T21:48:50.7205230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_2d_ops.h 2025-08-14T21:48:50.7209158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d.h 2025-08-14T21:48:50.7215152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.7217474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d_native.h 2025-08-14T21:48:50.7221572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\atleast_3d_ops.h 2025-08-14T21:48:50.7225322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d.h 2025-08-14T21:48:50.7230113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.7234080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.7237912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_native.h 2025-08-14T21:48:50.7241816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool1d_ops.h 2025-08-14T21:48:50.7245849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d.h 2025-08-14T21:48:50.7249973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward.h 2025-08-14T21:48:50.7254190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.7258327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_cpu_dispatch.h 2025-08-14T21:48:50.7262318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_cuda_dispatch.h 2025-08-14T21:48:50.7266237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_meta.h 2025-08-14T21:48:50.7270326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_meta_dispatch.h 2025-08-14T21:48:50.7274336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_native.h 2025-08-14T21:48:50.7278289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_backward_ops.h 2025-08-14T21:48:50.7282727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.7286578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_cpu_dispatch.h 2025-08-14T21:48:50.7290597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_cuda_dispatch.h 2025-08-14T21:48:50.7294562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_meta.h 2025-08-14T21:48:50.7298548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_meta_dispatch.h 2025-08-14T21:48:50.7302495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_native.h 2025-08-14T21:48:50.7306540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool2d_ops.h 2025-08-14T21:48:50.7311199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d.h 2025-08-14T21:48:50.7316680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward.h 2025-08-14T21:48:50.7319887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.7324611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_cpu_dispatch.h 2025-08-14T21:48:50.7329913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_cuda_dispatch.h 2025-08-14T21:48:50.7333462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_meta.h 2025-08-14T21:48:50.7345834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_meta_dispatch.h 2025-08-14T21:48:50.7346148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_native.h 2025-08-14T21:48:50.7368632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_backward_ops.h 2025-08-14T21:48:50.7373676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.7373972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_cpu_dispatch.h 2025-08-14T21:48:50.7374403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_cuda_dispatch.h 2025-08-14T21:48:50.7381202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_meta.h 2025-08-14T21:48:50.7383495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_meta_dispatch.h 2025-08-14T21:48:50.7390349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_native.h 2025-08-14T21:48:50.7392153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\avg_pool3d_ops.h 2025-08-14T21:48:50.7403347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm.h 2025-08-14T21:48:50.7405137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.7406255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_cpu_dispatch.h 2025-08-14T21:48:50.7418636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_cuda_dispatch.h 2025-08-14T21:48:50.7424523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_meta.h 2025-08-14T21:48:50.7425229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_meta_dispatch.h 2025-08-14T21:48:50.7425476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_native.h 2025-08-14T21:48:50.7433208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\baddbmm_ops.h 2025-08-14T21:48:50.7434102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window.h 2025-08-14T21:48:50.7440400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.7442408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window_native.h 2025-08-14T21:48:50.7447396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bartlett_window_ops.h 2025-08-14T21:48:50.7450950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm.h 2025-08-14T21:48:50.7455175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward.h 2025-08-14T21:48:50.7461096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_cpu_dispatch.h 2025-08-14T21:48:50.7463567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_cuda_dispatch.h 2025-08-14T21:48:50.7468044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt.h 2025-08-14T21:48:50.7473469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.7477564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_cuda_dispatch.h 2025-08-14T21:48:50.7482214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_native.h 2025-08-14T21:48:50.7486282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_elemt_ops.h 2025-08-14T21:48:50.7491119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_native.h 2025-08-14T21:48:50.7494843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_ops.h 2025-08-14T21:48:50.7498883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce.h 2025-08-14T21:48:50.7503298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.7507427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_cuda_dispatch.h 2025-08-14T21:48:50.7511674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_native.h 2025-08-14T21:48:50.7516625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_backward_reduce_ops.h 2025-08-14T21:48:50.7520422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.7524447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt.h 2025-08-14T21:48:50.7528739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt_cuda_dispatch.h 2025-08-14T21:48:50.7532787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt_native.h 2025-08-14T21:48:50.7536852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_elemt_ops.h 2025-08-14T21:48:50.7540905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats.h 2025-08-14T21:48:50.7545199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.7549347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_cuda_dispatch.h 2025-08-14T21:48:50.7553671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_native.h 2025-08-14T21:48:50.7557746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_ops.h 2025-08-14T21:48:50.7561943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts.h 2025-08-14T21:48:50.7566326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.7570952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_cuda_dispatch.h 2025-08-14T21:48:50.7575459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_native.h 2025-08-14T21:48:50.7579996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_gather_stats_with_counts_ops.h 2025-08-14T21:48:50.7583790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_native.h 2025-08-14T21:48:50.7587825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_ops.h 2025-08-14T21:48:50.7591979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats.h 2025-08-14T21:48:50.7596206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.7600880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_cuda_dispatch.h 2025-08-14T21:48:50.7605165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_native.h 2025-08-14T21:48:50.7609719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_stats_ops.h 2025-08-14T21:48:50.7613817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats.h 2025-08-14T21:48:50.7618186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.7622156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_cpu_dispatch.h 2025-08-14T21:48:50.7626304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_cuda_dispatch.h 2025-08-14T21:48:50.7630800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_native.h 2025-08-14T21:48:50.7634935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\batch_norm_update_stats_ops.h 2025-08-14T21:48:50.7638916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli.h 2025-08-14T21:48:50.7643045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.7647007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.7650991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_cpu_dispatch.h 2025-08-14T21:48:50.7655175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_cuda_dispatch.h 2025-08-14T21:48:50.7677036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_meta_dispatch.h 2025-08-14T21:48:50.7678644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_native.h 2025-08-14T21:48:50.7684320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bernoulli_ops.h 2025-08-14T21:48:50.7686900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear.h 2025-08-14T21:48:50.7692083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.7697046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear_native.h 2025-08-14T21:48:50.7700745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bilinear_ops.h 2025-08-14T21:48:50.7705542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy.h 2025-08-14T21:48:50.7710421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward.h 2025-08-14T21:48:50.7714359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_cpu_dispatch.h 2025-08-14T21:48:50.7718619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_cuda_dispatch.h 2025-08-14T21:48:50.7722987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_native.h 2025-08-14T21:48:50.7726822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_backward_ops.h 2025-08-14T21:48:50.7731396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_cpu_dispatch.h 2025-08-14T21:48:50.7735730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_cuda_dispatch.h 2025-08-14T21:48:50.7739803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_native.h 2025-08-14T21:48:50.7744560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_ops.h 2025-08-14T21:48:50.7749043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits.h 2025-08-14T21:48:50.7753931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.7757681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits_native.h 2025-08-14T21:48:50.7762000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binary_cross_entropy_with_logits_ops.h 2025-08-14T21:48:50.7766062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount.h 2025-08-14T21:48:50.7769997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.7774157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_cpu_dispatch.h 2025-08-14T21:48:50.7778454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_cuda_dispatch.h 2025-08-14T21:48:50.7782504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_native.h 2025-08-14T21:48:50.7786787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bincount_ops.h 2025-08-14T21:48:50.7791797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial.h 2025-08-14T21:48:50.7795416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.7800184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_cpu_dispatch.h 2025-08-14T21:48:50.7804702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_cuda_dispatch.h 2025-08-14T21:48:50.7808293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_native.h 2025-08-14T21:48:50.7812434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\binomial_ops.h 2025-08-14T21:48:50.7817117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and.h 2025-08-14T21:48:50.7823112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.7825748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.7829998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_cpu_dispatch.h 2025-08-14T21:48:50.7841215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_cuda_dispatch.h 2025-08-14T21:48:50.7877006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_meta.h 2025-08-14T21:48:50.7877301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_meta_dispatch.h 2025-08-14T21:48:50.7880966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_native.h 2025-08-14T21:48:50.7885273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_and_ops.h 2025-08-14T21:48:50.7891002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift.h 2025-08-14T21:48:50.7893787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.7898446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.7902572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_cpu_dispatch.h 2025-08-14T21:48:50.7909804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_cuda_dispatch.h 2025-08-14T21:48:50.7912298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_meta.h 2025-08-14T21:48:50.7916373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_meta_dispatch.h 2025-08-14T21:48:50.7920455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_native.h 2025-08-14T21:48:50.7926617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_left_shift_ops.h 2025-08-14T21:48:50.7929070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not.h 2025-08-14T21:48:50.7933503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.7937668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_cpu_dispatch.h 2025-08-14T21:48:50.7941722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_cuda_dispatch.h 2025-08-14T21:48:50.7946211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_meta.h 2025-08-14T21:48:50.7950323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_meta_dispatch.h 2025-08-14T21:48:50.7954783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_native.h 2025-08-14T21:48:50.7958910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_not_ops.h 2025-08-14T21:48:50.7962655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or.h 2025-08-14T21:48:50.7967087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.7971098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.7975511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_cpu_dispatch.h 2025-08-14T21:48:50.7979564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_cuda_dispatch.h 2025-08-14T21:48:50.7983542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_meta.h 2025-08-14T21:48:50.7987676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_meta_dispatch.h 2025-08-14T21:48:50.7991731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_native.h 2025-08-14T21:48:50.7996305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_or_ops.h 2025-08-14T21:48:50.8000031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift.h 2025-08-14T21:48:50.8004298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.8008666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.8013008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_cpu_dispatch.h 2025-08-14T21:48:50.8017002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_cuda_dispatch.h 2025-08-14T21:48:50.8021437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_meta.h 2025-08-14T21:48:50.8025895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_meta_dispatch.h 2025-08-14T21:48:50.8029913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_native.h 2025-08-14T21:48:50.8034725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_right_shift_ops.h 2025-08-14T21:48:50.8038954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor.h 2025-08-14T21:48:50.8044343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.8048326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.8052993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_cpu_dispatch.h 2025-08-14T21:48:50.8057242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_cuda_dispatch.h 2025-08-14T21:48:50.8061290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_meta.h 2025-08-14T21:48:50.8065964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_meta_dispatch.h 2025-08-14T21:48:50.8070660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_native.h 2025-08-14T21:48:50.8075392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bitwise_xor_ops.h 2025-08-14T21:48:50.8079075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window.h 2025-08-14T21:48:50.8083368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.8087949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window_native.h 2025-08-14T21:48:50.8091591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\blackman_window_ops.h 2025-08-14T21:48:50.8095996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag.h 2025-08-14T21:48:50.8100613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.8104276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag_native.h 2025-08-14T21:48:50.8108580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\block_diag_ops.h 2025-08-14T21:48:50.8112725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm.h 2025-08-14T21:48:50.8116644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.8120547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_cpu_dispatch.h 2025-08-14T21:48:50.8124787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_cuda_dispatch.h 2025-08-14T21:48:50.8128821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_meta.h 2025-08-14T21:48:50.8133834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_meta_dispatch.h 2025-08-14T21:48:50.8138063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_native.h 2025-08-14T21:48:50.8141982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bmm_ops.h 2025-08-14T21:48:50.8146044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors.h 2025-08-14T21:48:50.8150002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.8153998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors_native.h 2025-08-14T21:48:50.8158009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_tensors_ops.h 2025-08-14T21:48:50.8162800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to.h 2025-08-14T21:48:50.8167733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.8173679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to_native.h 2025-08-14T21:48:50.8178067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\broadcast_to_ops.h 2025-08-14T21:48:50.8182007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize.h 2025-08-14T21:48:50.8186308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.8190337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_cpu_dispatch.h 2025-08-14T21:48:50.8194512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_cuda_dispatch.h 2025-08-14T21:48:50.8198658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_native.h 2025-08-14T21:48:50.8202970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\bucketize_ops.h 2025-08-14T21:48:50.8206960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast.h 2025-08-14T21:48:50.8210989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.8214966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast_native.h 2025-08-14T21:48:50.8218982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\can_cast_ops.h 2025-08-14T21:48:50.8223036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod.h 2025-08-14T21:48:50.8227086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.8231557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod_native.h 2025-08-14T21:48:50.8235458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cartesian_prod_ops.h 2025-08-14T21:48:50.8239998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat.h 2025-08-14T21:48:50.8244364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.8248512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.8252448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_cpu_dispatch.h 2025-08-14T21:48:50.8256423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_cuda_dispatch.h 2025-08-14T21:48:50.8260385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_meta.h 2025-08-14T21:48:50.8264360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_meta_dispatch.h 2025-08-14T21:48:50.8268520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_native.h 2025-08-14T21:48:50.8272312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cat_ops.h 2025-08-14T21:48:50.8276539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy.h 2025-08-14T21:48:50.8280511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.8284441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_cpu_dispatch.h 2025-08-14T21:48:50.8289477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_cuda_dispatch.h 2025-08-14T21:48:50.8293548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_meta_dispatch.h 2025-08-14T21:48:50.8307537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_native.h 2025-08-14T21:48:50.8311614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cauchy_ops.h 2025-08-14T21:48:50.8315850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices.h 2025-08-14T21:48:50.8320232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.8324154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy.h 2025-08-14T21:48:50.8328472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.8332869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.8336957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_native.h 2025-08-14T21:48:50.8341557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_copy_ops.h 2025-08-14T21:48:50.8345772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_native.h 2025-08-14T21:48:50.8350043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ccol_indices_ops.h 2025-08-14T21:48:50.8353969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist.h 2025-08-14T21:48:50.8358136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.8362086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist_native.h 2025-08-14T21:48:50.8366380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cdist_ops.h 2025-08-14T21:48:50.8370222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil.h 2025-08-14T21:48:50.8374598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.8378486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_cpu_dispatch.h 2025-08-14T21:48:50.8382767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_cuda_dispatch.h 2025-08-14T21:48:50.8387195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_meta.h 2025-08-14T21:48:50.8398551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_meta_dispatch.h 2025-08-14T21:48:50.8404666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_native.h 2025-08-14T21:48:50.8410247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ceil_ops.h 2025-08-14T21:48:50.8418711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu.h 2025-08-14T21:48:50.8423109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.8423347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu_native.h 2025-08-14T21:48:50.8423570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\celu_ops.h 2025-08-14T21:48:50.8423804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul.h 2025-08-14T21:48:50.8430921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.8432617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul_native.h 2025-08-14T21:48:50.8439875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chain_matmul_ops.h 2025-08-14T21:48:50.8441418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf.h 2025-08-14T21:48:50.8447752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.8449892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf_native.h 2025-08-14T21:48:50.8454577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chalf_ops.h 2025-08-14T21:48:50.8461197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle.h 2025-08-14T21:48:50.8463361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.8473085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_cpu_dispatch.h 2025-08-14T21:48:50.8473396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_cuda_dispatch.h 2025-08-14T21:48:50.8476799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_native.h 2025-08-14T21:48:50.8490074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\channel_shuffle_ops.h 2025-08-14T21:48:50.8490664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky.h 2025-08-14T21:48:50.8490940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_cpu_dispatch.h 2025-08-14T21:48:50.8494555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_cuda_dispatch.h 2025-08-14T21:48:50.8498905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse.h 2025-08-14T21:48:50.8503563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_cpu_dispatch.h 2025-08-14T21:48:50.8507117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_cuda_dispatch.h 2025-08-14T21:48:50.8511457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_native.h 2025-08-14T21:48:50.8515378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_inverse_ops.h 2025-08-14T21:48:50.8520792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_native.h 2025-08-14T21:48:50.8523549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_ops.h 2025-08-14T21:48:50.8527747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve.h 2025-08-14T21:48:50.8531880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.8537180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve_native.h 2025-08-14T21:48:50.8540504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cholesky_solve_ops.h 2025-08-14T21:48:50.8544518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized.h 2025-08-14T21:48:50.8548696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.8552771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized_native.h 2025-08-14T21:48:50.8557394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\choose_qparams_optimized_ops.h 2025-08-14T21:48:50.8561343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk.h 2025-08-14T21:48:50.8565185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.8569360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk_native.h 2025-08-14T21:48:50.8573165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\chunk_ops.h 2025-08-14T21:48:50.8577006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp.h 2025-08-14T21:48:50.8580942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.8584921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_cpu_dispatch.h 2025-08-14T21:48:50.8589630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_cuda_dispatch.h 2025-08-14T21:48:50.8593587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max.h 2025-08-14T21:48:50.8597757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.8601618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_cpu_dispatch.h 2025-08-14T21:48:50.8605705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_cuda_dispatch.h 2025-08-14T21:48:50.8609564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_meta.h 2025-08-14T21:48:50.8613661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_meta_dispatch.h 2025-08-14T21:48:50.8617640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_native.h 2025-08-14T21:48:50.8621610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_max_ops.h 2025-08-14T21:48:50.8625871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_meta.h 2025-08-14T21:48:50.8629725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_meta_dispatch.h 2025-08-14T21:48:50.8633601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min.h 2025-08-14T21:48:50.8638091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.8642232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_cpu_dispatch.h 2025-08-14T21:48:50.8646224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_cuda_dispatch.h 2025-08-14T21:48:50.8650714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_meta.h 2025-08-14T21:48:50.8654642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_meta_dispatch.h 2025-08-14T21:48:50.8658612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_native.h 2025-08-14T21:48:50.8662513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_min_ops.h 2025-08-14T21:48:50.8666287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_native.h 2025-08-14T21:48:50.8684851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clamp_ops.h 2025-08-14T21:48:50.8685271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip.h 2025-08-14T21:48:50.8685637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.8685884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip_native.h 2025-08-14T21:48:50.8686738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clip_ops.h 2025-08-14T21:48:50.8690175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone.h 2025-08-14T21:48:50.8693990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.8697840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone_native.h 2025-08-14T21:48:50.8701544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\clone_ops.h 2025-08-14T21:48:50.8705472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce.h 2025-08-14T21:48:50.8709815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.8713328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce_native.h 2025-08-14T21:48:50.8717091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\coalesce_ops.h 2025-08-14T21:48:50.8721143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im.h 2025-08-14T21:48:50.8726612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_cpu_dispatch.h 2025-08-14T21:48:50.8729115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_cuda_dispatch.h 2025-08-14T21:48:50.8732992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_native.h 2025-08-14T21:48:50.8738060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col2im_ops.h 2025-08-14T21:48:50.8742061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack.h 2025-08-14T21:48:50.8746109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.8750055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack_native.h 2025-08-14T21:48:50.8753970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\column_stack_ops.h 2025-08-14T21:48:50.8757871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices.h 2025-08-14T21:48:50.8761926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.8765885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy.h 2025-08-14T21:48:50.8770828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.8774788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.8778673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_native.h 2025-08-14T21:48:50.8782633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_copy_ops.h 2025-08-14T21:48:50.8786594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_native.h 2025-08-14T21:48:50.8790683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\col_indices_ops.h 2025-08-14T21:48:50.8794789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations.h 2025-08-14T21:48:50.8799618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.8803250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations_native.h 2025-08-14T21:48:50.8807225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\combinations_ops.h 2025-08-14T21:48:50.8811041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex.h 2025-08-14T21:48:50.8814906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.8819214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_cpu_dispatch.h 2025-08-14T21:48:50.8823292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_cuda_dispatch.h 2025-08-14T21:48:50.8827798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_native.h 2025-08-14T21:48:50.8831580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\complex_ops.h 2025-08-14T21:48:50.8835776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat.h 2025-08-14T21:48:50.8840627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate.h 2025-08-14T21:48:50.8843837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.8848785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate_native.h 2025-08-14T21:48:50.8852399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concatenate_ops.h 2025-08-14T21:48:50.8910535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.8910788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat_native.h 2025-08-14T21:48:50.8911016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\concat_ops.h 2025-08-14T21:48:50.8911233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj.h 2025-08-14T21:48:50.8911596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.8911822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_native.h 2025-08-14T21:48:50.8912037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_ops.h 2025-08-14T21:48:50.8912276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical.h 2025-08-14T21:48:50.8912665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.8913041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.8913338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_cpu_dispatch.h 2025-08-14T21:48:50.8913632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_cuda_dispatch.h 2025-08-14T21:48:50.8913899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_native.h 2025-08-14T21:48:50.8930816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conj_physical_ops.h 2025-08-14T21:48:50.8931062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd.h 2025-08-14T21:48:50.8931459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.8932521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd_native.h 2025-08-14T21:48:50.8937867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\constant_pad_nd_ops.h 2025-08-14T21:48:50.8940951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous.h 2025-08-14T21:48:50.8959595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.8963851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous_native.h 2025-08-14T21:48:50.8967962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\contiguous_ops.h 2025-08-14T21:48:50.8971924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d.h 2025-08-14T21:48:50.8975766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.9012378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d_native.h 2025-08-14T21:48:50.9016484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv1d_ops.h 2025-08-14T21:48:50.9020252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d.h 2025-08-14T21:48:50.9024062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.9027953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d_native.h 2025-08-14T21:48:50.9032194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv2d_ops.h 2025-08-14T21:48:50.9036846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d.h 2025-08-14T21:48:50.9041007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.9045021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d_native.h 2025-08-14T21:48:50.9048997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv3d_ops.h 2025-08-14T21:48:50.9052926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution.h 2025-08-14T21:48:50.9057519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward.h 2025-08-14T21:48:50.9061586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.9066506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_cuda_dispatch.h 2025-08-14T21:48:50.9071316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_native.h 2025-08-14T21:48:50.9075636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_ops.h 2025-08-14T21:48:50.9080142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable.h 2025-08-14T21:48:50.9084654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.9089754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable_native.h 2025-08-14T21:48:50.9093901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_backward_overrideable_ops.h 2025-08-14T21:48:50.9098393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.9102779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_native.h 2025-08-14T21:48:50.9107861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_ops.h 2025-08-14T21:48:50.9112060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable.h 2025-08-14T21:48:50.9116415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.9120680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable_native.h 2025-08-14T21:48:50.9125125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\convolution_overrideable_ops.h 2025-08-14T21:48:50.9129513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d.h 2025-08-14T21:48:50.9133590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.9137819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_cuda_dispatch.h 2025-08-14T21:48:50.9142140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_native.h 2025-08-14T21:48:50.9146269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_depthwise3d_ops.h 2025-08-14T21:48:50.9150824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc.h 2025-08-14T21:48:50.9155062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward.h 2025-08-14T21:48:50.9160415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.9163804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward_native.h 2025-08-14T21:48:50.9168341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_backward_ops.h 2025-08-14T21:48:50.9173859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.9179490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_native.h 2025-08-14T21:48:50.9182308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_tbc_ops.h 2025-08-14T21:48:50.9187131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d.h 2025-08-14T21:48:50.9192470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.9195993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d_native.h 2025-08-14T21:48:50.9200500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose1d_ops.h 2025-08-14T21:48:50.9205019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d.h 2025-08-14T21:48:50.9210929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.9213479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d_native.h 2025-08-14T21:48:50.9217714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose2d_ops.h 2025-08-14T21:48:50.9223373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d.h 2025-08-14T21:48:50.9226649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.9231182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d_native.h 2025-08-14T21:48:50.9236256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\conv_transpose3d_ops.h 2025-08-14T21:48:50.9240279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy.h 2025-08-14T21:48:50.9244652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign.h 2025-08-14T21:48:50.9249174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.9252856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.9257119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_cpu_dispatch.h 2025-08-14T21:48:50.9261593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_cuda_dispatch.h 2025-08-14T21:48:50.9267441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_meta.h 2025-08-14T21:48:50.9270417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_meta_dispatch.h 2025-08-14T21:48:50.9274685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_native.h 2025-08-14T21:48:50.9280409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copysign_ops.h 2025-08-14T21:48:50.9283695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.9287848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.9292993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_meta_dispatch.h 2025-08-14T21:48:50.9296273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_native.h 2025-08-14T21:48:50.9300398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_ops.h 2025-08-14T21:48:50.9305630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse.h 2025-08-14T21:48:50.9309415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.9313698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_meta_dispatch.h 2025-08-14T21:48:50.9318398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_native.h 2025-08-14T21:48:50.9322179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\copy_sparse_to_sparse_ops.h 2025-08-14T21:48:50.9326679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef.h 2025-08-14T21:48:50.9331210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.9334743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef_native.h 2025-08-14T21:48:50.9338894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\corrcoef_ops.h 2025-08-14T21:48:50.9343461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos.h 2025-08-14T21:48:50.9346766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh.h 2025-08-14T21:48:50.9358168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.9358448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_cpu_dispatch.h 2025-08-14T21:48:50.9360464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_cuda_dispatch.h 2025-08-14T21:48:50.9365993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_meta.h 2025-08-14T21:48:50.9369634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_meta_dispatch.h 2025-08-14T21:48:50.9373929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_native.h 2025-08-14T21:48:50.9379683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosh_ops.h 2025-08-14T21:48:50.9381978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss.h 2025-08-14T21:48:50.9387007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.9390727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss_native.h 2025-08-14T21:48:50.9394815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_embedding_loss_ops.h 2025-08-14T21:48:50.9400252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity.h 2025-08-14T21:48:50.9404542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.9408717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity_native.h 2025-08-14T21:48:50.9412727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cosine_similarity_ops.h 2025-08-14T21:48:50.9417393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.9421581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_cpu_dispatch.h 2025-08-14T21:48:50.9426485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_cuda_dispatch.h 2025-08-14T21:48:50.9430771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_meta.h 2025-08-14T21:48:50.9434713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_meta_dispatch.h 2025-08-14T21:48:50.9438695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_native.h 2025-08-14T21:48:50.9443245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cos_ops.h 2025-08-14T21:48:50.9447231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero.h 2025-08-14T21:48:50.9451416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.9455820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_cpu_dispatch.h 2025-08-14T21:48:50.9460272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_cuda_dispatch.h 2025-08-14T21:48:50.9464352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_native.h 2025-08-14T21:48:50.9468558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\count_nonzero_ops.h 2025-08-14T21:48:50.9472584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov.h 2025-08-14T21:48:50.9476496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.9480843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov_native.h 2025-08-14T21:48:50.9484624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cov_ops.h 2025-08-14T21:48:50.9488788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross.h 2025-08-14T21:48:50.9492536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.9501118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss.h 2025-08-14T21:48:50.9502252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.9506181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss_native.h 2025-08-14T21:48:50.9510761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_entropy_loss_ops.h 2025-08-14T21:48:50.9515124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_native.h 2025-08-14T21:48:50.9521039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cross_ops.h 2025-08-14T21:48:50.9524188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices.h 2025-08-14T21:48:50.9528666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.9533730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy.h 2025-08-14T21:48:50.9537493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:50.9542060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:50.9546480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_native.h 2025-08-14T21:48:50.9552225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_copy_ops.h 2025-08-14T21:48:50.9566447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_native.h 2025-08-14T21:48:50.9566717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\crow_indices_ops.h 2025-08-14T21:48:50.9567250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss.h 2025-08-14T21:48:50.9572337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:50.9576599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss_native.h 2025-08-14T21:48:50.9580844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ctc_loss_ops.h 2025-08-14T21:48:50.9585533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator.h 2025-08-14T21:48:50.9999205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward.h 2025-08-14T21:48:51.0003518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.0007770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_cuda_dispatch.h 2025-08-14T21:48:51.0012325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_native.h 2025-08-14T21:48:51.0016552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_backward_ops.h 2025-08-14T21:48:51.0020875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.0025065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_cuda_dispatch.h 2025-08-14T21:48:51.0029557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_native.h 2025-08-14T21:48:51.0034054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_affine_grid_generator_ops.h 2025-08-14T21:48:51.0038547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm.h 2025-08-14T21:48:51.0042685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward.h 2025-08-14T21:48:51.0047008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.0051864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_cuda_dispatch.h 2025-08-14T21:48:51.0056014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_native.h 2025-08-14T21:48:51.0060392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_backward_ops.h 2025-08-14T21:48:51.0064554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_cuda_dispatch.h 2025-08-14T21:48:51.0068942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_native.h 2025-08-14T21:48:51.0073076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_batch_norm_ops.h 2025-08-14T21:48:51.0077284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution.h 2025-08-14T21:48:51.0081460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu.h 2025-08-14T21:48:51.0085923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.0090218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_cuda_dispatch.h 2025-08-14T21:48:51.0094545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_native.h 2025-08-14T21:48:51.0098611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_add_relu_ops.h 2025-08-14T21:48:51.0102737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_cuda_dispatch.h 2025-08-14T21:48:51.0106780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_native.h 2025-08-14T21:48:51.0110961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_ops.h 2025-08-14T21:48:51.0115658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu.h 2025-08-14T21:48:51.0119945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.0124154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_cuda_dispatch.h 2025-08-14T21:48:51.0128539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_native.h 2025-08-14T21:48:51.0132608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_relu_ops.h 2025-08-14T21:48:51.0136768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose.h 2025-08-14T21:48:51.0141848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.0145954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_cuda_dispatch.h 2025-08-14T21:48:51.0150168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_native.h 2025-08-14T21:48:51.0154278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_convolution_transpose_ops.h 2025-08-14T21:48:51.0158338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler.h 2025-08-14T21:48:51.0162512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward.h 2025-08-14T21:48:51.0167196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.0171705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_cuda_dispatch.h 2025-08-14T21:48:51.0175742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_native.h 2025-08-14T21:48:51.0180636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_backward_ops.h 2025-08-14T21:48:51.0185055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.0189710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_cuda_dispatch.h 2025-08-14T21:48:51.0193791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_native.h 2025-08-14T21:48:51.0197981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_grid_sampler_ops.h 2025-08-14T21:48:51.0202236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable.h 2025-08-14T21:48:51.0206512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.0210741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable_native.h 2025-08-14T21:48:51.0215191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cudnn_is_acceptable_ops.h 2025-08-14T21:48:51.0219178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax.h 2025-08-14T21:48:51.0223186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward.h 2025-08-14T21:48:51.0227601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.0231608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward_native.h 2025-08-14T21:48:51.0235917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummaxmin_backward_ops.h 2025-08-14T21:48:51.0240360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.0245095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.0249311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_native.h 2025-08-14T21:48:51.0253391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummax_ops.h 2025-08-14T21:48:51.0257490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin.h 2025-08-14T21:48:51.0261868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.0265997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.0269941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_native.h 2025-08-14T21:48:51.0274205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cummin_ops.h 2025-08-14T21:48:51.0278690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod.h 2025-08-14T21:48:51.0282208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward.h 2025-08-14T21:48:51.0286581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.0290727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward_native.h 2025-08-14T21:48:51.0294739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_backward_ops.h 2025-08-14T21:48:51.0299121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.0303575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.0308389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_cpu_dispatch.h 2025-08-14T21:48:51.0312829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_cuda_dispatch.h 2025-08-14T21:48:51.0316960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_meta.h 2025-08-14T21:48:51.0321089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_meta_dispatch.h 2025-08-14T21:48:51.0325362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_native.h 2025-08-14T21:48:51.0329482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumprod_ops.h 2025-08-14T21:48:51.0334194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum.h 2025-08-14T21:48:51.0338469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.0342615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.0346622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_cpu_dispatch.h 2025-08-14T21:48:51.0350743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_cuda_dispatch.h 2025-08-14T21:48:51.0355020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_meta.h 2025-08-14T21:48:51.0359930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_meta_dispatch.h 2025-08-14T21:48:51.0364654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_native.h 2025-08-14T21:48:51.0369011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumsum_ops.h 2025-08-14T21:48:51.0373620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid.h 2025-08-14T21:48:51.0378553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.0382867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid_native.h 2025-08-14T21:48:51.0387964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\cumulative_trapezoid_ops.h 2025-08-14T21:48:51.0392352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data.h 2025-08-14T21:48:51.0396280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.0400531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data_native.h 2025-08-14T21:48:51.0404716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\data_ops.h 2025-08-14T21:48:51.0408524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad.h 2025-08-14T21:48:51.0412979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.0416870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad_native.h 2025-08-14T21:48:51.0420809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\deg2rad_ops.h 2025-08-14T21:48:51.0425111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim.h 2025-08-14T21:48:51.0429390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.0433481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim_native.h 2025-08-14T21:48:51.0437909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dense_dim_ops.h 2025-08-14T21:48:51.0442116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize.h 2025-08-14T21:48:51.0446169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.0450078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_cpu_dispatch.h 2025-08-14T21:48:51.0454056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_cuda_dispatch.h 2025-08-14T21:48:51.0458082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_native.h 2025-08-14T21:48:51.0462428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dequantize_ops.h 2025-08-14T21:48:51.0466619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det.h 2025-08-14T21:48:51.0470371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach.h 2025-08-14T21:48:51.0474241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.0478143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy.h 2025-08-14T21:48:51.0482938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.0487003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.0491236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_native.h 2025-08-14T21:48:51.0495364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_copy_ops.h 2025-08-14T21:48:51.0499341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_native.h 2025-08-14T21:48:51.0503317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\detach_ops.h 2025-08-14T21:48:51.0507481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.0512202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det_native.h 2025-08-14T21:48:51.0516151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\det_ops.h 2025-08-14T21:48:51.0519988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag.h 2025-08-14T21:48:51.0523698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat.h 2025-08-14T21:48:51.0542928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.0546813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat_native.h 2025-08-14T21:48:51.0550818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagflat_ops.h 2025-08-14T21:48:51.0554764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal.h 2025-08-14T21:48:51.0558492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward.h 2025-08-14T21:48:51.0562543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.0566692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward_native.h 2025-08-14T21:48:51.0570939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_backward_ops.h 2025-08-14T21:48:51.0575615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.0580069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.0584089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy.h 2025-08-14T21:48:51.0588719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.0593123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.0597161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_native.h 2025-08-14T21:48:51.0601295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_copy_ops.h 2025-08-14T21:48:51.0605465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_native.h 2025-08-14T21:48:51.0609803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_ops.h 2025-08-14T21:48:51.0613833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter.h 2025-08-14T21:48:51.0618211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.0622410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.0626410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_native.h 2025-08-14T21:48:51.0630549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diagonal_scatter_ops.h 2025-08-14T21:48:51.0634838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.0638760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed.h 2025-08-14T21:48:51.0643013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.0647179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.0651303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_native.h 2025-08-14T21:48:51.0655226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_embed_ops.h 2025-08-14T21:48:51.0659214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_native.h 2025-08-14T21:48:51.0663053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diag_ops.h 2025-08-14T21:48:51.0667611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff.h 2025-08-14T21:48:51.0672268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.0676593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff_native.h 2025-08-14T21:48:51.0680610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\diff_ops.h 2025-08-14T21:48:51.0684511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma.h 2025-08-14T21:48:51.0688611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.0692500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_cpu_dispatch.h 2025-08-14T21:48:51.0697562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_cuda_dispatch.h 2025-08-14T21:48:51.0702167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_meta.h 2025-08-14T21:48:51.0706233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_meta_dispatch.h 2025-08-14T21:48:51.0710679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_native.h 2025-08-14T21:48:51.0714701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\digamma_ops.h 2025-08-14T21:48:51.0719295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist.h 2025-08-14T21:48:51.0723703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.0727555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist_native.h 2025-08-14T21:48:51.0731903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dist_ops.h 2025-08-14T21:48:51.0735791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div.h 2025-08-14T21:48:51.0739556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide.h 2025-08-14T21:48:51.0744567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.0749276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide_native.h 2025-08-14T21:48:51.0753200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\divide_ops.h 2025-08-14T21:48:51.0757431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.0761822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.0766552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_cpu_dispatch.h 2025-08-14T21:48:51.0770438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_cuda_dispatch.h 2025-08-14T21:48:51.0774674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_meta.h 2025-08-14T21:48:51.0778848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_meta_dispatch.h 2025-08-14T21:48:51.0782978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_native.h 2025-08-14T21:48:51.0787004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\div_ops.h 2025-08-14T21:48:51.0792214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot.h 2025-08-14T21:48:51.0796144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.0800095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_cpu_dispatch.h 2025-08-14T21:48:51.0803965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_cuda_dispatch.h 2025-08-14T21:48:51.0808031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_native.h 2025-08-14T21:48:51.0813445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dot_ops.h 2025-08-14T21:48:51.0816943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout.h 2025-08-14T21:48:51.0820910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.0824951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout_native.h 2025-08-14T21:48:51.0829547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dropout_ops.h 2025-08-14T21:48:51.0834399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit.h 2025-08-14T21:48:51.0838591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.0842446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit_native.h 2025-08-14T21:48:51.0846782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dsplit_ops.h 2025-08-14T21:48:51.0851369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack.h 2025-08-14T21:48:51.0855252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.0860102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack_native.h 2025-08-14T21:48:51.0864416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\dstack_ops.h 2025-08-14T21:48:51.0868663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum.h 2025-08-14T21:48:51.0873046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.0877599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum_native.h 2025-08-14T21:48:51.0882484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\einsum_ops.h 2025-08-14T21:48:51.0889297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu.h 2025-08-14T21:48:51.0894286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward.h 2025-08-14T21:48:51.0898891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.0903665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_cpu_dispatch.h 2025-08-14T21:48:51.0908395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_cuda_dispatch.h 2025-08-14T21:48:51.0912514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_meta.h 2025-08-14T21:48:51.0918132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_meta_dispatch.h 2025-08-14T21:48:51.0922846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_native.h 2025-08-14T21:48:51.0926929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_backward_ops.h 2025-08-14T21:48:51.0931407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.0935260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_cpu_dispatch.h 2025-08-14T21:48:51.0939174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_cuda_dispatch.h 2025-08-14T21:48:51.0943401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_meta.h 2025-08-14T21:48:51.0948062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_meta_dispatch.h 2025-08-14T21:48:51.0952345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_native.h 2025-08-14T21:48:51.0955954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\elu_ops.h 2025-08-14T21:48:51.0960158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding.h 2025-08-14T21:48:51.0964565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward.h 2025-08-14T21:48:51.0968766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.0972805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward_native.h 2025-08-14T21:48:51.0977387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_backward_ops.h 2025-08-14T21:48:51.0982941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag.h 2025-08-14T21:48:51.0987673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.0991852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag_native.h 2025-08-14T21:48:51.0995860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_bag_ops.h 2025-08-14T21:48:51.1000037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.1004077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward.h 2025-08-14T21:48:51.1008397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.1013282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_cpu_dispatch.h 2025-08-14T21:48:51.1017785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_cuda_dispatch.h 2025-08-14T21:48:51.1021839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_native.h 2025-08-14T21:48:51.1025955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_dense_backward_ops.h 2025-08-14T21:48:51.1030117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_native.h 2025-08-14T21:48:51.1034137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_ops.h 2025-08-14T21:48:51.1038353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm.h 2025-08-14T21:48:51.1042599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.1048497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_cpu_dispatch.h 2025-08-14T21:48:51.1052842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_cuda_dispatch.h 2025-08-14T21:48:51.1057119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_meta_dispatch.h 2025-08-14T21:48:51.1061280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_native.h 2025-08-14T21:48:51.1065546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_renorm_ops.h 2025-08-14T21:48:51.1069909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward.h 2025-08-14T21:48:51.1074079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.1078480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward_native.h 2025-08-14T21:48:51.1082988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\embedding_sparse_backward_ops.h 2025-08-14T21:48:51.1087630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty.h 2025-08-14T21:48:51.1091684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.1096676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.1100700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_cpu_dispatch.h 2025-08-14T21:48:51.1104849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_cuda_dispatch.h 2025-08-14T21:48:51.1108874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like.h 2025-08-14T21:48:51.1114341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.1118391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like_native.h 2025-08-14T21:48:51.1122396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_like_ops.h 2025-08-14T21:48:51.1127022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_meta_dispatch.h 2025-08-14T21:48:51.1131098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_native.h 2025-08-14T21:48:51.1135070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_ops.h 2025-08-14T21:48:51.1139162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted.h 2025-08-14T21:48:51.1143356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.1148266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted_native.h 2025-08-14T21:48:51.1152545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_permuted_ops.h 2025-08-14T21:48:51.1156848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized.h 2025-08-14T21:48:51.1161101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.1165213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized_native.h 2025-08-14T21:48:51.1169252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_quantized_ops.h 2025-08-14T21:48:51.1173319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided.h 2025-08-14T21:48:51.1178323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.1183301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_cpu_dispatch.h 2025-08-14T21:48:51.1188011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_cuda_dispatch.h 2025-08-14T21:48:51.1192708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_meta_dispatch.h 2025-08-14T21:48:51.1198510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_native.h 2025-08-14T21:48:51.1202835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\empty_strided_ops.h 2025-08-14T21:48:51.1207842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq.h 2025-08-14T21:48:51.1211783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal.h 2025-08-14T21:48:51.1216539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_cpu_dispatch.h 2025-08-14T21:48:51.1221083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_cuda_dispatch.h 2025-08-14T21:48:51.1225119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_native.h 2025-08-14T21:48:51.1229830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\equal_ops.h 2025-08-14T21:48:51.1234247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.1238084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_cpu_dispatch.h 2025-08-14T21:48:51.1242160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_cuda_dispatch.h 2025-08-14T21:48:51.1246197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_meta.h 2025-08-14T21:48:51.1250762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_meta_dispatch.h 2025-08-14T21:48:51.1255096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_native.h 2025-08-14T21:48:51.1259279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eq_ops.h 2025-08-14T21:48:51.1263072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf.h 2025-08-14T21:48:51.1266973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc.h 2025-08-14T21:48:51.1271094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.2689945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_cpu_dispatch.h 2025-08-14T21:48:51.2693878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_cuda_dispatch.h 2025-08-14T21:48:51.2698136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_meta.h 2025-08-14T21:48:51.2702332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_meta_dispatch.h 2025-08-14T21:48:51.2706630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_native.h 2025-08-14T21:48:51.2710960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfc_ops.h 2025-08-14T21:48:51.2714739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv.h 2025-08-14T21:48:51.2718881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.2722954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_cpu_dispatch.h 2025-08-14T21:48:51.2727116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_cuda_dispatch.h 2025-08-14T21:48:51.2731245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_meta.h 2025-08-14T21:48:51.2735432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_meta_dispatch.h 2025-08-14T21:48:51.2739678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_native.h 2025-08-14T21:48:51.2744036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erfinv_ops.h 2025-08-14T21:48:51.2748674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.2753299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_cpu_dispatch.h 2025-08-14T21:48:51.2757318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_cuda_dispatch.h 2025-08-14T21:48:51.2761384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_meta.h 2025-08-14T21:48:51.2765144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_meta_dispatch.h 2025-08-14T21:48:51.2769751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_native.h 2025-08-14T21:48:51.2778777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\erf_ops.h 2025-08-14T21:48:51.2782392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp.h 2025-08-14T21:48:51.2786305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2.h 2025-08-14T21:48:51.2790360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.2795239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_cpu_dispatch.h 2025-08-14T21:48:51.2799168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_cuda_dispatch.h 2025-08-14T21:48:51.2803098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_meta.h 2025-08-14T21:48:51.2807304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_meta_dispatch.h 2025-08-14T21:48:51.2811785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_native.h 2025-08-14T21:48:51.2816466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp2_ops.h 2025-08-14T21:48:51.2831045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand.h 2025-08-14T21:48:51.2834862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as.h 2025-08-14T21:48:51.2839144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.2843274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as_native.h 2025-08-14T21:48:51.2847042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_as_ops.h 2025-08-14T21:48:51.2851313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.2855538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy.h 2025-08-14T21:48:51.2860065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.2864004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.2868101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_native.h 2025-08-14T21:48:51.2872365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_copy_ops.h 2025-08-14T21:48:51.2876517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_native.h 2025-08-14T21:48:51.2880802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expand_ops.h 2025-08-14T21:48:51.2885231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1.h 2025-08-14T21:48:51.2889864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.2893896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_cpu_dispatch.h 2025-08-14T21:48:51.2898384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_cuda_dispatch.h 2025-08-14T21:48:51.2902563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_meta.h 2025-08-14T21:48:51.2906802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_meta_dispatch.h 2025-08-14T21:48:51.2911469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_native.h 2025-08-14T21:48:51.2915758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\expm1_ops.h 2025-08-14T21:48:51.2919967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential.h 2025-08-14T21:48:51.2924035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.2928166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_cpu_dispatch.h 2025-08-14T21:48:51.2932093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_cuda_dispatch.h 2025-08-14T21:48:51.2936149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_meta_dispatch.h 2025-08-14T21:48:51.2940731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_native.h 2025-08-14T21:48:51.2944790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exponential_ops.h 2025-08-14T21:48:51.2949267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.2953369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_cpu_dispatch.h 2025-08-14T21:48:51.2957292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_cuda_dispatch.h 2025-08-14T21:48:51.2961128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_meta.h 2025-08-14T21:48:51.2964919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_meta_dispatch.h 2025-08-14T21:48:51.2968912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_native.h 2025-08-14T21:48:51.2972748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\exp_ops.h 2025-08-14T21:48:51.2976407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye.h 2025-08-14T21:48:51.2980430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.2984337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_cpu_dispatch.h 2025-08-14T21:48:51.2988489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_cuda_dispatch.h 2025-08-14T21:48:51.2992892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_meta_dispatch.h 2025-08-14T21:48:51.2996752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_native.h 2025-08-14T21:48:51.3000541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\eye_ops.h 2025-08-14T21:48:51.3004448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine.h 2025-08-14T21:48:51.3008872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask.h 2025-08-14T21:48:51.3013231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward.h 2025-08-14T21:48:51.3017514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3021577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_native.h 2025-08-14T21:48:51.3025705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward_ops.h 2025-08-14T21:48:51.3030500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.3035445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h 2025-08-14T21:48:51.3040053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h 2025-08-14T21:48:51.3044314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_native.h 2025-08-14T21:48:51.3048686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_ops.h 2025-08-14T21:48:51.3052959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3057060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_native.h 2025-08-14T21:48:51.3061193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_channel_affine_ops.h 2025-08-14T21:48:51.3065387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine.h 2025-08-14T21:48:51.3101378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask.h 2025-08-14T21:48:51.3105883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward.h 2025-08-14T21:48:51.3110593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3114742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_native.h 2025-08-14T21:48:51.3119359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward_ops.h 2025-08-14T21:48:51.3124471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.3128685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h 2025-08-14T21:48:51.3132928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h 2025-08-14T21:48:51.3137116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_native.h 2025-08-14T21:48:51.3141512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_ops.h 2025-08-14T21:48:51.3146153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3150663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_native.h 2025-08-14T21:48:51.3155087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fake_quantize_per_tensor_affine_ops.h 2025-08-14T21:48:51.3159529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight.h 2025-08-14T21:48:51.3164784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3168325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation.h 2025-08-14T21:48:51.3172807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3177450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_native.h 2025-08-14T21:48:51.3181099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_ops.h 2025-08-14T21:48:51.3185617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_native.h 2025-08-14T21:48:51.3190055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_fp16_weight_ops.h 2025-08-14T21:48:51.3194260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight.h 2025-08-14T21:48:51.3199381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3203819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation.h 2025-08-14T21:48:51.3208467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3213129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_native.h 2025-08-14T21:48:51.3217600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_ops.h 2025-08-14T21:48:51.3222155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_native.h 2025-08-14T21:48:51.3227772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_int8_weight_ops.h 2025-08-14T21:48:51.3231705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight.h 2025-08-14T21:48:51.3236419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3241431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight_native.h 2025-08-14T21:48:51.3246138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_linear_quantize_weight_ops.h 2025-08-14T21:48:51.3249564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16.h 2025-08-14T21:48:51.3254197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3259279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_native.h 2025-08-14T21:48:51.3262762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_ops.h 2025-08-14T21:48:51.3267489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix.h 2025-08-14T21:48:51.3272085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3276395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_native.h 2025-08-14T21:48:51.3280581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fbgemm_pack_quantized_matrix_ops.h 2025-08-14T21:48:51.3285094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout.h 2025-08-14T21:48:51.3290215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3293559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout_native.h 2025-08-14T21:48:51.3298004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_alpha_dropout_ops.h 2025-08-14T21:48:51.3302675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout.h 2025-08-14T21:48:51.3306586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3311041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout_native.h 2025-08-14T21:48:51.3316231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\feature_dropout_ops.h 2025-08-14T21:48:51.3320194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft.h 2025-08-14T21:48:51.3323923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2.h 2025-08-14T21:48:51.3327807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3332449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2_native.h 2025-08-14T21:48:51.3336549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft2_ops.h 2025-08-14T21:48:51.3340662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq.h 2025-08-14T21:48:51.3345177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.3349377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq_native.h 2025-08-14T21:48:51.3353502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftfreq_ops.h 2025-08-14T21:48:51.3357488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn.h 2025-08-14T21:48:51.3361443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3365425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn_native.h 2025-08-14T21:48:51.3369490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftn_ops.h 2025-08-14T21:48:51.3373767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift.h 2025-08-14T21:48:51.3377966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3383378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift_native.h 2025-08-14T21:48:51.3387364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fftshift_ops.h 2025-08-14T21:48:51.3391940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3396019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft_native.h 2025-08-14T21:48:51.3400417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_fft_ops.h 2025-08-14T21:48:51.3404724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft.h 2025-08-14T21:48:51.3408547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2.h 2025-08-14T21:48:51.3412753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3416658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2_native.h 2025-08-14T21:48:51.3421143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft2_ops.h 2025-08-14T21:48:51.3425997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn.h 2025-08-14T21:48:51.3430375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3435132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn_native.h 2025-08-14T21:48:51.3439804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfftn_ops.h 2025-08-14T21:48:51.3444284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3447919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft_native.h 2025-08-14T21:48:51.3451811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_hfft_ops.h 2025-08-14T21:48:51.3456750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft.h 2025-08-14T21:48:51.3460043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2.h 2025-08-14T21:48:51.3464310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3468786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2_native.h 2025-08-14T21:48:51.3473041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft2_ops.h 2025-08-14T21:48:51.3477117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn.h 2025-08-14T21:48:51.3481356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3485336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn_native.h 2025-08-14T21:48:51.3489730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftn_ops.h 2025-08-14T21:48:51.3493678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift.h 2025-08-14T21:48:51.3497853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3502091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift_native.h 2025-08-14T21:48:51.3506079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifftshift_ops.h 2025-08-14T21:48:51.3510519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3514500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft_native.h 2025-08-14T21:48:51.3518433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ifft_ops.h 2025-08-14T21:48:51.3522395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft.h 2025-08-14T21:48:51.3526263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2.h 2025-08-14T21:48:51.3530409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3534746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2_native.h 2025-08-14T21:48:51.3550347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft2_ops.h 2025-08-14T21:48:51.3550967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn.h 2025-08-14T21:48:51.3551703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3552459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn_native.h 2025-08-14T21:48:51.3555171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfftn_ops.h 2025-08-14T21:48:51.3559370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3563517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft_native.h 2025-08-14T21:48:51.3567837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_ihfft_ops.h 2025-08-14T21:48:51.3572464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft.h 2025-08-14T21:48:51.3576325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2.h 2025-08-14T21:48:51.3580320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3584879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2_native.h 2025-08-14T21:48:51.3588950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft2_ops.h 2025-08-14T21:48:51.3592948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn.h 2025-08-14T21:48:51.3597668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3601258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn_native.h 2025-08-14T21:48:51.3605221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfftn_ops.h 2025-08-14T21:48:51.3609356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3614076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft_native.h 2025-08-14T21:48:51.3618225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_irfft_ops.h 2025-08-14T21:48:51.3622177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft.h 2025-08-14T21:48:51.3626007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2.h 2025-08-14T21:48:51.3630076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3633994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2_native.h 2025-08-14T21:48:51.3637952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft2_ops.h 2025-08-14T21:48:51.3641913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq.h 2025-08-14T21:48:51.3646126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.3650401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq_native.h 2025-08-14T21:48:51.3654665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftfreq_ops.h 2025-08-14T21:48:51.3658615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn.h 2025-08-14T21:48:51.3662669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3667203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn_native.h 2025-08-14T21:48:51.3671373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfftn_ops.h 2025-08-14T21:48:51.3675610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3679596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft_native.h 2025-08-14T21:48:51.3683583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fft_rfft_ops.h 2025-08-14T21:48:51.3687711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill.h 2025-08-14T21:48:51.3692701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.3695648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_cpu_dispatch.h 2025-08-14T21:48:51.3699905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_cuda_dispatch.h 2025-08-14T21:48:51.3705070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal.h 2025-08-14T21:48:51.3709762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3713516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal_native.h 2025-08-14T21:48:51.3718067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_diagonal_ops.h 2025-08-14T21:48:51.3723671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_meta_dispatch.h 2025-08-14T21:48:51.3726289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_native.h 2025-08-14T21:48:51.3730409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fill_ops.h 2025-08-14T21:48:51.3734032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix.h 2025-08-14T21:48:51.3738483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3742193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix_native.h 2025-08-14T21:48:51.3746000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fix_ops.h 2025-08-14T21:48:51.3750182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten.h 2025-08-14T21:48:51.3754033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3757964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors.h 2025-08-14T21:48:51.3762177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3766083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors_native.h 2025-08-14T21:48:51.3770205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_dense_tensors_ops.h 2025-08-14T21:48:51.3774244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_native.h 2025-08-14T21:48:51.3778482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flatten_ops.h 2025-08-14T21:48:51.3782908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip.h 2025-08-14T21:48:51.3788294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr.h 2025-08-14T21:48:51.3790943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3795071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr_native.h 2025-08-14T21:48:51.3800527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fliplr_ops.h 2025-08-14T21:48:51.3803684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud.h 2025-08-14T21:48:51.3807659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3813295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud_native.h 2025-08-14T21:48:51.3815853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flipud_ops.h 2025-08-14T21:48:51.3820286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.3825662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_cpu_dispatch.h 2025-08-14T21:48:51.3828210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_cuda_dispatch.h 2025-08-14T21:48:51.3832922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_native.h 2025-08-14T21:48:51.3838281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\flip_ops.h 2025-08-14T21:48:51.3840753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power.h 2025-08-14T21:48:51.3845190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.3850874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power_native.h 2025-08-14T21:48:51.3853745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\float_power_ops.h 2025-08-14T21:48:51.3857817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor.h 2025-08-14T21:48:51.3863388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.3865842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_cpu_dispatch.h 2025-08-14T21:48:51.3870125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_cuda_dispatch.h 2025-08-14T21:48:51.3875914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide.h 2025-08-14T21:48:51.3879330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.3884274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_cpu_dispatch.h 2025-08-14T21:48:51.3888333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_cuda_dispatch.h 2025-08-14T21:48:51.3892984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_meta_dispatch.h 2025-08-14T21:48:51.3897510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_native.h 2025-08-14T21:48:51.3902059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_divide_ops.h 2025-08-14T21:48:51.3906911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_meta.h 2025-08-14T21:48:51.3911510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_meta_dispatch.h 2025-08-14T21:48:51.3917279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_native.h 2025-08-14T21:48:51.3921718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\floor_ops.h 2025-08-14T21:48:51.3926277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax.h 2025-08-14T21:48:51.3930752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.3935165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_cpu_dispatch.h 2025-08-14T21:48:51.3939321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_cuda_dispatch.h 2025-08-14T21:48:51.3943595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_meta.h 2025-08-14T21:48:51.3949669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_meta_dispatch.h 2025-08-14T21:48:51.3953207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_native.h 2025-08-14T21:48:51.3957524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmax_ops.h 2025-08-14T21:48:51.3961216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin.h 2025-08-14T21:48:51.3966663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.3970148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_cpu_dispatch.h 2025-08-14T21:48:51.3974156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_cuda_dispatch.h 2025-08-14T21:48:51.3978550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_meta.h 2025-08-14T21:48:51.3999227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_meta_dispatch.h 2025-08-14T21:48:51.4003191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_native.h 2025-08-14T21:48:51.4007044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmin_ops.h 2025-08-14T21:48:51.4011522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod.h 2025-08-14T21:48:51.4016042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.4019927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.4023810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_cpu_dispatch.h 2025-08-14T21:48:51.4027981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_cuda_dispatch.h 2025-08-14T21:48:51.4032052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_meta.h 2025-08-14T21:48:51.4037633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_meta_dispatch.h 2025-08-14T21:48:51.4040842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_native.h 2025-08-14T21:48:51.4044593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fmod_ops.h 2025-08-14T21:48:51.4048122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac.h 2025-08-14T21:48:51.4052971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d.h 2025-08-14T21:48:51.4057009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward.h 2025-08-14T21:48:51.4061455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.4065481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_cpu_dispatch.h 2025-08-14T21:48:51.4070116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_cuda_dispatch.h 2025-08-14T21:48:51.4074323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_meta.h 2025-08-14T21:48:51.4078292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_meta_dispatch.h 2025-08-14T21:48:51.4082524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_native.h 2025-08-14T21:48:51.4086582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_backward_ops.h 2025-08-14T21:48:51.4090927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.4094891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_cpu_dispatch.h 2025-08-14T21:48:51.4099110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_cuda_dispatch.h 2025-08-14T21:48:51.4103375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_meta.h 2025-08-14T21:48:51.4108407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_meta_dispatch.h 2025-08-14T21:48:51.4112541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_native.h 2025-08-14T21:48:51.4116647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool2d_ops.h 2025-08-14T21:48:51.4120702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d.h 2025-08-14T21:48:51.4124886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward.h 2025-08-14T21:48:51.4129139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_cpu_dispatch.h 2025-08-14T21:48:51.4133611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_cuda_dispatch.h 2025-08-14T21:48:51.4137535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_native.h 2025-08-14T21:48:51.4141668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_backward_ops.h 2025-08-14T21:48:51.4146450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.4150626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_cpu_dispatch.h 2025-08-14T21:48:51.4155013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_cuda_dispatch.h 2025-08-14T21:48:51.4159208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_meta.h 2025-08-14T21:48:51.4163270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_meta_dispatch.h 2025-08-14T21:48:51.4167264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_native.h 2025-08-14T21:48:51.4171608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fractional_max_pool3d_ops.h 2025-08-14T21:48:51.4177140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.4180357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_cpu_dispatch.h 2025-08-14T21:48:51.4184439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_cuda_dispatch.h 2025-08-14T21:48:51.4188885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_meta.h 2025-08-14T21:48:51.4193259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_meta_dispatch.h 2025-08-14T21:48:51.4197395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_native.h 2025-08-14T21:48:51.4202138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frac_ops.h 2025-08-14T21:48:51.4205095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp.h 2025-08-14T21:48:51.4242081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.4246451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_cpu_dispatch.h 2025-08-14T21:48:51.4250379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_cuda_dispatch.h 2025-08-14T21:48:51.4254502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_native.h 2025-08-14T21:48:51.4258910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frexp_ops.h 2025-08-14T21:48:51.4262546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm.h 2025-08-14T21:48:51.4267341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.4271664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm_native.h 2025-08-14T21:48:51.4276558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\frobenius_norm_ops.h 2025-08-14T21:48:51.4279983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_blob.h 2025-08-14T21:48:51.4284034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file.h 2025-08-14T21:48:51.4289793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.4292598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_cpu_dispatch.h 2025-08-14T21:48:51.4296808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_native.h 2025-08-14T21:48:51.4302327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\from_file_ops.h 2025-08-14T21:48:51.4304891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full.h 2025-08-14T21:48:51.4309259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.4314042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like.h 2025-08-14T21:48:51.4317495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.4321514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like_native.h 2025-08-14T21:48:51.4325387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_like_ops.h 2025-08-14T21:48:51.4329549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_native.h 2025-08-14T21:48:51.4334156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\full_ops.h 2025-08-14T21:48:51.4337280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant.h 2025-08-14T21:48:51.4341915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.4346214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_native.h 2025-08-14T21:48:51.4350452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_ops.h 2025-08-14T21:48:51.4354513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather.h 2025-08-14T21:48:51.4359430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward.h 2025-08-14T21:48:51.4362596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.4366864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward_native.h 2025-08-14T21:48:51.4372057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_backward_ops.h 2025-08-14T21:48:51.4375729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.4380265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.4393392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_cpu_dispatch.h 2025-08-14T21:48:51.4399752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_cuda_dispatch.h 2025-08-14T21:48:51.4405912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_meta.h 2025-08-14T21:48:51.4411532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_meta_dispatch.h 2025-08-14T21:48:51.4411784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_native.h 2025-08-14T21:48:51.4412028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gather_ops.h 2025-08-14T21:48:51.4412783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd.h 2025-08-14T21:48:51.4418745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.4421021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_cpu_dispatch.h 2025-08-14T21:48:51.4425748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_cuda_dispatch.h 2025-08-14T21:48:51.4429429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_meta.h 2025-08-14T21:48:51.4434195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_meta_dispatch.h 2025-08-14T21:48:51.4438010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_native.h 2025-08-14T21:48:51.4442743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gcd_ops.h 2025-08-14T21:48:51.4445782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge.h 2025-08-14T21:48:51.4449413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu.h 2025-08-14T21:48:51.4453104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward.h 2025-08-14T21:48:51.4457360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.4461699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_cpu_dispatch.h 2025-08-14T21:48:51.4465757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_cuda_dispatch.h 2025-08-14T21:48:51.4469871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_meta.h 2025-08-14T21:48:51.4474259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_meta_dispatch.h 2025-08-14T21:48:51.4478264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_native.h 2025-08-14T21:48:51.4482177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_backward_ops.h 2025-08-14T21:48:51.4488469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.4490745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_cpu_dispatch.h 2025-08-14T21:48:51.4494653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_cuda_dispatch.h 2025-08-14T21:48:51.4498572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_meta.h 2025-08-14T21:48:51.4502524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_meta_dispatch.h 2025-08-14T21:48:51.4506669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_native.h 2025-08-14T21:48:51.4510654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gelu_ops.h 2025-08-14T21:48:51.4514288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric.h 2025-08-14T21:48:51.4518956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.4523434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_cpu_dispatch.h 2025-08-14T21:48:51.4527847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_cuda_dispatch.h 2025-08-14T21:48:51.4531895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_meta_dispatch.h 2025-08-14T21:48:51.4536136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_native.h 2025-08-14T21:48:51.4540826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geometric_ops.h 2025-08-14T21:48:51.4546201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf.h 2025-08-14T21:48:51.4548831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_cpu_dispatch.h 2025-08-14T21:48:51.4552986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_cuda_dispatch.h 2025-08-14T21:48:51.4558770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_native.h 2025-08-14T21:48:51.4561293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\geqrf_ops.h 2025-08-14T21:48:51.4565574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger.h 2025-08-14T21:48:51.4570444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.4573411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger_native.h 2025-08-14T21:48:51.4577851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ger_ops.h 2025-08-14T21:48:51.4581369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.4585364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_cpu_dispatch.h 2025-08-14T21:48:51.4590315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_cuda_dispatch.h 2025-08-14T21:48:51.4593773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_meta.h 2025-08-14T21:48:51.4597780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_meta_dispatch.h 2025-08-14T21:48:51.4603047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_native.h 2025-08-14T21:48:51.4605682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ge_ops.h 2025-08-14T21:48:51.4609587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu.h 2025-08-14T21:48:51.4613012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward.h 2025-08-14T21:48:51.4616982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_cpu_dispatch.h 2025-08-14T21:48:51.4621833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_cuda_dispatch.h 2025-08-14T21:48:51.4626047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp.h 2025-08-14T21:48:51.4630494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.4634767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_cpu_dispatch.h 2025-08-14T21:48:51.4638858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_cuda_dispatch.h 2025-08-14T21:48:51.4643594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_native.h 2025-08-14T21:48:51.4648214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_jvp_ops.h 2025-08-14T21:48:51.4652468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_native.h 2025-08-14T21:48:51.4656719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_backward_ops.h 2025-08-14T21:48:51.4661154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.4664962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_cpu_dispatch.h 2025-08-14T21:48:51.4669153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_cuda_dispatch.h 2025-08-14T21:48:51.4673754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp.h 2025-08-14T21:48:51.4677654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.4681761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_cpu_dispatch.h 2025-08-14T21:48:51.4686922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_cuda_dispatch.h 2025-08-14T21:48:51.4690818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_native.h 2025-08-14T21:48:51.4694855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_jvp_ops.h 2025-08-14T21:48:51.4698801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_meta.h 2025-08-14T21:48:51.4702569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_meta_dispatch.h 2025-08-14T21:48:51.4706478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_native.h 2025-08-14T21:48:51.4710386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\glu_ops.h 2025-08-14T21:48:51.4714194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient.h 2025-08-14T21:48:51.4718321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.4722265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient_native.h 2025-08-14T21:48:51.4726174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gradient_ops.h 2025-08-14T21:48:51.4730362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater.h 2025-08-14T21:48:51.4734198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.4738089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal.h 2025-08-14T21:48:51.4742073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.4746336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal_native.h 2025-08-14T21:48:51.4750330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_equal_ops.h 2025-08-14T21:48:51.4755025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_native.h 2025-08-14T21:48:51.4759189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\greater_ops.h 2025-08-14T21:48:51.4763113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler.h 2025-08-14T21:48:51.4768431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d.h 2025-08-14T21:48:51.4772412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward.h 2025-08-14T21:48:51.4776843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.4781269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_cpu_dispatch.h 2025-08-14T21:48:51.4785256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_cuda_dispatch.h 2025-08-14T21:48:51.4789561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_native.h 2025-08-14T21:48:51.4793609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_backward_ops.h 2025-08-14T21:48:51.4797939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.4803045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_cpu_dispatch.h 2025-08-14T21:48:51.4806526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_cuda_dispatch.h 2025-08-14T21:48:51.4811335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_native.h 2025-08-14T21:48:51.4815703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_2d_ops.h 2025-08-14T21:48:51.4821756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d.h 2025-08-14T21:48:51.4824202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward.h 2025-08-14T21:48:51.4828753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.4834417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_cpu_dispatch.h 2025-08-14T21:48:51.4837334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_cuda_dispatch.h 2025-08-14T21:48:51.4841694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_native.h 2025-08-14T21:48:51.4846910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_backward_ops.h 2025-08-14T21:48:51.4850209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.4854410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_cpu_dispatch.h 2025-08-14T21:48:51.4859577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_cuda_dispatch.h 2025-08-14T21:48:51.4863138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_native.h 2025-08-14T21:48:51.4867425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_3d_ops.h 2025-08-14T21:48:51.4872312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.4878000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_native.h 2025-08-14T21:48:51.4880751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\grid_sampler_ops.h 2025-08-14T21:48:51.4884989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm.h 2025-08-14T21:48:51.4900288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.4901701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm_native.h 2025-08-14T21:48:51.4902320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\group_norm_ops.h 2025-08-14T21:48:51.4902893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru.h 2025-08-14T21:48:51.4908254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell.h 2025-08-14T21:48:51.4911168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.4915576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell_native.h 2025-08-14T21:48:51.4921964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_cell_ops.h 2025-08-14T21:48:51.4923863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.4927683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_native.h 2025-08-14T21:48:51.4933667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gru_ops.h 2025-08-14T21:48:51.4935443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt.h 2025-08-14T21:48:51.4939460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.4943346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_cpu_dispatch.h 2025-08-14T21:48:51.4947355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_cuda_dispatch.h 2025-08-14T21:48:51.4951841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_meta.h 2025-08-14T21:48:51.4955603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_meta_dispatch.h 2025-08-14T21:48:51.4959432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_native.h 2025-08-14T21:48:51.4963254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\gt_ops.h 2025-08-14T21:48:51.4966846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window.h 2025-08-14T21:48:51.4971152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.4975073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window_native.h 2025-08-14T21:48:51.4979310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hamming_window_ops.h 2025-08-14T21:48:51.4983537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window.h 2025-08-14T21:48:51.4987477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.4991992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window_native.h 2025-08-14T21:48:51.4996094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hann_window_ops.h 2025-08-14T21:48:51.4999963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink.h 2025-08-14T21:48:51.5004333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward.h 2025-08-14T21:48:51.5008731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.5012857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_cpu_dispatch.h 2025-08-14T21:48:51.5016820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_cuda_dispatch.h 2025-08-14T21:48:51.5021364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_meta.h 2025-08-14T21:48:51.5025541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_meta_dispatch.h 2025-08-14T21:48:51.5029793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_native.h 2025-08-14T21:48:51.5035043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_backward_ops.h 2025-08-14T21:48:51.5038549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.5042471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_cpu_dispatch.h 2025-08-14T21:48:51.5046725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_cuda_dispatch.h 2025-08-14T21:48:51.5050725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_meta.h 2025-08-14T21:48:51.5054721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_meta_dispatch.h 2025-08-14T21:48:51.5058734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_native.h 2025-08-14T21:48:51.5062756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardshrink_ops.h 2025-08-14T21:48:51.5067094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid.h 2025-08-14T21:48:51.5071597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward.h 2025-08-14T21:48:51.5075988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.5080042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_cpu_dispatch.h 2025-08-14T21:48:51.5084023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_cuda_dispatch.h 2025-08-14T21:48:51.5088024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_meta.h 2025-08-14T21:48:51.5092286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_meta_dispatch.h 2025-08-14T21:48:51.5096471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_native.h 2025-08-14T21:48:51.5101130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_backward_ops.h 2025-08-14T21:48:51.5105380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.5109507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_cpu_dispatch.h 2025-08-14T21:48:51.5113573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_cuda_dispatch.h 2025-08-14T21:48:51.5117639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_meta.h 2025-08-14T21:48:51.5122222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_meta_dispatch.h 2025-08-14T21:48:51.5126366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_native.h 2025-08-14T21:48:51.5130603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardsigmoid_ops.h 2025-08-14T21:48:51.5134600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish.h 2025-08-14T21:48:51.5138849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward.h 2025-08-14T21:48:51.5144027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.5147618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_cpu_dispatch.h 2025-08-14T21:48:51.5152337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_cuda_dispatch.h 2025-08-14T21:48:51.5156757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_native.h 2025-08-14T21:48:51.5160941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_backward_ops.h 2025-08-14T21:48:51.5164994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_cpu_dispatch.h 2025-08-14T21:48:51.5169479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_cuda_dispatch.h 2025-08-14T21:48:51.5173357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_meta_dispatch.h 2025-08-14T21:48:51.5177556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_native.h 2025-08-14T21:48:51.5182094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardswish_ops.h 2025-08-14T21:48:51.5185888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh.h 2025-08-14T21:48:51.5190030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward.h 2025-08-14T21:48:51.5194861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_cpu_dispatch.h 2025-08-14T21:48:51.5200504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_cuda_dispatch.h 2025-08-14T21:48:51.5203008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_native.h 2025-08-14T21:48:51.5207185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_backward_ops.h 2025-08-14T21:48:51.5213062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_cpu_dispatch.h 2025-08-14T21:48:51.5216298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_cuda_dispatch.h 2025-08-14T21:48:51.5220815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_meta_dispatch.h 2025-08-14T21:48:51.5225823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_native.h 2025-08-14T21:48:51.5229033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hardtanh_ops.h 2025-08-14T21:48:51.5233263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor.h 2025-08-14T21:48:51.5238478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.5241645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_cpu_dispatch.h 2025-08-14T21:48:51.5246106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_cuda_dispatch.h 2025-08-14T21:48:51.5250938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_meta.h 2025-08-14T21:48:51.5254423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_meta_dispatch.h 2025-08-14T21:48:51.5258616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_native.h 2025-08-14T21:48:51.5263485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hash_tensor_ops.h 2025-08-14T21:48:51.5267182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside.h 2025-08-14T21:48:51.5271822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.5276242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_cpu_dispatch.h 2025-08-14T21:48:51.5280305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_cuda_dispatch.h 2025-08-14T21:48:51.5312468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_meta.h 2025-08-14T21:48:51.5316545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_meta_dispatch.h 2025-08-14T21:48:51.5320585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_native.h 2025-08-14T21:48:51.5324567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\heaviside_ops.h 2025-08-14T21:48:51.5328643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss.h 2025-08-14T21:48:51.5333164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.5337046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss_native.h 2025-08-14T21:48:51.5341198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hinge_embedding_loss_ops.h 2025-08-14T21:48:51.5374831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc.h 2025-08-14T21:48:51.5378952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_cpu_dispatch.h 2025-08-14T21:48:51.5383943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_cuda_dispatch.h 2025-08-14T21:48:51.5389443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_native.h 2025-08-14T21:48:51.5394595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histc_ops.h 2025-08-14T21:48:51.5399004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram.h 2025-08-14T21:48:51.5403344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd.h 2025-08-14T21:48:51.5407840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.5412057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd_native.h 2025-08-14T21:48:51.5416051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogramdd_ops.h 2025-08-14T21:48:51.5420278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram_cpu_dispatch.h 2025-08-14T21:48:51.5424212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram_native.h 2025-08-14T21:48:51.5429197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\histogram_ops.h 2025-08-14T21:48:51.5433640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit.h 2025-08-14T21:48:51.5437485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.5441372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit_native.h 2025-08-14T21:48:51.5445391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hsplit_ops.h 2025-08-14T21:48:51.5449808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hspmm.h 2025-08-14T21:48:51.5453548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hspmm_native.h 2025-08-14T21:48:51.5457353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hspmm_ops.h 2025-08-14T21:48:51.5462218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack.h 2025-08-14T21:48:51.5466958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.5470980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack_native.h 2025-08-14T21:48:51.5475029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hstack_ops.h 2025-08-14T21:48:51.5478925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss.h 2025-08-14T21:48:51.5482800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward.h 2025-08-14T21:48:51.5486878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.5491088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_cpu_dispatch.h 2025-08-14T21:48:51.5495740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_cuda_dispatch.h 2025-08-14T21:48:51.5500105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_native.h 2025-08-14T21:48:51.5505620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_backward_ops.h 2025-08-14T21:48:51.5510370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_cpu_dispatch.h 2025-08-14T21:48:51.5515218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_cuda_dispatch.h 2025-08-14T21:48:51.5520145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_native.h 2025-08-14T21:48:51.5524555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\huber_loss_ops.h 2025-08-14T21:48:51.5529317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot.h 2025-08-14T21:48:51.5533950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.5538620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_cpu_dispatch.h 2025-08-14T21:48:51.5568713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_cuda_dispatch.h 2025-08-14T21:48:51.5572827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_meta.h 2025-08-14T21:48:51.5576897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_meta_dispatch.h 2025-08-14T21:48:51.5581210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_native.h 2025-08-14T21:48:51.5585975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\hypot_ops.h 2025-08-14T21:48:51.5626005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0.h 2025-08-14T21:48:51.5630673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.5636199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_cpu_dispatch.h 2025-08-14T21:48:51.5640136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_cuda_dispatch.h 2025-08-14T21:48:51.5681588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_meta.h 2025-08-14T21:48:51.5686542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_meta_dispatch.h 2025-08-14T21:48:51.5713620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_native.h 2025-08-14T21:48:51.5718795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\i0_ops.h 2025-08-14T21:48:51.5722743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma.h 2025-08-14T21:48:51.5726655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac.h 2025-08-14T21:48:51.5730617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.5734435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_cpu_dispatch.h 2025-08-14T21:48:51.5738688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_cuda_dispatch.h 2025-08-14T21:48:51.5742621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_meta.h 2025-08-14T21:48:51.5746706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_meta_dispatch.h 2025-08-14T21:48:51.5750810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_native.h 2025-08-14T21:48:51.5755063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igammac_ops.h 2025-08-14T21:48:51.5759303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.5763372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_cpu_dispatch.h 2025-08-14T21:48:51.5768578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_cuda_dispatch.h 2025-08-14T21:48:51.5772623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_meta.h 2025-08-14T21:48:51.5776659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_meta_dispatch.h 2025-08-14T21:48:51.5780918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_native.h 2025-08-14T21:48:51.5785081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\igamma_ops.h 2025-08-14T21:48:51.5790251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col.h 2025-08-14T21:48:51.5794049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_cpu_dispatch.h 2025-08-14T21:48:51.5798225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_cuda_dispatch.h 2025-08-14T21:48:51.5801938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_native.h 2025-08-14T21:48:51.5805875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\im2col_ops.h 2025-08-14T21:48:51.5809975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag.h 2025-08-14T21:48:51.5815276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.5818460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag_native.h 2025-08-14T21:48:51.5822281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\imag_ops.h 2025-08-14T21:48:51.5826014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index.h 2025-08-14T21:48:51.5829774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add.h 2025-08-14T21:48:51.5833917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.5837880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.5842689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_cpu_dispatch.h 2025-08-14T21:48:51.5846477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_cuda_dispatch.h 2025-08-14T21:48:51.5850660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_meta.h 2025-08-14T21:48:51.5854660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_meta_dispatch.h 2025-08-14T21:48:51.5860986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_native.h 2025-08-14T21:48:51.5865355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_add_ops.h 2025-08-14T21:48:51.5870342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.5874257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy.h 2025-08-14T21:48:51.5878604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.5882793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.5887499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_cpu_dispatch.h 2025-08-14T21:48:51.5891595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_cuda_dispatch.h 2025-08-14T21:48:51.5895623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_meta.h 2025-08-14T21:48:51.5899831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_meta_dispatch.h 2025-08-14T21:48:51.5904168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_native.h 2025-08-14T21:48:51.5908240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_copy_ops.h 2025-08-14T21:48:51.5918051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_cpu_dispatch.h 2025-08-14T21:48:51.5918705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_cuda_dispatch.h 2025-08-14T21:48:51.5921193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill.h 2025-08-14T21:48:51.5928878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.5930377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.5943203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_cpu_dispatch.h 2025-08-14T21:48:51.5943936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_cuda_dispatch.h 2025-08-14T21:48:51.5944617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_meta_dispatch.h 2025-08-14T21:48:51.5950823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_native.h 2025-08-14T21:48:51.5966116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_fill_ops.h 2025-08-14T21:48:51.5974773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_meta.h 2025-08-14T21:48:51.5975516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_meta_dispatch.h 2025-08-14T21:48:51.5976140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_native.h 2025-08-14T21:48:51.5976711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_ops.h 2025-08-14T21:48:51.5977274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put.h 2025-08-14T21:48:51.5992730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.6000887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put_native.h 2025-08-14T21:48:51.6001502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_put_ops.h 2025-08-14T21:48:51.6002143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce.h 2025-08-14T21:48:51.6003002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.6004388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_cpu_dispatch.h 2025-08-14T21:48:51.6010610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_cuda_dispatch.h 2025-08-14T21:48:51.6015572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_meta.h 2025-08-14T21:48:51.6021614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_meta_dispatch.h 2025-08-14T21:48:51.6024175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_native.h 2025-08-14T21:48:51.6030685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_reduce_ops.h 2025-08-14T21:48:51.6035118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select.h 2025-08-14T21:48:51.6039153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward.h 2025-08-14T21:48:51.6043411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6048628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward_native.h 2025-08-14T21:48:51.6052052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_backward_ops.h 2025-08-14T21:48:51.6056464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6060516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_cpu_dispatch.h 2025-08-14T21:48:51.6064592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_cuda_dispatch.h 2025-08-14T21:48:51.6068827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_native.h 2025-08-14T21:48:51.6073088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\index_select_ops.h 2025-08-14T21:48:51.6077187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices.h 2025-08-14T21:48:51.6081346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.6085238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy.h 2025-08-14T21:48:51.6089451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.6093517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.6097683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_native.h 2025-08-14T21:48:51.6101800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_copy_ops.h 2025-08-14T21:48:51.6105814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_native.h 2025-08-14T21:48:51.6110409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\indices_ops.h 2025-08-14T21:48:51.6114820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward.h 2025-08-14T21:48:51.6118936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6123299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_native.h 2025-08-14T21:48:51.6127605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\infinitely_differentiable_gelu_backward_ops.h 2025-08-14T21:48:51.6131620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner.h 2025-08-14T21:48:51.6136661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6139472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner_native.h 2025-08-14T21:48:51.6143453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inner_ops.h 2025-08-14T21:48:51.6147461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm.h 2025-08-14T21:48:51.6151640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6156129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm_native.h 2025-08-14T21:48:51.6160122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\instance_norm_ops.h 2025-08-14T21:48:51.6164697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr.h 2025-08-14T21:48:51.6168611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.6172437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr_native.h 2025-08-14T21:48:51.6176735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\int_repr_ops.h 2025-08-14T21:48:51.6180664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse.h 2025-08-14T21:48:51.6184655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6188634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse_native.h 2025-08-14T21:48:51.6192576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\inverse_ops.h 2025-08-14T21:48:51.6196560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose.h 2025-08-14T21:48:51.6200398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6205204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose_native.h 2025-08-14T21:48:51.6209406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isclose_ops.h 2025-08-14T21:48:51.6213434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite.h 2025-08-14T21:48:51.6217460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6221467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite_native.h 2025-08-14T21:48:51.6225403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isfinite_ops.h 2025-08-14T21:48:51.6229445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin.h 2025-08-14T21:48:51.6233683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf.h 2025-08-14T21:48:51.6239290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.6242520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf_native.h 2025-08-14T21:48:51.6246157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isinf_ops.h 2025-08-14T21:48:51.6250539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.6254522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_cpu_dispatch.h 2025-08-14T21:48:51.6258318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_cuda_dispatch.h 2025-08-14T21:48:51.6262355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_meta.h 2025-08-14T21:48:51.6274395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_meta_dispatch.h 2025-08-14T21:48:51.6275617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_native.h 2025-08-14T21:48:51.6277553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isin_ops.h 2025-08-14T21:48:51.6281546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan.h 2025-08-14T21:48:51.6285552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.6289444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_cpu_dispatch.h 2025-08-14T21:48:51.6293414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_cuda_dispatch.h 2025-08-14T21:48:51.6297309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_native.h 2025-08-14T21:48:51.6301202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isnan_ops.h 2025-08-14T21:48:51.6305126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf.h 2025-08-14T21:48:51.6309205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.6313047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_cpu_dispatch.h 2025-08-14T21:48:51.6317247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_cuda_dispatch.h 2025-08-14T21:48:51.6321326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_meta.h 2025-08-14T21:48:51.6325235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_meta_dispatch.h 2025-08-14T21:48:51.6329588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_native.h 2025-08-14T21:48:51.6333507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isneginf_ops.h 2025-08-14T21:48:51.6337405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf.h 2025-08-14T21:48:51.6341876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.6345880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_cpu_dispatch.h 2025-08-14T21:48:51.6349997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_cuda_dispatch.h 2025-08-14T21:48:51.6354725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_meta.h 2025-08-14T21:48:51.6359266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_meta_dispatch.h 2025-08-14T21:48:51.6363313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_native.h 2025-08-14T21:48:51.6367318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isposinf_ops.h 2025-08-14T21:48:51.6371374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal.h 2025-08-14T21:48:51.6375484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6380439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal_native.h 2025-08-14T21:48:51.6385184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\isreal_ops.h 2025-08-14T21:48:51.6390060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft.h 2025-08-14T21:48:51.6395225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6400027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft_native.h 2025-08-14T21:48:51.6404759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\istft_ops.h 2025-08-14T21:48:51.6409695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced.h 2025-08-14T21:48:51.6414800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.6419803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced_native.h 2025-08-14T21:48:51.6424590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_coalesced_ops.h 2025-08-14T21:48:51.6428959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex.h 2025-08-14T21:48:51.6432971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6436761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex_native.h 2025-08-14T21:48:51.6440671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_complex_ops.h 2025-08-14T21:48:51.6445069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj.h 2025-08-14T21:48:51.6449643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6453679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj_native.h 2025-08-14T21:48:51.6459051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_conj_ops.h 2025-08-14T21:48:51.6463815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed.h 2025-08-14T21:48:51.6468801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6473361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed_native.h 2025-08-14T21:48:51.6478047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_distributed_ops.h 2025-08-14T21:48:51.6482973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point.h 2025-08-14T21:48:51.6488348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6493250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point_native.h 2025-08-14T21:48:51.6498888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_floating_point_ops.h 2025-08-14T21:48:51.6503835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference.h 2025-08-14T21:48:51.6508710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6513503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference_native.h 2025-08-14T21:48:51.6518230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_inference_ops.h 2025-08-14T21:48:51.6522794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf.h 2025-08-14T21:48:51.6527171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6531939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf_native.h 2025-08-14T21:48:51.6536546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_leaf_ops.h 2025-08-14T21:48:51.6541180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg.h 2025-08-14T21:48:51.6545386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6549960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg_native.h 2025-08-14T21:48:51.6554014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_neg_ops.h 2025-08-14T21:48:51.6558125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero.h 2025-08-14T21:48:51.6562968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6566743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero_native.h 2025-08-14T21:48:51.6571068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_nonzero_ops.h 2025-08-14T21:48:51.6575004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned.h 2025-08-14T21:48:51.6579286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.6583719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned_native.h 2025-08-14T21:48:51.6587739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_pinned_ops.h 2025-08-14T21:48:51.6591900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size.h 2025-08-14T21:48:51.6596169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.6600144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size_native.h 2025-08-14T21:48:51.6604357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_same_size_ops.h 2025-08-14T21:48:51.6608480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to.h 2025-08-14T21:48:51.6641983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_cpu_dispatch.h 2025-08-14T21:48:51.6646146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_cuda_dispatch.h 2025-08-14T21:48:51.6650309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_native.h 2025-08-14T21:48:51.6654325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_set_to_ops.h 2025-08-14T21:48:51.6658885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed.h 2025-08-14T21:48:51.6662947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6667088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed_native.h 2025-08-14T21:48:51.6671356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_signed_ops.h 2025-08-14T21:48:51.6675752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available.h 2025-08-14T21:48:51.6679916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6684312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available_native.h 2025-08-14T21:48:51.6688361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\is_vulkan_available_ops.h 2025-08-14T21:48:51.6692530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item.h 2025-08-14T21:48:51.6696364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6700193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item_native.h 2025-08-14T21:48:51.6704260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\item_ops.h 2025-08-14T21:48:51.6708063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window.h 2025-08-14T21:48:51.6712154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.6716074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window_native.h 2025-08-14T21:48:51.6720039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kaiser_window_ops.h 2025-08-14T21:48:51.6724228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div.h 2025-08-14T21:48:51.6728078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6733117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div_native.h 2025-08-14T21:48:51.6737102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kl_div_ops.h 2025-08-14T21:48:51.6741010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron.h 2025-08-14T21:48:51.6744984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6749590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron_native.h 2025-08-14T21:48:51.6753473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kron_ops.h 2025-08-14T21:48:51.6757206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue.h 2025-08-14T21:48:51.6761373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.6765610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6769580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_cpu_dispatch.h 2025-08-14T21:48:51.6773871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_cuda_dispatch.h 2025-08-14T21:48:51.6777824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_native.h 2025-08-14T21:48:51.6782593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\kthvalue_ops.h 2025-08-14T21:48:51.6786509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss.h 2025-08-14T21:48:51.6790506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6794491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss_native.h 2025-08-14T21:48:51.6798426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\l1_loss_ops.h 2025-08-14T21:48:51.6802328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm.h 2025-08-14T21:48:51.6806452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6810497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm_native.h 2025-08-14T21:48:51.6814396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\layer_norm_ops.h 2025-08-14T21:48:51.6818254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm.h 2025-08-14T21:48:51.6822251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.6826403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_cpu_dispatch.h 2025-08-14T21:48:51.6830397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_cuda_dispatch.h 2025-08-14T21:48:51.6834611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_meta.h 2025-08-14T21:48:51.6849354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_meta_dispatch.h 2025-08-14T21:48:51.6849987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_native.h 2025-08-14T21:48:51.6850549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lcm_ops.h 2025-08-14T21:48:51.6851104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp.h 2025-08-14T21:48:51.6853635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6857511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp_native.h 2025-08-14T21:48:51.6861409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ldexp_ops.h 2025-08-14T21:48:51.6865342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le.h 2025-08-14T21:48:51.6869145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu.h 2025-08-14T21:48:51.6873010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward.h 2025-08-14T21:48:51.6877549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.6881532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_cpu_dispatch.h 2025-08-14T21:48:51.6885905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_cuda_dispatch.h 2025-08-14T21:48:51.6889931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_meta.h 2025-08-14T21:48:51.6894048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_meta_dispatch.h 2025-08-14T21:48:51.6898015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_native.h 2025-08-14T21:48:51.6902481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_backward_ops.h 2025-08-14T21:48:51.6906745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.6910987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_cpu_dispatch.h 2025-08-14T21:48:51.6915104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_cuda_dispatch.h 2025-08-14T21:48:51.6919195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_meta.h 2025-08-14T21:48:51.6923379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_meta_dispatch.h 2025-08-14T21:48:51.6927644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_native.h 2025-08-14T21:48:51.6931628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\leaky_relu_ops.h 2025-08-14T21:48:51.6935576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp.h 2025-08-14T21:48:51.6939513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.6943555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_cpu_dispatch.h 2025-08-14T21:48:51.6947568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_cuda_dispatch.h 2025-08-14T21:48:51.6951647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_meta.h 2025-08-14T21:48:51.6955593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_meta_dispatch.h 2025-08-14T21:48:51.6959534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_native.h 2025-08-14T21:48:51.6963820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lerp_ops.h 2025-08-14T21:48:51.6967419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less.h 2025-08-14T21:48:51.6971279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6975275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal.h 2025-08-14T21:48:51.6979686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.6983549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal_native.h 2025-08-14T21:48:51.6988243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_equal_ops.h 2025-08-14T21:48:51.6992280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_native.h 2025-08-14T21:48:51.6996168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\less_ops.h 2025-08-14T21:48:51.7000011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.7004175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_cpu_dispatch.h 2025-08-14T21:48:51.7008199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_cuda_dispatch.h 2025-08-14T21:48:51.7011883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_meta.h 2025-08-14T21:48:51.7015506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_meta_dispatch.h 2025-08-14T21:48:51.7019330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_native.h 2025-08-14T21:48:51.7023636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\le_ops.h 2025-08-14T21:48:51.7027522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma.h 2025-08-14T21:48:51.7031639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.7035711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_cpu_dispatch.h 2025-08-14T21:48:51.7039707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_cuda_dispatch.h 2025-08-14T21:48:51.7043742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_meta.h 2025-08-14T21:48:51.7047841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_meta_dispatch.h 2025-08-14T21:48:51.7051821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_native.h 2025-08-14T21:48:51.7055844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lgamma_ops.h 2025-08-14T21:48:51.7059884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift.h 2025-08-14T21:48:51.7063832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.7067790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh.h 2025-08-14T21:48:51.7071947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.7075813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy.h 2025-08-14T21:48:51.7080038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.7084200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.7088226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_native.h 2025-08-14T21:48:51.7092488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_copy_ops.h 2025-08-14T21:48:51.7096544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_native.h 2025-08-14T21:48:51.7101080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_fresh_ops.h 2025-08-14T21:48:51.7105124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_native.h 2025-08-14T21:48:51.7109048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lift_ops.h 2025-08-14T21:48:51.7112796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky.h 2025-08-14T21:48:51.7116910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.7121124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex.h 2025-08-14T21:48:51.7125415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.7129817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_cpu_dispatch.h 2025-08-14T21:48:51.7133889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_cuda_dispatch.h 2025-08-14T21:48:51.7137947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_meta.h 2025-08-14T21:48:51.7142050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_meta_dispatch.h 2025-08-14T21:48:51.7146787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_native.h 2025-08-14T21:48:51.7151418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ex_ops.h 2025-08-14T21:48:51.7155542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_native.h 2025-08-14T21:48:51.7159629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cholesky_ops.h 2025-08-14T21:48:51.7163683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond.h 2025-08-14T21:48:51.7168005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.7172041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond_native.h 2025-08-14T21:48:51.7176303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cond_ops.h 2025-08-14T21:48:51.7180358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross.h 2025-08-14T21:48:51.7184660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.7188694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_cpu_dispatch.h 2025-08-14T21:48:51.7192762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_cuda_dispatch.h 2025-08-14T21:48:51.7196825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_meta.h 2025-08-14T21:48:51.7201206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_meta_dispatch.h 2025-08-14T21:48:51.7205427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_native.h 2025-08-14T21:48:51.7209512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_cross_ops.h 2025-08-14T21:48:51.7214510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det.h 2025-08-14T21:48:51.7218846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.7222824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det_native.h 2025-08-14T21:48:51.7226844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_det_ops.h 2025-08-14T21:48:51.7231046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal.h 2025-08-14T21:48:51.7235374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.7239541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal_native.h 2025-08-14T21:48:51.7243537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_diagonal_ops.h 2025-08-14T21:48:51.7247546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig.h 2025-08-14T21:48:51.7252078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh.h 2025-08-14T21:48:51.7256327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.7260323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh_native.h 2025-08-14T21:48:51.7264579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigh_ops.h 2025-08-14T21:48:51.7268697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals.h 2025-08-14T21:48:51.7273166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh.h 2025-08-14T21:48:51.7277370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.7281788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh_native.h 2025-08-14T21:48:51.7285813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvalsh_ops.h 2025-08-14T21:48:51.7290033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.7295200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_cpu_dispatch.h 2025-08-14T21:48:51.7299697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_cuda_dispatch.h 2025-08-14T21:48:51.7303882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_native.h 2025-08-14T21:48:51.7307921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eigvals_ops.h 2025-08-14T21:48:51.7312421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_cpu_dispatch.h 2025-08-14T21:48:51.7316479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_cuda_dispatch.h 2025-08-14T21:48:51.7320503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_native.h 2025-08-14T21:48:51.7325153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_eig_ops.h 2025-08-14T21:48:51.7329873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product.h 2025-08-14T21:48:51.7334163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_cpu_dispatch.h 2025-08-14T21:48:51.7338335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_cuda_dispatch.h 2025-08-14T21:48:51.7342795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_native.h 2025-08-14T21:48:51.7346963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_householder_product_ops.h 2025-08-14T21:48:51.7351089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv.h 2025-08-14T21:48:51.7355603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.7359815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex.h 2025-08-14T21:48:51.7364094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.7368084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_cpu_dispatch.h 2025-08-14T21:48:51.7372152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_cuda_dispatch.h 2025-08-14T21:48:51.7376210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_meta.h 2025-08-14T21:48:51.7380498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_meta_dispatch.h 2025-08-14T21:48:51.7384572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_native.h 2025-08-14T21:48:51.7388760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ex_ops.h 2025-08-14T21:48:51.7392814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_native.h 2025-08-14T21:48:51.7396875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_inv_ops.h 2025-08-14T21:48:51.7401456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor.h 2025-08-14T21:48:51.7405717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.7409955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex.h 2025-08-14T21:48:51.7414654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.7419213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_cpu_dispatch.h 2025-08-14T21:48:51.7422950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_cuda_dispatch.h 2025-08-14T21:48:51.7427229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_meta.h 2025-08-14T21:48:51.7431503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_meta_dispatch.h 2025-08-14T21:48:51.7436340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_native.h 2025-08-14T21:48:51.7440495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ex_ops.h 2025-08-14T21:48:51.7444682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_native.h 2025-08-14T21:48:51.7449123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_factor_ops.h 2025-08-14T21:48:51.7453139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve.h 2025-08-14T21:48:51.7457373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.7461675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_cpu_dispatch.h 2025-08-14T21:48:51.7465873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_cuda_dispatch.h 2025-08-14T21:48:51.7470081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_meta.h 2025-08-14T21:48:51.7474303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_meta_dispatch.h 2025-08-14T21:48:51.7478739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_native.h 2025-08-14T21:48:51.7482769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_ldl_solve_ops.h 2025-08-14T21:48:51.7486875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq.h 2025-08-14T21:48:51.7491245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.7495274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_cpu_dispatch.h 2025-08-14T21:48:51.7499309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_cuda_dispatch.h 2025-08-14T21:48:51.7503347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_native.h 2025-08-14T21:48:51.7507425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lstsq_ops.h 2025-08-14T21:48:51.7511540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu.h 2025-08-14T21:48:51.7516027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.7520227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_cpu_dispatch.h 2025-08-14T21:48:51.7524817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_cuda_dispatch.h 2025-08-14T21:48:51.7530144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor.h 2025-08-14T21:48:51.7534935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.7539928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex.h 2025-08-14T21:48:51.7544920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.7550008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_cpu_dispatch.h 2025-08-14T21:48:51.7554671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_cuda_dispatch.h 2025-08-14T21:48:51.7559170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_meta.h 2025-08-14T21:48:51.7563828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_meta_dispatch.h 2025-08-14T21:48:51.7568511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_native.h 2025-08-14T21:48:51.7573055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ex_ops.h 2025-08-14T21:48:51.7577674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_native.h 2025-08-14T21:48:51.7582316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_factor_ops.h 2025-08-14T21:48:51.7587058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_meta.h 2025-08-14T21:48:51.7591684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_meta_dispatch.h 2025-08-14T21:48:51.7596178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_native.h 2025-08-14T21:48:51.7600837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_ops.h 2025-08-14T21:48:51.7605317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve.h 2025-08-14T21:48:51.7610083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.7614678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_cpu_dispatch.h 2025-08-14T21:48:51.7618841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_cuda_dispatch.h 2025-08-14T21:48:51.7623052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_meta.h 2025-08-14T21:48:51.7627413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_meta_dispatch.h 2025-08-14T21:48:51.7631658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_native.h 2025-08-14T21:48:51.7635761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_lu_solve_ops.h 2025-08-14T21:48:51.7640619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul.h 2025-08-14T21:48:51.7644727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.7648731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul_native.h 2025-08-14T21:48:51.7652768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matmul_ops.h 2025-08-14T21:48:51.7657051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp.h 2025-08-14T21:48:51.7661850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.7666593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_cpu_dispatch.h 2025-08-14T21:48:51.7671187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_cuda_dispatch.h 2025-08-14T21:48:51.7675527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_native.h 2025-08-14T21:48:51.7679728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_exp_ops.h 2025-08-14T21:48:51.7684156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm.h 2025-08-14T21:48:51.7688552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.7693332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm_native.h 2025-08-14T21:48:51.7697551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_norm_ops.h 2025-08-14T21:48:51.7701752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power.h 2025-08-14T21:48:51.7706063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.7710221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power_native.h 2025-08-14T21:48:51.7714298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_power_ops.h 2025-08-14T21:48:51.7747462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank.h 2025-08-14T21:48:51.7751664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.7755950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank_native.h 2025-08-14T21:48:51.7760119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_matrix_rank_ops.h 2025-08-14T21:48:51.7764555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot.h 2025-08-14T21:48:51.7769143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.7773256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot_native.h 2025-08-14T21:48:51.7777301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_multi_dot_ops.h 2025-08-14T21:48:51.7781538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm.h 2025-08-14T21:48:51.7785785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.7790067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm_native.h 2025-08-14T21:48:51.7794088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_norm_ops.h 2025-08-14T21:48:51.7798063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv.h 2025-08-14T21:48:51.7802795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.7807028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.7811477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.7815548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_native.h 2025-08-14T21:48:51.7819659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_pinv_ops.h 2025-08-14T21:48:51.7824143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr.h 2025-08-14T21:48:51.7828620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.7832685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_cpu_dispatch.h 2025-08-14T21:48:51.7837075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_cuda_dispatch.h 2025-08-14T21:48:51.7841247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_meta.h 2025-08-14T21:48:51.7845614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_meta_dispatch.h 2025-08-14T21:48:51.7849783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_native.h 2025-08-14T21:48:51.7853892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_qr_ops.h 2025-08-14T21:48:51.7858002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet.h 2025-08-14T21:48:51.7862378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.7866858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet_native.h 2025-08-14T21:48:51.7871002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_slogdet_ops.h 2025-08-14T21:48:51.7875240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve.h 2025-08-14T21:48:51.7879469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.7883971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex.h 2025-08-14T21:48:51.7888319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.7892566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex_native.h 2025-08-14T21:48:51.7897315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ex_ops.h 2025-08-14T21:48:51.7901522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_native.h 2025-08-14T21:48:51.7906138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_ops.h 2025-08-14T21:48:51.7910826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular.h 2025-08-14T21:48:51.7916443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_cpu_dispatch.h 2025-08-14T21:48:51.7921149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_cuda_dispatch.h 2025-08-14T21:48:51.7925576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_native.h 2025-08-14T21:48:51.7930178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_solve_triangular_ops.h 2025-08-14T21:48:51.7934817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd.h 2025-08-14T21:48:51.7939417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals.h 2025-08-14T21:48:51.7944385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.7948911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals_native.h 2025-08-14T21:48:51.7953838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svdvals_ops.h 2025-08-14T21:48:51.7959011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.7963880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd_native.h 2025-08-14T21:48:51.7968831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_svd_ops.h 2025-08-14T21:48:51.7973551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv.h 2025-08-14T21:48:51.7978388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.7982455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv_native.h 2025-08-14T21:48:51.7986777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorinv_ops.h 2025-08-14T21:48:51.7991141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve.h 2025-08-14T21:48:51.7995772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.8000118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve_native.h 2025-08-14T21:48:51.8004361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_tensorsolve_ops.h 2025-08-14T21:48:51.8008460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander.h 2025-08-14T21:48:51.8013081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.8017164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander_native.h 2025-08-14T21:48:51.8021446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vander_ops.h 2025-08-14T21:48:51.8054540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot.h 2025-08-14T21:48:51.8058997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.8063813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot_native.h 2025-08-14T21:48:51.8068021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vecdot_ops.h 2025-08-14T21:48:51.8072140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm.h 2025-08-14T21:48:51.8076578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.8080758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_cpu_dispatch.h 2025-08-14T21:48:51.8084896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_cuda_dispatch.h 2025-08-14T21:48:51.8089006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_meta.h 2025-08-14T21:48:51.8093165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_meta_dispatch.h 2025-08-14T21:48:51.8097383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_native.h 2025-08-14T21:48:51.8101529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linalg_vector_norm_ops.h 2025-08-14T21:48:51.8105830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear.h 2025-08-14T21:48:51.8109800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward.h 2025-08-14T21:48:51.8114366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.8118937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward_native.h 2025-08-14T21:48:51.8122976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_backward_ops.h 2025-08-14T21:48:51.8127368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.8131634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.8136109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_native.h 2025-08-14T21:48:51.8140382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linear_ops.h 2025-08-14T21:48:51.8144578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace.h 2025-08-14T21:48:51.8148402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.8152646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_cpu_dispatch.h 2025-08-14T21:48:51.8157262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_cuda_dispatch.h 2025-08-14T21:48:51.8162055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_meta_dispatch.h 2025-08-14T21:48:51.8166778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_native.h 2025-08-14T21:48:51.8170881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\linspace_ops.h 2025-08-14T21:48:51.8174983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log.h 2025-08-14T21:48:51.8179125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10.h 2025-08-14T21:48:51.8183284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.8187706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_cpu_dispatch.h 2025-08-14T21:48:51.8191864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_cuda_dispatch.h 2025-08-14T21:48:51.8196182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_meta.h 2025-08-14T21:48:51.8200503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_meta_dispatch.h 2025-08-14T21:48:51.8204631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_native.h 2025-08-14T21:48:51.8208979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log10_ops.h 2025-08-14T21:48:51.8213162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p.h 2025-08-14T21:48:51.8217204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.8221356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_cpu_dispatch.h 2025-08-14T21:48:51.8225778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_cuda_dispatch.h 2025-08-14T21:48:51.8229859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_meta.h 2025-08-14T21:48:51.8234320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_meta_dispatch.h 2025-08-14T21:48:51.8238522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_native.h 2025-08-14T21:48:51.8242531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log1p_ops.h 2025-08-14T21:48:51.8247412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2.h 2025-08-14T21:48:51.8252245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.8255715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_cpu_dispatch.h 2025-08-14T21:48:51.8259765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_cuda_dispatch.h 2025-08-14T21:48:51.8264102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_meta.h 2025-08-14T21:48:51.8267943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_meta_dispatch.h 2025-08-14T21:48:51.8272190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_native.h 2025-08-14T21:48:51.8276222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log2_ops.h 2025-08-14T21:48:51.8279950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp.h 2025-08-14T21:48:51.8284136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2.h 2025-08-14T21:48:51.8288313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.8292508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_cpu_dispatch.h 2025-08-14T21:48:51.8297508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_cuda_dispatch.h 2025-08-14T21:48:51.8302323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_meta.h 2025-08-14T21:48:51.8306425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_meta_dispatch.h 2025-08-14T21:48:51.8310751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_native.h 2025-08-14T21:48:51.8314916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp2_ops.h 2025-08-14T21:48:51.8319171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.8323354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_cpu_dispatch.h 2025-08-14T21:48:51.8327710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_cuda_dispatch.h 2025-08-14T21:48:51.8332032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_meta.h 2025-08-14T21:48:51.8336153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_meta_dispatch.h 2025-08-14T21:48:51.8340405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_native.h 2025-08-14T21:48:51.8344450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logaddexp_ops.h 2025-08-14T21:48:51.8348787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp.h 2025-08-14T21:48:51.8353087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.8357284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.8361503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_native.h 2025-08-14T21:48:51.8365780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logcumsumexp_ops.h 2025-08-14T21:48:51.8369916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet.h 2025-08-14T21:48:51.8374367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.8378545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet_native.h 2025-08-14T21:48:51.8382650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logdet_ops.h 2025-08-14T21:48:51.8386726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and.h 2025-08-14T21:48:51.8391167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.8395505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_cpu_dispatch.h 2025-08-14T21:48:51.8399504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_cuda_dispatch.h 2025-08-14T21:48:51.8403926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_native.h 2025-08-14T21:48:51.8408541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_and_ops.h 2025-08-14T21:48:51.8413165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not.h 2025-08-14T21:48:51.8418024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.8422678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_cpu_dispatch.h 2025-08-14T21:48:51.8427130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_cuda_dispatch.h 2025-08-14T21:48:51.8431712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_native.h 2025-08-14T21:48:51.8436056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_not_ops.h 2025-08-14T21:48:51.8440394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or.h 2025-08-14T21:48:51.8444733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.8448779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_cpu_dispatch.h 2025-08-14T21:48:51.8453343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_cuda_dispatch.h 2025-08-14T21:48:51.8457447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_native.h 2025-08-14T21:48:51.8461572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_or_ops.h 2025-08-14T21:48:51.8465745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor.h 2025-08-14T21:48:51.8470358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.8474440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_cpu_dispatch.h 2025-08-14T21:48:51.8478533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_cuda_dispatch.h 2025-08-14T21:48:51.8482602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_native.h 2025-08-14T21:48:51.8486928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logical_xor_ops.h 2025-08-14T21:48:51.8490991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit.h 2025-08-14T21:48:51.8495109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward.h 2025-08-14T21:48:51.8499466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.8504059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_cpu_dispatch.h 2025-08-14T21:48:51.8508217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_cuda_dispatch.h 2025-08-14T21:48:51.8512337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_meta.h 2025-08-14T21:48:51.8516650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_meta_dispatch.h 2025-08-14T21:48:51.8520766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_native.h 2025-08-14T21:48:51.8524853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_backward_ops.h 2025-08-14T21:48:51.8528968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_cpu_dispatch.h 2025-08-14T21:48:51.8533439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_cuda_dispatch.h 2025-08-14T21:48:51.8537607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_meta_dispatch.h 2025-08-14T21:48:51.8541759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_native.h 2025-08-14T21:48:51.8546195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logit_ops.h 2025-08-14T21:48:51.8550718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace.h 2025-08-14T21:48:51.8554376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.8558555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_cpu_dispatch.h 2025-08-14T21:48:51.8562661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_cuda_dispatch.h 2025-08-14T21:48:51.8566721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_meta_dispatch.h 2025-08-14T21:48:51.8571240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_native.h 2025-08-14T21:48:51.8575293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logspace_ops.h 2025-08-14T21:48:51.8579528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp.h 2025-08-14T21:48:51.8583873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.8587980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.8592100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.8596190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_native.h 2025-08-14T21:48:51.8600194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\logsumexp_ops.h 2025-08-14T21:48:51.8604583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.8608450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_cpu_dispatch.h 2025-08-14T21:48:51.8612325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_cuda_dispatch.h 2025-08-14T21:48:51.8616472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_meta.h 2025-08-14T21:48:51.8620004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_meta_dispatch.h 2025-08-14T21:48:51.8623922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_native.h 2025-08-14T21:48:51.8628407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal.h 2025-08-14T21:48:51.8632710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.8636943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_cpu_dispatch.h 2025-08-14T21:48:51.8641128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_cuda_dispatch.h 2025-08-14T21:48:51.8645903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_meta_dispatch.h 2025-08-14T21:48:51.8650057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_native.h 2025-08-14T21:48:51.8654148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_normal_ops.h 2025-08-14T21:48:51.8658183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_ops.h 2025-08-14T21:48:51.8661921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid.h 2025-08-14T21:48:51.8665936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward.h 2025-08-14T21:48:51.8670331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_cpu_dispatch.h 2025-08-14T21:48:51.8675472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_cuda_dispatch.h 2025-08-14T21:48:51.8679778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_native.h 2025-08-14T21:48:51.8684057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_backward_ops.h 2025-08-14T21:48:51.8688631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.8692760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward.h 2025-08-14T21:48:51.8697165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_cpu_dispatch.h 2025-08-14T21:48:51.8701500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_cuda_dispatch.h 2025-08-14T21:48:51.8705635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_native.h 2025-08-14T21:48:51.8710199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_forward_ops.h 2025-08-14T21:48:51.8715299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_native.h 2025-08-14T21:48:51.8719572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_sigmoid_ops.h 2025-08-14T21:48:51.8723728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax.h 2025-08-14T21:48:51.8728300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.8732866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.8736997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_native.h 2025-08-14T21:48:51.8741244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\log_softmax_ops.h 2025-08-14T21:48:51.8745466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift.h 2025-08-14T21:48:51.8749732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.8754224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_cpu_dispatch.h 2025-08-14T21:48:51.8758650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_cuda_dispatch.h 2025-08-14T21:48:51.8763165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_meta_dispatch.h 2025-08-14T21:48:51.8767322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_native.h 2025-08-14T21:48:51.8771659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lshift_ops.h 2025-08-14T21:48:51.8775822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm.h 2025-08-14T21:48:51.8779645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell.h 2025-08-14T21:48:51.8784022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.8788052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell_native.h 2025-08-14T21:48:51.8792521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_cell_ops.h 2025-08-14T21:48:51.8796885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.8800936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward.h 2025-08-14T21:48:51.8805210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.8809387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward_native.h 2025-08-14T21:48:51.8813493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_mps_backward_ops.h 2025-08-14T21:48:51.8817793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_native.h 2025-08-14T21:48:51.8822099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lstm_ops.h 2025-08-14T21:48:51.8826352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt.h 2025-08-14T21:48:51.8830518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.8834523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_cpu_dispatch.h 2025-08-14T21:48:51.8838601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_cuda_dispatch.h 2025-08-14T21:48:51.8842593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_meta.h 2025-08-14T21:48:51.8847067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_meta_dispatch.h 2025-08-14T21:48:51.8851059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_native.h 2025-08-14T21:48:51.8855391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lt_ops.h 2025-08-14T21:48:51.8859509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve.h 2025-08-14T21:48:51.8863833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.8868299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve_native.h 2025-08-14T21:48:51.8872388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_solve_ops.h 2025-08-14T21:48:51.8905149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack.h 2025-08-14T21:48:51.8909737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.8915097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_cpu_dispatch.h 2025-08-14T21:48:51.8919529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_cuda_dispatch.h 2025-08-14T21:48:51.8924138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_meta.h 2025-08-14T21:48:51.8928643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_meta_dispatch.h 2025-08-14T21:48:51.8933230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_native.h 2025-08-14T21:48:51.8937635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\lu_unpack_ops.h 2025-08-14T21:48:51.8941842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss.h 2025-08-14T21:48:51.8946297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.8950601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss_native.h 2025-08-14T21:48:51.8954668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\margin_ranking_loss_ops.h 2025-08-14T21:48:51.8959143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill.h 2025-08-14T21:48:51.8963266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.8967197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_cpu_dispatch.h 2025-08-14T21:48:51.8971662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_cuda_dispatch.h 2025-08-14T21:48:51.8976375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_meta_dispatch.h 2025-08-14T21:48:51.8980378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_native.h 2025-08-14T21:48:51.8984398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_fill_ops.h 2025-08-14T21:48:51.8988719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter.h 2025-08-14T21:48:51.8992783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward.h 2025-08-14T21:48:51.8997156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.9001207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward_native.h 2025-08-14T21:48:51.9005566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_backward_ops.h 2025-08-14T21:48:51.9010036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.9014427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_cpu_dispatch.h 2025-08-14T21:48:51.9018361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_cuda_dispatch.h 2025-08-14T21:48:51.9022375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_meta_dispatch.h 2025-08-14T21:48:51.9026907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_native.h 2025-08-14T21:48:51.9031323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_scatter_ops.h 2025-08-14T21:48:51.9035776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select.h 2025-08-14T21:48:51.9039811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward.h 2025-08-14T21:48:51.9044147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.9048743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward_native.h 2025-08-14T21:48:51.9052793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_backward_ops.h 2025-08-14T21:48:51.9056995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_cpu_dispatch.h 2025-08-14T21:48:51.9062490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_cuda_dispatch.h 2025-08-14T21:48:51.9066932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_native.h 2025-08-14T21:48:51.9071263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\masked_select_ops.h 2025-08-14T21:48:51.9075396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul.h 2025-08-14T21:48:51.9079365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward.h 2025-08-14T21:48:51.9083561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.9087669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward_native.h 2025-08-14T21:48:51.9091918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_backward_ops.h 2025-08-14T21:48:51.9096172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.9100181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_native.h 2025-08-14T21:48:51.9104255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matmul_ops.h 2025-08-14T21:48:51.9108412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp.h 2025-08-14T21:48:51.9112493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward.h 2025-08-14T21:48:51.9117866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.9122244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward_native.h 2025-08-14T21:48:51.9126319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_backward_ops.h 2025-08-14T21:48:51.9130742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.9134811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_native.h 2025-08-14T21:48:51.9138883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_exp_ops.h 2025-08-14T21:48:51.9143391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H.h 2025-08-14T21:48:51.9147392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.9151792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H_native.h 2025-08-14T21:48:51.9155823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_H_ops.h 2025-08-14T21:48:51.9160005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power.h 2025-08-14T21:48:51.9164483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.9168651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power_native.h 2025-08-14T21:48:51.9172709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\matrix_power_ops.h 2025-08-14T21:48:51.9176729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max.h 2025-08-14T21:48:51.9180604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum.h 2025-08-14T21:48:51.9185148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.9189223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_cpu_dispatch.h 2025-08-14T21:48:51.9193205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_cuda_dispatch.h 2025-08-14T21:48:51.9197736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_meta.h 2025-08-14T21:48:51.9201951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_meta_dispatch.h 2025-08-14T21:48:51.9206101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_native.h 2025-08-14T21:48:51.9210330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\maximum_ops.h 2025-08-14T21:48:51.9214674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.9219357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.9223603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_cpu_dispatch.h 2025-08-14T21:48:51.9227847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_cuda_dispatch.h 2025-08-14T21:48:51.9232651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_meta.h 2025-08-14T21:48:51.9236785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_meta_dispatch.h 2025-08-14T21:48:51.9240684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_native.h 2025-08-14T21:48:51.9244859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_ops.h 2025-08-14T21:48:51.9249273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d.h 2025-08-14T21:48:51.9253367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.9258067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_native.h 2025-08-14T21:48:51.9262241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_ops.h 2025-08-14T21:48:51.9266777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices.h 2025-08-14T21:48:51.9271536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.9275749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices_native.h 2025-08-14T21:48:51.9280235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool1d_with_indices_ops.h 2025-08-14T21:48:51.9284321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d.h 2025-08-14T21:48:51.9288551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward.h 2025-08-14T21:48:51.9292993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.9297182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward_native.h 2025-08-14T21:48:51.9301667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_backward_ops.h 2025-08-14T21:48:51.9306741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.9310587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_native.h 2025-08-14T21:48:51.9314728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_ops.h 2025-08-14T21:48:51.9319032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices.h 2025-08-14T21:48:51.9323279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward.h 2025-08-14T21:48:51.9327929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.9333157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_cpu_dispatch.h 2025-08-14T21:48:51.9337627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_cuda_dispatch.h 2025-08-14T21:48:51.9341829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_meta.h 2025-08-14T21:48:51.9346112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_meta_dispatch.h 2025-08-14T21:48:51.9351565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_native.h 2025-08-14T21:48:51.9355985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_backward_ops.h 2025-08-14T21:48:51.9360617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.9364889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_cpu_dispatch.h 2025-08-14T21:48:51.9369999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_cuda_dispatch.h 2025-08-14T21:48:51.9374644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_meta.h 2025-08-14T21:48:51.9378999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_meta_dispatch.h 2025-08-14T21:48:51.9383562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_native.h 2025-08-14T21:48:51.9387905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool2d_with_indices_ops.h 2025-08-14T21:48:51.9392068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d.h 2025-08-14T21:48:51.9396572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.9400900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_native.h 2025-08-14T21:48:51.9404978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_ops.h 2025-08-14T21:48:51.9409582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices.h 2025-08-14T21:48:51.9414516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward.h 2025-08-14T21:48:51.9419341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_cpu_dispatch.h 2025-08-14T21:48:51.9423956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_cuda_dispatch.h 2025-08-14T21:48:51.9428932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_native.h 2025-08-14T21:48:51.9433794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_backward_ops.h 2025-08-14T21:48:51.9438349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_cpu_dispatch.h 2025-08-14T21:48:51.9443057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_cuda_dispatch.h 2025-08-14T21:48:51.9447394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_native.h 2025-08-14T21:48:51.9452202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_pool3d_with_indices_ops.h 2025-08-14T21:48:51.9456676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d.h 2025-08-14T21:48:51.9460912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_cpu_dispatch.h 2025-08-14T21:48:51.9465708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_cuda_dispatch.h 2025-08-14T21:48:51.9470638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_native.h 2025-08-14T21:48:51.9475325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool2d_ops.h 2025-08-14T21:48:51.9480105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d.h 2025-08-14T21:48:51.9484734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_cpu_dispatch.h 2025-08-14T21:48:51.9489607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_cuda_dispatch.h 2025-08-14T21:48:51.9494243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_native.h 2025-08-14T21:48:51.9498662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\max_unpool3d_ops.h 2025-08-14T21:48:51.9503164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean.h 2025-08-14T21:48:51.9507892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.9512094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.9516144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.9520291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_cpu_dispatch.h 2025-08-14T21:48:51.9524277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_cuda_dispatch.h 2025-08-14T21:48:51.9528250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_meta.h 2025-08-14T21:48:51.9532135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_meta_dispatch.h 2025-08-14T21:48:51.9536414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_native.h 2025-08-14T21:48:51.9540405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mean_ops.h 2025-08-14T21:48:51.9544162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median.h 2025-08-14T21:48:51.9548049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.9552067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.9555900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_cpu_dispatch.h 2025-08-14T21:48:51.9559874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_cuda_dispatch.h 2025-08-14T21:48:51.9564342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_native.h 2025-08-14T21:48:51.9568323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\median_ops.h 2025-08-14T21:48:51.9572618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid.h 2025-08-14T21:48:51.9576800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.9580696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid_native.h 2025-08-14T21:48:51.9585315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\meshgrid_ops.h 2025-08-14T21:48:51.9589264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH.h 2025-08-14T21:48:51.9593196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.9597191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH_native.h 2025-08-14T21:48:51.9601116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mH_ops.h 2025-08-14T21:48:51.9604648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min.h 2025-08-14T21:48:51.9608736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum.h 2025-08-14T21:48:51.9612673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.9616897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_cpu_dispatch.h 2025-08-14T21:48:51.9628719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_cuda_dispatch.h 2025-08-14T21:48:51.9630007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_meta.h 2025-08-14T21:48:51.9634618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_meta_dispatch.h 2025-08-14T21:48:51.9639052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_native.h 2025-08-14T21:48:51.9643107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\minimum_ops.h 2025-08-14T21:48:51.9647446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.9651387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.9655483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_cpu_dispatch.h 2025-08-14T21:48:51.9659541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_cuda_dispatch.h 2025-08-14T21:48:51.9663497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_meta.h 2025-08-14T21:48:51.9667430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_meta_dispatch.h 2025-08-14T21:48:51.9671708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_native.h 2025-08-14T21:48:51.9676599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\min_ops.h 2025-08-14T21:48:51.9680594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm.h 2025-08-14T21:48:51.9684669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward.h 2025-08-14T21:48:51.9688882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.9692923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_cuda_dispatch.h 2025-08-14T21:48:51.9697618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_native.h 2025-08-14T21:48:51.9701808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_backward_ops.h 2025-08-14T21:48:51.9706193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.9710504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_cuda_dispatch.h 2025-08-14T21:48:51.9714669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_native.h 2025-08-14T21:48:51.9718780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_batch_norm_ops.h 2025-08-14T21:48:51.9723131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution.h 2025-08-14T21:48:51.9727684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu.h 2025-08-14T21:48:51.9731920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu_cuda_dispatch.h 2025-08-14T21:48:51.9736107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu_native.h 2025-08-14T21:48:51.9740200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_add_relu_ops.h 2025-08-14T21:48:51.9744501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.9749042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_cuda_dispatch.h 2025-08-14T21:48:51.9753064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_native.h 2025-08-14T21:48:51.9757310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_ops.h 2025-08-14T21:48:51.9761466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu.h 2025-08-14T21:48:51.9766040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu_cuda_dispatch.h 2025-08-14T21:48:51.9770561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu_native.h 2025-08-14T21:48:51.9775568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_relu_ops.h 2025-08-14T21:48:51.9779308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose.h 2025-08-14T21:48:51.9783952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.9789357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_cuda_dispatch.h 2025-08-14T21:48:51.9792875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_native.h 2025-08-14T21:48:51.9797207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_convolution_transpose_ops.h 2025-08-14T21:48:51.9801974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution.h 2025-08-14T21:48:51.9805971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.9810941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_cuda_dispatch.h 2025-08-14T21:48:51.9815352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_native.h 2025-08-14T21:48:51.9820680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_depthwise_convolution_ops.h 2025-08-14T21:48:51.9823974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn.h 2025-08-14T21:48:51.9829031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward.h 2025-08-14T21:48:51.9833989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.9839666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_cuda_dispatch.h 2025-08-14T21:48:51.9842425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_native.h 2025-08-14T21:48:51.9847080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_backward_ops.h 2025-08-14T21:48:51.9852322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.9855799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_cuda_dispatch.h 2025-08-14T21:48:51.9860432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_native.h 2025-08-14T21:48:51.9864925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\miopen_rnn_ops.h 2025-08-14T21:48:51.9870074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish.h 2025-08-14T21:48:51.9873301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward.h 2025-08-14T21:48:51.9877696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:51.9883627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_cpu_dispatch.h 2025-08-14T21:48:51.9886866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_cuda_dispatch.h 2025-08-14T21:48:51.9891563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_native.h 2025-08-14T21:48:51.9896595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_backward_ops.h 2025-08-14T21:48:51.9900079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:51.9904249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_cpu_dispatch.h 2025-08-14T21:48:51.9914595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_cuda_dispatch.h 2025-08-14T21:48:51.9919941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_meta.h 2025-08-14T21:48:51.9920541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_meta_dispatch.h 2025-08-14T21:48:51.9922489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_native.h 2025-08-14T21:48:51.9926932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mish_ops.h 2025-08-14T21:48:51.9930738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d.h 2025-08-14T21:48:51.9935447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward.h 2025-08-14T21:48:51.9940915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.9944818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_native.h 2025-08-14T21:48:51.9951597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_ops.h 2025-08-14T21:48:51.9954767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_native.h 2025-08-14T21:48:51.9958873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_ops.h 2025-08-14T21:48:51.9963751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution.h 2025-08-14T21:48:51.9969768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.9974164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution_native.h 2025-08-14T21:48:51.9978582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_convolution_ops.h 2025-08-14T21:48:51.9982883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear.h 2025-08-14T21:48:51.9987396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward.h 2025-08-14T21:48:51.9991876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:51.9996861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input.h 2025-08-14T21:48:52.0001561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.0006087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input_native.h 2025-08-14T21:48:52.0010527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_input_ops.h 2025-08-14T21:48:52.0014728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_native.h 2025-08-14T21:48:52.0019040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_ops.h 2025-08-14T21:48:52.0023196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights.h 2025-08-14T21:48:52.0059898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.0062394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights_native.h 2025-08-14T21:48:52.0066799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_backward_weights_ops.h 2025-08-14T21:48:52.0072417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.0075279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_native.h 2025-08-14T21:48:52.0079882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_linear_ops.h 2025-08-14T21:48:52.0085000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d.h 2025-08-14T21:48:52.0091009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward.h 2025-08-14T21:48:52.0094286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.0098707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward_native.h 2025-08-14T21:48:52.0103708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_backward_ops.h 2025-08-14T21:48:52.0107487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.0112459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_native.h 2025-08-14T21:48:52.0117195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool2d_ops.h 2025-08-14T21:48:52.0122566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d.h 2025-08-14T21:48:52.0126138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward.h 2025-08-14T21:48:52.0130770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.0135298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward_native.h 2025-08-14T21:48:52.0141386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_backward_ops.h 2025-08-14T21:48:52.0144566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.0149030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_native.h 2025-08-14T21:48:52.0154099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_max_pool3d_ops.h 2025-08-14T21:48:52.0158567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight.h 2025-08-14T21:48:52.0162685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.0167314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_native.h 2025-08-14T21:48:52.0173129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_ops.h 2025-08-14T21:48:52.0176579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight.h 2025-08-14T21:48:52.0181311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.0185976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_native.h 2025-08-14T21:48:52.0192013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_ops.h 2025-08-14T21:48:52.0195287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer.h 2025-08-14T21:48:52.0199615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward.h 2025-08-14T21:48:52.0204647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.0208481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_cpu_dispatch.h 2025-08-14T21:48:52.0212713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_native.h 2025-08-14T21:48:52.0217635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_backward_ops.h 2025-08-14T21:48:52.0223389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.0226701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_cpu_dispatch.h 2025-08-14T21:48:52.0231359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_native.h 2025-08-14T21:48:52.0235969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mkldnn_rnn_layer_ops.h 2025-08-14T21:48:52.0239926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm.h 2025-08-14T21:48:52.0244200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.0248522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_cpu_dispatch.h 2025-08-14T21:48:52.0254321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_cuda_dispatch.h 2025-08-14T21:48:52.0256965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_meta.h 2025-08-14T21:48:52.0261167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_meta_dispatch.h 2025-08-14T21:48:52.0266893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_native.h 2025-08-14T21:48:52.0269855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mm_ops.h 2025-08-14T21:48:52.0274351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode.h 2025-08-14T21:48:52.0279646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.0282853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.0287005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_cpu_dispatch.h 2025-08-14T21:48:52.0292134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_cuda_dispatch.h 2025-08-14T21:48:52.0295376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_native.h 2025-08-14T21:48:52.0299629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mode_ops.h 2025-08-14T21:48:52.0304663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis.h 2025-08-14T21:48:52.0307398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.0311954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis_native.h 2025-08-14T21:48:52.0317529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\moveaxis_ops.h 2025-08-14T21:48:52.0321256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim.h 2025-08-14T21:48:52.0325758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.0330332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim_native.h 2025-08-14T21:48:52.0335388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\movedim_ops.h 2025-08-14T21:48:52.0338645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward.h 2025-08-14T21:48:52.0343342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.0349020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward_native.h 2025-08-14T21:48:52.0351998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_backward_ops.h 2025-08-14T21:48:52.0356609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward.h 2025-08-14T21:48:52.0362283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.0365633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward_native.h 2025-08-14T21:48:52.0370848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mps_convolution_transpose_backward_ops.h 2025-08-14T21:48:52.0375282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss.h 2025-08-14T21:48:52.0380711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward.h 2025-08-14T21:48:52.0383362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_cpu_dispatch.h 2025-08-14T21:48:52.0388025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_cuda_dispatch.h 2025-08-14T21:48:52.0392142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_native.h 2025-08-14T21:48:52.0396312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_backward_ops.h 2025-08-14T21:48:52.0401036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.0405144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_cpu_dispatch.h 2025-08-14T21:48:52.0409169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_cuda_dispatch.h 2025-08-14T21:48:52.0415302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_meta.h 2025-08-14T21:48:52.0418018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_meta_dispatch.h 2025-08-14T21:48:52.0422562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_native.h 2025-08-14T21:48:52.0426940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mse_loss_ops.h 2025-08-14T21:48:52.0431556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort.h 2025-08-14T21:48:52.0436276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.0442214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort_native.h 2025-08-14T21:48:52.0444852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\msort_ops.h 2025-08-14T21:48:52.0448861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT.h 2025-08-14T21:48:52.0452894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.0456750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT_native.h 2025-08-14T21:48:52.0460835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mT_ops.h 2025-08-14T21:48:52.0465034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul.h 2025-08-14T21:48:52.0469567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss.h 2025-08-14T21:48:52.0473555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward.h 2025-08-14T21:48:52.0477864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_cpu_dispatch.h 2025-08-14T21:48:52.0482051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_cuda_dispatch.h 2025-08-14T21:48:52.0486283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_native.h 2025-08-14T21:48:52.0490551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_backward_ops.h 2025-08-14T21:48:52.0495229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.0499872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward.h 2025-08-14T21:48:52.0504238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_cpu_dispatch.h 2025-08-14T21:48:52.0508329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_cuda_dispatch.h 2025-08-14T21:48:52.0512580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_native.h 2025-08-14T21:48:52.0517256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_forward_ops.h 2025-08-14T21:48:52.0521516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_native.h 2025-08-14T21:48:52.0525878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multilabel_margin_loss_ops.h 2025-08-14T21:48:52.0529890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial.h 2025-08-14T21:48:52.0534840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_cpu_dispatch.h 2025-08-14T21:48:52.0539580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_cuda_dispatch.h 2025-08-14T21:48:52.0543887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_native.h 2025-08-14T21:48:52.0548307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multinomial_ops.h 2025-08-14T21:48:52.0552513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply.h 2025-08-14T21:48:52.0556433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.0560679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply_native.h 2025-08-14T21:48:52.0564711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multiply_ops.h 2025-08-14T21:48:52.0569977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss.h 2025-08-14T21:48:52.0573930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward.h 2025-08-14T21:48:52.0578233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_cpu_dispatch.h 2025-08-14T21:48:52.0582494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_cuda_dispatch.h 2025-08-14T21:48:52.0586650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_native.h 2025-08-14T21:48:52.0591083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_backward_ops.h 2025-08-14T21:48:52.0595786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_cpu_dispatch.h 2025-08-14T21:48:52.0600321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_cuda_dispatch.h 2025-08-14T21:48:52.0604547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_native.h 2025-08-14T21:48:52.0609155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\multi_margin_loss_ops.h 2025-08-14T21:48:52.0613554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.0618062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.0622111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_cpu_dispatch.h 2025-08-14T21:48:52.0626010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_cuda_dispatch.h 2025-08-14T21:48:52.0630164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_meta.h 2025-08-14T21:48:52.0633827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_meta_dispatch.h 2025-08-14T21:48:52.0638409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_native.h 2025-08-14T21:48:52.0642494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mul_ops.h 2025-08-14T21:48:52.0646150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv.h 2025-08-14T21:48:52.0650212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma.h 2025-08-14T21:48:52.0655503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.0687649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_cpu_dispatch.h 2025-08-14T21:48:52.0691681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_cuda_dispatch.h 2025-08-14T21:48:52.0695747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_native.h 2025-08-14T21:48:52.0700250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mvlgamma_ops.h 2025-08-14T21:48:52.0704544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.0708554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv_native.h 2025-08-14T21:48:52.0712732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\mv_ops.h 2025-08-14T21:48:52.0716968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean.h 2025-08-14T21:48:52.0721061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.0725016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean_native.h 2025-08-14T21:48:52.0729322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmean_ops.h 2025-08-14T21:48:52.0733944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian.h 2025-08-14T21:48:52.0737945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.0742128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.0746722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_cpu_dispatch.h 2025-08-14T21:48:52.0751795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_cuda_dispatch.h 2025-08-14T21:48:52.0772996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_native.h 2025-08-14T21:48:52.0773637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanmedian_ops.h 2025-08-14T21:48:52.0774229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile.h 2025-08-14T21:48:52.0774957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.0775725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile_native.h 2025-08-14T21:48:52.0778264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nanquantile_ops.h 2025-08-14T21:48:52.0780989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum.h 2025-08-14T21:48:52.0784979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_cpu_dispatch.h 2025-08-14T21:48:52.0789200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_cuda_dispatch.h 2025-08-14T21:48:52.0793243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_native.h 2025-08-14T21:48:52.0797705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nansum_ops.h 2025-08-14T21:48:52.0803425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num.h 2025-08-14T21:48:52.0806593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.0811503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_cpu_dispatch.h 2025-08-14T21:48:52.0816346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_cuda_dispatch.h 2025-08-14T21:48:52.0822285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_native.h 2025-08-14T21:48:52.0825288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nan_to_num_ops.h 2025-08-14T21:48:52.0830077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow.h 2025-08-14T21:48:52.0835276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.0837980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy.h 2025-08-14T21:48:52.0842699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.0847639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_cpu_dispatch.h 2025-08-14T21:48:52.0851005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_native.h 2025-08-14T21:48:52.0855902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_copy_ops.h 2025-08-14T21:48:52.0860698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_native.h 2025-08-14T21:48:52.0866453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\narrow_ops.h 2025-08-14T21:48:52.0869583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm.h 2025-08-14T21:48:52.0873704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward.h 2025-08-14T21:48:52.0879192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.0882302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_cpu_dispatch.h 2025-08-14T21:48:52.0887046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_cuda_dispatch.h 2025-08-14T21:48:52.0891825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_native.h 2025-08-14T21:48:52.0895675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_backward_ops.h 2025-08-14T21:48:52.0900779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_cpu_dispatch.h 2025-08-14T21:48:52.0905377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_cuda_dispatch.h 2025-08-14T21:48:52.0910478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_native.h 2025-08-14T21:48:52.0914471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_batch_norm_ops.h 2025-08-14T21:48:52.0919402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle.h 2025-08-14T21:48:52.0936963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.0955164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_cpu_dispatch.h 2025-08-14T21:48:52.0955935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_native.h 2025-08-14T21:48:52.0956721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_channel_shuffle_ops.h 2025-08-14T21:48:52.0957372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout.h 2025-08-14T21:48:52.0958015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward.h 2025-08-14T21:48:52.0958939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.0962214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_cpu_dispatch.h 2025-08-14T21:48:52.0965924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_cuda_dispatch.h 2025-08-14T21:48:52.0969925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_native.h 2025-08-14T21:48:52.0974452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_backward_ops.h 2025-08-14T21:48:52.0978996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.0983273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_cpu_dispatch.h 2025-08-14T21:48:52.0987641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_cuda_dispatch.h 2025-08-14T21:48:52.0993039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_native.h 2025-08-14T21:48:52.0997112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_dropout_ops.h 2025-08-14T21:48:52.1001999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm.h 2025-08-14T21:48:52.1006492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward.h 2025-08-14T21:48:52.1010997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.1015401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_cpu_dispatch.h 2025-08-14T21:48:52.1019575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_cuda_dispatch.h 2025-08-14T21:48:52.1024523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_native.h 2025-08-14T21:48:52.1029322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_backward_ops.h 2025-08-14T21:48:52.1034281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.1039491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_cpu_dispatch.h 2025-08-14T21:48:52.1043724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_cuda_dispatch.h 2025-08-14T21:48:52.1047745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_native.h 2025-08-14T21:48:52.1052033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_group_norm_ops.h 2025-08-14T21:48:52.4795102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm.h 2025-08-14T21:48:52.4799518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward.h 2025-08-14T21:48:52.4804571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.4811756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_cpu_dispatch.h 2025-08-14T21:48:52.4814527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_cuda_dispatch.h 2025-08-14T21:48:52.4819078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_native.h 2025-08-14T21:48:52.4824063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_backward_ops.h 2025-08-14T21:48:52.4828188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.4832890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_cpu_dispatch.h 2025-08-14T21:48:52.4838304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_cuda_dispatch.h 2025-08-14T21:48:52.4843386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_native.h 2025-08-14T21:48:52.4847188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_layer_norm_ops.h 2025-08-14T21:48:52.4851579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm.h 2025-08-14T21:48:52.4856031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.4862172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm_native.h 2025-08-14T21:48:52.4864798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\native_norm_ops.h 2025-08-14T21:48:52.4869097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne.h 2025-08-14T21:48:52.4874937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg.h 2025-08-14T21:48:52.4877164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative.h 2025-08-14T21:48:52.4881518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.4887425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative_native.h 2025-08-14T21:48:52.4889835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\negative_ops.h 2025-08-14T21:48:52.4895185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.4900022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_cpu_dispatch.h 2025-08-14T21:48:52.4903755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_cuda_dispatch.h 2025-08-14T21:48:52.4908287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_meta.h 2025-08-14T21:48:52.4912764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_meta_dispatch.h 2025-08-14T21:48:52.4916524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_native.h 2025-08-14T21:48:52.4921140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\neg_ops.h 2025-08-14T21:48:52.4925422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor.h 2025-08-14T21:48:52.4931676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.4934834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor_native.h 2025-08-14T21:48:52.4939422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nested_to_padded_tensor_ops.h 2025-08-14T21:48:52.4952577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty.h 2025-08-14T21:48:52.4953322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.4954053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_native.h 2025-08-14T21:48:52.4991713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_ops.h 2025-08-14T21:48:52.4998679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided.h 2025-08-14T21:48:52.5001922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.5007003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.5012853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_native.h 2025-08-14T21:48:52.5015932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_empty_strided_ops.h 2025-08-14T21:48:52.5020177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full.h 2025-08-14T21:48:52.5025038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.5029062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full_native.h 2025-08-14T21:48:52.5033198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_full_ops.h 2025-08-14T21:48:52.5037424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones.h 2025-08-14T21:48:52.5042175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.5045785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones_native.h 2025-08-14T21:48:52.5050246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_ones_ops.h 2025-08-14T21:48:52.5054759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros.h 2025-08-14T21:48:52.5059215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.5063368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros_native.h 2025-08-14T21:48:52.5068470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\new_zeros_ops.h 2025-08-14T21:48:52.5071700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter.h 2025-08-14T21:48:52.5076161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.5080831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_cpu_dispatch.h 2025-08-14T21:48:52.5085173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_cuda_dispatch.h 2025-08-14T21:48:52.5089319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_meta.h 2025-08-14T21:48:52.5093570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_meta_dispatch.h 2025-08-14T21:48:52.5098042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_native.h 2025-08-14T21:48:52.5103521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nextafter_ops.h 2025-08-14T21:48:52.5106853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.5110801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_cpu_dispatch.h 2025-08-14T21:48:52.5114702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_cuda_dispatch.h 2025-08-14T21:48:52.5118814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_meta.h 2025-08-14T21:48:52.5122712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_meta_dispatch.h 2025-08-14T21:48:52.5126799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_native.h 2025-08-14T21:48:52.5131042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ne_ops.h 2025-08-14T21:48:52.5135171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss.h 2025-08-14T21:48:52.5138816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d.h 2025-08-14T21:48:52.5142929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward.h 2025-08-14T21:48:52.5147543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_cpu_dispatch.h 2025-08-14T21:48:52.5152165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_cuda_dispatch.h 2025-08-14T21:48:52.5156218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_native.h 2025-08-14T21:48:52.5160943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_backward_ops.h 2025-08-14T21:48:52.5165311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.5170503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward.h 2025-08-14T21:48:52.5174753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_cpu_dispatch.h 2025-08-14T21:48:52.5179162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_cuda_dispatch.h 2025-08-14T21:48:52.5183738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_native.h 2025-08-14T21:48:52.5188237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_forward_ops.h 2025-08-14T21:48:52.5192712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_native.h 2025-08-14T21:48:52.5196926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss2d_ops.h 2025-08-14T21:48:52.5201369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward.h 2025-08-14T21:48:52.5205851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.5210509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_cpu_dispatch.h 2025-08-14T21:48:52.5214586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_cuda_dispatch.h 2025-08-14T21:48:52.5218612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_meta.h 2025-08-14T21:48:52.5223375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_meta_dispatch.h 2025-08-14T21:48:52.5227545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_native.h 2025-08-14T21:48:52.5232059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_backward_ops.h 2025-08-14T21:48:52.5236371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.5241032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward.h 2025-08-14T21:48:52.5245770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.5249870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_cpu_dispatch.h 2025-08-14T21:48:52.5254197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_cuda_dispatch.h 2025-08-14T21:48:52.5258279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_meta.h 2025-08-14T21:48:52.5262873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_meta_dispatch.h 2025-08-14T21:48:52.5268054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_native.h 2025-08-14T21:48:52.5271744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_forward_ops.h 2025-08-14T21:48:52.5276532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_native.h 2025-08-14T21:48:52.5280771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd.h 2025-08-14T21:48:52.5286800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.5290077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd_native.h 2025-08-14T21:48:52.5294335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_nd_ops.h 2025-08-14T21:48:52.5299674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nll_loss_ops.h 2025-08-14T21:48:52.5303565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero.h 2025-08-14T21:48:52.5307863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_cpu_dispatch.h 2025-08-14T21:48:52.5312259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_cuda_dispatch.h 2025-08-14T21:48:52.5318532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_native.h 2025-08-14T21:48:52.5321028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy.h 2025-08-14T21:48:52.5325394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.5330966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy_native.h 2025-08-14T21:48:52.5334575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_numpy_ops.h 2025-08-14T21:48:52.5338896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_ops.h 2025-08-14T21:48:52.5343639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static.h 2025-08-14T21:48:52.5349547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_cpu_dispatch.h 2025-08-14T21:48:52.5352596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_cuda_dispatch.h 2025-08-14T21:48:52.5356825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_native.h 2025-08-14T21:48:52.5361777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nonzero_static_ops.h 2025-08-14T21:48:52.5365773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm.h 2025-08-14T21:48:52.5369723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal.h 2025-08-14T21:48:52.5373977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.5377920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_cpu_dispatch.h 2025-08-14T21:48:52.5382077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_cuda_dispatch.h 2025-08-14T21:48:52.5386101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_meta_dispatch.h 2025-08-14T21:48:52.5390784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_native.h 2025-08-14T21:48:52.5395125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\normal_ops.h 2025-08-14T21:48:52.5400238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.5404160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.5408732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.5413060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_cpu_dispatch.h 2025-08-14T21:48:52.5417146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_cuda_dispatch.h 2025-08-14T21:48:52.5421262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim.h 2025-08-14T21:48:52.5425401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.5429652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim_native.h 2025-08-14T21:48:52.5433802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_except_dim_ops.h 2025-08-14T21:48:52.5438033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_meta.h 2025-08-14T21:48:52.5442479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_meta_dispatch.h 2025-08-14T21:48:52.5446790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_native.h 2025-08-14T21:48:52.5450880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\norm_ops.h 2025-08-14T21:48:52.5455210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal.h 2025-08-14T21:48:52.5472745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.5490141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal_native.h 2025-08-14T21:48:52.5490758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\not_equal_ops.h 2025-08-14T21:48:52.5491356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm.h 2025-08-14T21:48:52.5492084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.5492849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm_native.h 2025-08-14T21:48:52.5493675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\nuclear_norm_ops.h 2025-08-14T21:48:52.5494250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T.h 2025-08-14T21:48:52.5498327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.5504069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T_native.h 2025-08-14T21:48:52.5506980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\numpy_T_ops.h 2025-08-14T21:48:52.5511352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones.h 2025-08-14T21:48:52.5515325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.5519092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like.h 2025-08-14T21:48:52.5524122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.5528552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like_native.h 2025-08-14T21:48:52.5533114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_like_ops.h 2025-08-14T21:48:52.5537304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_native.h 2025-08-14T21:48:52.5542218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ones_ops.h 2025-08-14T21:48:52.5545965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot.h 2025-08-14T21:48:52.5550063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.5554103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot_native.h 2025-08-14T21:48:52.5558106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\one_hot_ops.h 2025-08-14T21:48:52.5562475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or.h 2025-08-14T21:48:52.5566243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr.h 2025-08-14T21:48:52.5572130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.5575407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr_native.h 2025-08-14T21:48:52.5579954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\orgqr_ops.h 2025-08-14T21:48:52.5584093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr.h 2025-08-14T21:48:52.5588852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_cpu_dispatch.h 2025-08-14T21:48:52.5593454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_cuda_dispatch.h 2025-08-14T21:48:52.5597469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_native.h 2025-08-14T21:48:52.5601600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ormqr_ops.h 2025-08-14T21:48:52.5605792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.5609859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or_native.h 2025-08-14T21:48:52.5614136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\or_ops.h 2025-08-14T21:48:52.5617948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer.h 2025-08-14T21:48:52.5621827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.5625972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer_native.h 2025-08-14T21:48:52.5630265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\outer_ops.h 2025-08-14T21:48:52.5634855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr.h 2025-08-14T21:48:52.5639433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.5643629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr_native.h 2025-08-14T21:48:52.5647769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\output_nr_ops.h 2025-08-14T21:48:52.5651773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad.h 2025-08-14T21:48:52.5655697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.5660596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_native.h 2025-08-14T21:48:52.5664465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_ops.h 2025-08-14T21:48:52.5668897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence.h 2025-08-14T21:48:52.5672961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.5677215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence_native.h 2025-08-14T21:48:52.5681314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pad_sequence_ops.h 2025-08-14T21:48:52.5685349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance.h 2025-08-14T21:48:52.5689833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.5694119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance_native.h 2025-08-14T21:48:52.5698679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pairwise_distance_ops.h 2025-08-14T21:48:52.5702688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist.h 2025-08-14T21:48:52.5706876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.5711009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist_native.h 2025-08-14T21:48:52.5715221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pdist_ops.h 2025-08-14T21:48:52.5719227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute.h 2025-08-14T21:48:52.5723432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.5727338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy.h 2025-08-14T21:48:52.5732067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.5737202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.5741346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_native.h 2025-08-14T21:48:52.5745683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_copy_ops.h 2025-08-14T21:48:52.5749793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_native.h 2025-08-14T21:48:52.5754084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\permute_ops.h 2025-08-14T21:48:52.5758278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse.h 2025-08-14T21:48:52.5762434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.5766448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse_native.h 2025-08-14T21:48:52.5770628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pinverse_ops.h 2025-08-14T21:48:52.5774755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory.h 2025-08-14T21:48:52.5779592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.5783619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory_native.h 2025-08-14T21:48:52.5788290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pin_memory_ops.h 2025-08-14T21:48:52.5793019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle.h 2025-08-14T21:48:52.5797356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.5801573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.5805793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_cpu_dispatch.h 2025-08-14T21:48:52.5809956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_native.h 2025-08-14T21:48:52.5814543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_shuffle_ops.h 2025-08-14T21:48:52.5818557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle.h 2025-08-14T21:48:52.5823298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.5827473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.5831784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_cpu_dispatch.h 2025-08-14T21:48:52.5836158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_native.h 2025-08-14T21:48:52.5840212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pixel_unshuffle_ops.h 2025-08-14T21:48:52.5844691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson.h 2025-08-14T21:48:52.5849013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.5853405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_cpu_dispatch.h 2025-08-14T21:48:52.5857356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_cuda_dispatch.h 2025-08-14T21:48:52.5861668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_native.h 2025-08-14T21:48:52.5866001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss.h 2025-08-14T21:48:52.5870523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.5874766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss_native.h 2025-08-14T21:48:52.5879123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_nll_loss_ops.h 2025-08-14T21:48:52.5883201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\poisson_ops.h 2025-08-14T21:48:52.5887410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar.h 2025-08-14T21:48:52.5892457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.5896736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_cpu_dispatch.h 2025-08-14T21:48:52.5900809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_cuda_dispatch.h 2025-08-14T21:48:52.5904887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_native.h 2025-08-14T21:48:52.5909125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polar_ops.h 2025-08-14T21:48:52.5913288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma.h 2025-08-14T21:48:52.5917920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.5921971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.5925937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_cpu_dispatch.h 2025-08-14T21:48:52.5930385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_cuda_dispatch.h 2025-08-14T21:48:52.5934522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_meta.h 2025-08-14T21:48:52.5938657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_meta_dispatch.h 2025-08-14T21:48:52.5943557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_native.h 2025-08-14T21:48:52.5947967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\polygamma_ops.h 2025-08-14T21:48:52.5952091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive.h 2025-08-14T21:48:52.5956101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.5960977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive_native.h 2025-08-14T21:48:52.5965037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\positive_ops.h 2025-08-14T21:48:52.5969791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow.h 2025-08-14T21:48:52.5973565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.5977819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_cpu_dispatch.h 2025-08-14T21:48:52.5981779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_cuda_dispatch.h 2025-08-14T21:48:52.5985646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_meta.h 2025-08-14T21:48:52.5989659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_meta_dispatch.h 2025-08-14T21:48:52.5993589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_native.h 2025-08-14T21:48:52.5997880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\pow_ops.h 2025-08-14T21:48:52.6001580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu.h 2025-08-14T21:48:52.6005740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.6010466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu_native.h 2025-08-14T21:48:52.6014629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prelu_ops.h 2025-08-14T21:48:52.6018725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod.h 2025-08-14T21:48:52.6023024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.6027307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.6031490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.6035823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_cpu_dispatch.h 2025-08-14T21:48:52.6040842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_cuda_dispatch.h 2025-08-14T21:48:52.6045118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_meta.h 2025-08-14T21:48:52.6049137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_meta_dispatch.h 2025-08-14T21:48:52.6053284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_native.h 2025-08-14T21:48:52.6057089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\prod_ops.h 2025-08-14T21:48:52.6060894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types.h 2025-08-14T21:48:52.6065258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.6077284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types_native.h 2025-08-14T21:48:52.6087295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\promote_types_ops.h 2025-08-14T21:48:52.6087870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put.h 2025-08-14T21:48:52.6088539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.6089262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_cpu_dispatch.h 2025-08-14T21:48:52.6099803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_cuda_dispatch.h 2025-08-14T21:48:52.6106531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_meta_dispatch.h 2025-08-14T21:48:52.6107126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_native.h 2025-08-14T21:48:52.6137919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\put_ops.h 2025-08-14T21:48:52.6140607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr.h 2025-08-14T21:48:52.6144869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.6150447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr_native.h 2025-08-14T21:48:52.6153167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qr_ops.h 2025-08-14T21:48:52.6157443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qscheme.h 2025-08-14T21:48:52.6162968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qscheme_native.h 2025-08-14T21:48:52.6165489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\qscheme_ops.h 2025-08-14T21:48:52.6170104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile.h 2025-08-14T21:48:52.6175827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.6178639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile_native.h 2025-08-14T21:48:52.6182771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantile_ops.h 2025-08-14T21:48:52.6188307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm.h 2025-08-14T21:48:52.6191745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.6195917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm_native.h 2025-08-14T21:48:52.6200874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_batch_norm_ops.h 2025-08-14T21:48:52.6204849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell.h 2025-08-14T21:48:52.6209301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.6213605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell_native.h 2025-08-14T21:48:52.6218613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_gru_cell_ops.h 2025-08-14T21:48:52.6221958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell.h 2025-08-14T21:48:52.6226616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.6232306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell_native.h 2025-08-14T21:48:52.6236163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_lstm_cell_ops.h 2025-08-14T21:48:52.6240495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d.h 2025-08-14T21:48:52.6246034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.6250562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d_native.h 2025-08-14T21:48:52.6255006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool1d_ops.h 2025-08-14T21:48:52.6259955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d.h 2025-08-14T21:48:52.6264838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.6270392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d_native.h 2025-08-14T21:48:52.6274081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool2d_ops.h 2025-08-14T21:48:52.6278516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d.h 2025-08-14T21:48:52.6284052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.6289849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d_native.h 2025-08-14T21:48:52.6293598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_max_pool3d_ops.h 2025-08-14T21:48:52.6298178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell.h 2025-08-14T21:48:52.6302770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.6307825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell_native.h 2025-08-14T21:48:52.6311621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_relu_cell_ops.h 2025-08-14T21:48:52.6316424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell.h 2025-08-14T21:48:52.6321463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.6326679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell_native.h 2025-08-14T21:48:52.6330408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantized_rnn_tanh_cell_ops.h 2025-08-14T21:48:52.6334989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel.h 2025-08-14T21:48:52.6340011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.6346042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_cpu_dispatch.h 2025-08-14T21:48:52.6349750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_cuda_dispatch.h 2025-08-14T21:48:52.6354136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_native.h 2025-08-14T21:48:52.6358912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_channel_ops.h 2025-08-14T21:48:52.6362671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor.h 2025-08-14T21:48:52.6367190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.6371696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_cpu_dispatch.h 2025-08-14T21:48:52.6377490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_cuda_dispatch.h 2025-08-14T21:48:52.6380626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic.h 2025-08-14T21:48:52.6385245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.6389973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_cpu_dispatch.h 2025-08-14T21:48:52.6395362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_cuda_dispatch.h 2025-08-14T21:48:52.6399705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_native.h 2025-08-14T21:48:52.6404019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_dynamic_ops.h 2025-08-14T21:48:52.6408175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_native.h 2025-08-14T21:48:52.6413044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\quantize_per_tensor_ops.h 2025-08-14T21:48:52.6417762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_axis.h 2025-08-14T21:48:52.6421759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_axis_native.h 2025-08-14T21:48:52.6426025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_axis_ops.h 2025-08-14T21:48:52.6430681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales.h 2025-08-14T21:48:52.6434905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.6438963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales_native.h 2025-08-14T21:48:52.6443103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_scales_ops.h 2025-08-14T21:48:52.6447861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points.h 2025-08-14T21:48:52.6452316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.6456835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points_native.h 2025-08-14T21:48:52.6460982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_per_channel_zero_points_ops.h 2025-08-14T21:48:52.6465267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_scale.h 2025-08-14T21:48:52.6469075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_scale_native.h 2025-08-14T21:48:52.6472937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_scale_ops.h 2025-08-14T21:48:52.6477419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_zero_point.h 2025-08-14T21:48:52.6481522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_zero_point_native.h 2025-08-14T21:48:52.6485818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\q_zero_point_ops.h 2025-08-14T21:48:52.6489816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg.h 2025-08-14T21:48:52.6494174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.6499027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg_native.h 2025-08-14T21:48:52.6502901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rad2deg_ops.h 2025-08-14T21:48:52.6506937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand.h 2025-08-14T21:48:52.6511670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint.h 2025-08-14T21:48:52.6515671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.6519647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like.h 2025-08-14T21:48:52.6524287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.6528444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like_native.h 2025-08-14T21:48:52.6532526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_like_ops.h 2025-08-14T21:48:52.6536537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_native.h 2025-08-14T21:48:52.6540784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randint_ops.h 2025-08-14T21:48:52.6544682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn.h 2025-08-14T21:48:52.6548714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.6553179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.6557366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like.h 2025-08-14T21:48:52.6561468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.6565777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_compositeimplicitautogradnestedtensor_dispatch.h 2025-08-14T21:48:52.6570572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_native.h 2025-08-14T21:48:52.6574846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_like_ops.h 2025-08-14T21:48:52.6579063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_native.h 2025-08-14T21:48:52.6583305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randn_ops.h 2025-08-14T21:48:52.6587618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random.h 2025-08-14T21:48:52.6591627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.6595540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_cpu_dispatch.h 2025-08-14T21:48:52.6600639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_cuda_dispatch.h 2025-08-14T21:48:52.6604869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_meta_dispatch.h 2025-08-14T21:48:52.6610401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_native.h 2025-08-14T21:48:52.6613901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\random_ops.h 2025-08-14T21:48:52.6618013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm.h 2025-08-14T21:48:52.6622674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.6626235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_cpu_dispatch.h 2025-08-14T21:48:52.6631513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_cuda_dispatch.h 2025-08-14T21:48:52.6635904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_native.h 2025-08-14T21:48:52.6641385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\randperm_ops.h 2025-08-14T21:48:52.6644480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.6648889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.6653867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like.h 2025-08-14T21:48:52.6657387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.6661518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like_native.h 2025-08-14T21:48:52.6665604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_like_ops.h 2025-08-14T21:48:52.6669773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_native.h 2025-08-14T21:48:52.6674547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rand_ops.h 2025-08-14T21:48:52.6679014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range.h 2025-08-14T21:48:52.6695051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.6700871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_cpu_dispatch.h 2025-08-14T21:48:52.6706014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_cuda_dispatch.h 2025-08-14T21:48:52.6712946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_meta_dispatch.h 2025-08-14T21:48:52.6717403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_native.h 2025-08-14T21:48:52.6731670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\range_ops.h 2025-08-14T21:48:52.6746182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel.h 2025-08-14T21:48:52.6762483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.6767481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel_native.h 2025-08-14T21:48:52.6768050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\ravel_ops.h 2025-08-14T21:48:52.6768597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real.h 2025-08-14T21:48:52.6769258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.6769953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real_native.h 2025-08-14T21:48:52.6772287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\real_ops.h 2025-08-14T21:48:52.6775315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal.h 2025-08-14T21:48:52.6780697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.6783755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_cpu_dispatch.h 2025-08-14T21:48:52.6788943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_cuda_dispatch.h 2025-08-14T21:48:52.6793537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_meta.h 2025-08-14T21:48:52.6799312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_meta_dispatch.h 2025-08-14T21:48:52.6802101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_native.h 2025-08-14T21:48:52.6806323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reciprocal_ops.h 2025-08-14T21:48:52.6810615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream.h 2025-08-14T21:48:52.6815655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream_cuda_dispatch.h 2025-08-14T21:48:52.6819100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream_native.h 2025-08-14T21:48:52.6823274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\record_stream_ops.h 2025-08-14T21:48:52.6827471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names.h 2025-08-14T21:48:52.6832177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.6836237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names_native.h 2025-08-14T21:48:52.6840405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\refine_names_ops.h 2025-08-14T21:48:52.6845185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d.h 2025-08-14T21:48:52.6849161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward.h 2025-08-14T21:48:52.6853655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.6857962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_cpu_dispatch.h 2025-08-14T21:48:52.6862148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_cuda_dispatch.h 2025-08-14T21:48:52.6866341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_meta.h 2025-08-14T21:48:52.6870757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_meta_dispatch.h 2025-08-14T21:48:52.6875101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_native.h 2025-08-14T21:48:52.6879223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_backward_ops.h 2025-08-14T21:48:52.6885229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.6887835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_cpu_dispatch.h 2025-08-14T21:48:52.6892384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_cuda_dispatch.h 2025-08-14T21:48:52.6896839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_meta.h 2025-08-14T21:48:52.6901965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_meta_dispatch.h 2025-08-14T21:48:52.6906294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_native.h 2025-08-14T21:48:52.6910874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad1d_ops.h 2025-08-14T21:48:52.6915026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d.h 2025-08-14T21:48:52.6919899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward.h 2025-08-14T21:48:52.6924238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_cpu_dispatch.h 2025-08-14T21:48:52.6928526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_cuda_dispatch.h 2025-08-14T21:48:52.6933184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_native.h 2025-08-14T21:48:52.6937308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_backward_ops.h 2025-08-14T21:48:52.6941423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_cpu_dispatch.h 2025-08-14T21:48:52.6946192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_cuda_dispatch.h 2025-08-14T21:48:52.6950603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_native.h 2025-08-14T21:48:52.6954998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad2d_ops.h 2025-08-14T21:48:52.6959122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d.h 2025-08-14T21:48:52.6963201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward.h 2025-08-14T21:48:52.6968181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.6972523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_cpu_dispatch.h 2025-08-14T21:48:52.6977431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_cuda_dispatch.h 2025-08-14T21:48:52.6981967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_meta.h 2025-08-14T21:48:52.6986312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_meta_dispatch.h 2025-08-14T21:48:52.6990638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_native.h 2025-08-14T21:48:52.6994808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_backward_ops.h 2025-08-14T21:48:52.6999998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.7005032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_cpu_dispatch.h 2025-08-14T21:48:52.7010470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_cuda_dispatch.h 2025-08-14T21:48:52.7015173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_meta.h 2025-08-14T21:48:52.7019940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_meta_dispatch.h 2025-08-14T21:48:52.7024576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_native.h 2025-08-14T21:48:52.7029363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reflection_pad3d_ops.h 2025-08-14T21:48:52.7034008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu.h 2025-08-14T21:48:52.7038745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6.h 2025-08-14T21:48:52.7043336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.7048812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6_native.h 2025-08-14T21:48:52.7053626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu6_ops.h 2025-08-14T21:48:52.7058315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.7069821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_cpu_dispatch.h 2025-08-14T21:48:52.7070833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_cuda_dispatch.h 2025-08-14T21:48:52.7071610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_meta_dispatch.h 2025-08-14T21:48:52.7084808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_native.h 2025-08-14T21:48:52.7093048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\relu_ops.h 2025-08-14T21:48:52.7093611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder.h 2025-08-14T21:48:52.7094398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.7095355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.7127451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_cpu_dispatch.h 2025-08-14T21:48:52.7131581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_cuda_dispatch.h 2025-08-14T21:48:52.7136811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_meta.h 2025-08-14T21:48:52.7140330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_meta_dispatch.h 2025-08-14T21:48:52.7144542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_native.h 2025-08-14T21:48:52.7148736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\remainder_ops.h 2025-08-14T21:48:52.7152826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename.h 2025-08-14T21:48:52.7156839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.7161025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename_native.h 2025-08-14T21:48:52.7167871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rename_ops.h 2025-08-14T21:48:52.7171190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm.h 2025-08-14T21:48:52.7175299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.7179430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_cpu_dispatch.h 2025-08-14T21:48:52.7183575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_cuda_dispatch.h 2025-08-14T21:48:52.7187954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_meta.h 2025-08-14T21:48:52.7192077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_meta_dispatch.h 2025-08-14T21:48:52.7196073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_native.h 2025-08-14T21:48:52.7200592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\renorm_ops.h 2025-08-14T21:48:52.7219429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat.h 2025-08-14T21:48:52.7220262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.7221280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave.h 2025-08-14T21:48:52.7222062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.7224752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.7225749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_cpu_dispatch.h 2025-08-14T21:48:52.7230877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_cuda_dispatch.h 2025-08-14T21:48:52.7234579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_native.h 2025-08-14T21:48:52.7239730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_interleave_ops.h 2025-08-14T21:48:52.7243980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_native.h 2025-08-14T21:48:52.7249516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\repeat_ops.h 2025-08-14T21:48:52.7252187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d.h 2025-08-14T21:48:52.7256441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward.h 2025-08-14T21:48:52.7262287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.7265418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_cpu_dispatch.h 2025-08-14T21:48:52.7270492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_cuda_dispatch.h 2025-08-14T21:48:52.7275024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_meta.h 2025-08-14T21:48:52.7280982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_meta_dispatch.h 2025-08-14T21:48:52.7283826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_native.h 2025-08-14T21:48:52.7289132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_backward_ops.h 2025-08-14T21:48:52.7293893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.7299697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_cpu_dispatch.h 2025-08-14T21:48:52.7302650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_cuda_dispatch.h 2025-08-14T21:48:52.7308205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_meta.h 2025-08-14T21:48:52.7313474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_meta_dispatch.h 2025-08-14T21:48:52.7318655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_native.h 2025-08-14T21:48:52.7322662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad1d_ops.h 2025-08-14T21:48:52.7327546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d.h 2025-08-14T21:48:52.7362305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward.h 2025-08-14T21:48:52.7365645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_cpu_dispatch.h 2025-08-14T21:48:52.7370133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_cuda_dispatch.h 2025-08-14T21:48:52.7375080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_native.h 2025-08-14T21:48:52.7379013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_backward_ops.h 2025-08-14T21:48:52.7383746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.7388497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_cpu_dispatch.h 2025-08-14T21:48:52.7393694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_cuda_dispatch.h 2025-08-14T21:48:52.7397554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_meta.h 2025-08-14T21:48:52.7402581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_meta_dispatch.h 2025-08-14T21:48:52.7407111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_native.h 2025-08-14T21:48:52.7411758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad2d_ops.h 2025-08-14T21:48:52.7415816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d.h 2025-08-14T21:48:52.7420315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward.h 2025-08-14T21:48:52.7425782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_cpu_dispatch.h 2025-08-14T21:48:52.7431514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_cuda_dispatch.h 2025-08-14T21:48:52.7434518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_native.h 2025-08-14T21:48:52.7438977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_backward_ops.h 2025-08-14T21:48:52.7444289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.7447973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_cpu_dispatch.h 2025-08-14T21:48:52.7452742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_cuda_dispatch.h 2025-08-14T21:48:52.7457426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_meta.h 2025-08-14T21:48:52.7462884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_meta_dispatch.h 2025-08-14T21:48:52.7466092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_native.h 2025-08-14T21:48:52.7479530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\replication_pad3d_ops.h 2025-08-14T21:48:52.7495480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad.h 2025-08-14T21:48:52.7498272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.7499055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad_native.h 2025-08-14T21:48:52.7499688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\requires_grad_ops.h 2025-08-14T21:48:52.7500288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape.h 2025-08-14T21:48:52.7500841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as.h 2025-08-14T21:48:52.7505203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_compositeimplicitautogradnestedtensor_dispatch.h 2025-08-14T21:48:52.7510055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.7513524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_native.h 2025-08-14T21:48:52.7518712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_as_ops.h 2025-08-14T21:48:52.7522457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_compositeimplicitautogradnestedtensor_dispatch.h 2025-08-14T21:48:52.7526681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.7531277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_native.h 2025-08-14T21:48:52.7535294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\reshape_ops.h 2025-08-14T21:48:52.7539911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize.h 2025-08-14T21:48:52.7543671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as.h 2025-08-14T21:48:52.7548245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.7552813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_native.h 2025-08-14T21:48:52.7557184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_ops.h 2025-08-14T21:48:52.7561209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse.h 2025-08-14T21:48:52.7565828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.7569999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_meta_dispatch.h 2025-08-14T21:48:52.7574935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_native.h 2025-08-14T21:48:52.7579859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_as_sparse_ops.h 2025-08-14T21:48:52.7583811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.7587852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_cpu_dispatch.h 2025-08-14T21:48:52.7592176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_cuda_dispatch.h 2025-08-14T21:48:52.7596219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_meta_dispatch.h 2025-08-14T21:48:52.7600530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_native.h 2025-08-14T21:48:52.7604970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resize_ops.h 2025-08-14T21:48:52.7608987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj.h 2025-08-14T21:48:52.7613257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.7617247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj_native.h 2025-08-14T21:48:52.7621673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_conj_ops.h 2025-08-14T21:48:52.7626558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg.h 2025-08-14T21:48:52.7634604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.7636327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg_native.h 2025-08-14T21:48:52.7647083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\resolve_neg_ops.h 2025-08-14T21:48:52.7662298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type.h 2025-08-14T21:48:52.7680533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.7691159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type_native.h 2025-08-14T21:48:52.7692460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\result_type_ops.h 2025-08-14T21:48:52.7693056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad.h 2025-08-14T21:48:52.7693794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.7694565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad_native.h 2025-08-14T21:48:52.7695188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retains_grad_ops.h 2025-08-14T21:48:52.7695776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad.h 2025-08-14T21:48:52.7697460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.7698895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad_native.h 2025-08-14T21:48:52.7701400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\retain_grad_ops.h 2025-08-14T21:48:52.7706256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm.h 2025-08-14T21:48:52.7711467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.7715286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm_native.h 2025-08-14T21:48:52.7719515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rms_norm_ops.h 2025-08-14T21:48:52.7723753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu.h 2025-08-14T21:48:52.7727532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell.h 2025-08-14T21:48:52.7732065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.7736817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell_native.h 2025-08-14T21:48:52.7741925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_cell_ops.h 2025-08-14T21:48:52.7746093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.7750614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_native.h 2025-08-14T21:48:52.7755602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_relu_ops.h 2025-08-14T21:48:52.7759720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh.h 2025-08-14T21:48:52.7763416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell.h 2025-08-14T21:48:52.7768176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.7772207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell_native.h 2025-08-14T21:48:52.7776606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_cell_ops.h 2025-08-14T21:48:52.7780930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.7785509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_native.h 2025-08-14T21:48:52.7789834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rnn_tanh_ops.h 2025-08-14T21:48:52.7794730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll.h 2025-08-14T21:48:52.7799104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.7803360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_cpu_dispatch.h 2025-08-14T21:48:52.7807607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_cuda_dispatch.h 2025-08-14T21:48:52.7811892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_native.h 2025-08-14T21:48:52.7816293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\roll_ops.h 2025-08-14T21:48:52.7820324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90.h 2025-08-14T21:48:52.7825091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.7829410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90_native.h 2025-08-14T21:48:52.7833656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rot90_ops.h 2025-08-14T21:48:52.7837621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round.h 2025-08-14T21:48:52.7842126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.7845996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_cpu_dispatch.h 2025-08-14T21:48:52.7850725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_cuda_dispatch.h 2025-08-14T21:48:52.7854897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_meta.h 2025-08-14T21:48:52.7858909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_meta_dispatch.h 2025-08-14T21:48:52.7863547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_native.h 2025-08-14T21:48:52.7868076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\round_ops.h 2025-08-14T21:48:52.7872093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices.h 2025-08-14T21:48:52.7876418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.7880327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy.h 2025-08-14T21:48:52.7884815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.7889586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.7893804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_native.h 2025-08-14T21:48:52.7897915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_copy_ops.h 2025-08-14T21:48:52.7901955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_native.h 2025-08-14T21:48:52.7906427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_indices_ops.h 2025-08-14T21:48:52.7911114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack.h 2025-08-14T21:48:52.7916507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.7920999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack_native.h 2025-08-14T21:48:52.7925135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\row_stack_ops.h 2025-08-14T21:48:52.7929201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu.h 2025-08-14T21:48:52.7933099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.7937314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_native.h 2025-08-14T21:48:52.7941275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_ops.h 2025-08-14T21:48:52.7946015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise.h 2025-08-14T21:48:52.7950083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward.h 2025-08-14T21:48:52.7954703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.7958886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward_native.h 2025-08-14T21:48:52.7962971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_backward_ops.h 2025-08-14T21:48:52.7967504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.7971975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_cpu_dispatch.h 2025-08-14T21:48:52.7976264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_cuda_dispatch.h 2025-08-14T21:48:52.7980791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_meta_dispatch.h 2025-08-14T21:48:52.7985046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_native.h 2025-08-14T21:48:52.7989276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rrelu_with_noise_ops.h 2025-08-14T21:48:52.7993755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift.h 2025-08-14T21:48:52.7998217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.8002696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_cpu_dispatch.h 2025-08-14T21:48:52.8006944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_cuda_dispatch.h 2025-08-14T21:48:52.8012199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_meta_dispatch.h 2025-08-14T21:48:52.8015561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_native.h 2025-08-14T21:48:52.8026716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rshift_ops.h 2025-08-14T21:48:52.8027284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt.h 2025-08-14T21:48:52.8030061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.8043377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_cpu_dispatch.h 2025-08-14T21:48:52.8050523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_cuda_dispatch.h 2025-08-14T21:48:52.8051143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_meta.h 2025-08-14T21:48:52.8051755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_meta_dispatch.h 2025-08-14T21:48:52.8062791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_native.h 2025-08-14T21:48:52.8065227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsqrt_ops.h 2025-08-14T21:48:52.8065767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub.h 2025-08-14T21:48:52.8072355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.8073803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_cpu_dispatch.h 2025-08-14T21:48:52.8081566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_cuda_dispatch.h 2025-08-14T21:48:52.8082834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_native.h 2025-08-14T21:48:52.8093235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\rsub_ops.h 2025-08-14T21:48:52.8093833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor.h 2025-08-14T21:48:52.8095316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.8107115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor_native.h 2025-08-14T21:48:52.8120514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scalar_tensor_ops.h 2025-08-14T21:48:52.8121202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention.h 2025-08-14T21:48:52.8122070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.8122968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention_native.h 2025-08-14T21:48:52.8123975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scaled_dot_product_attention_ops.h 2025-08-14T21:48:52.8128673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter.h 2025-08-14T21:48:52.8132529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add.h 2025-08-14T21:48:52.8136891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.8141428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.8146473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_cpu_dispatch.h 2025-08-14T21:48:52.8150334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_cuda_dispatch.h 2025-08-14T21:48:52.8155359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_meta.h 2025-08-14T21:48:52.8160193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_meta_dispatch.h 2025-08-14T21:48:52.8164997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_native.h 2025-08-14T21:48:52.8169241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_add_ops.h 2025-08-14T21:48:52.8174580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.8178955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.8184262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_cpu_dispatch.h 2025-08-14T21:48:52.8187904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_cuda_dispatch.h 2025-08-14T21:48:52.8192396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_meta.h 2025-08-14T21:48:52.8197281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_meta_dispatch.h 2025-08-14T21:48:52.8200949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_native.h 2025-08-14T21:48:52.8205419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_ops.h 2025-08-14T21:48:52.8210034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce.h 2025-08-14T21:48:52.8214476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.8220373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_cpu_dispatch.h 2025-08-14T21:48:52.8223124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_cuda_dispatch.h 2025-08-14T21:48:52.8227591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_meta.h 2025-08-14T21:48:52.8232106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_meta_dispatch.h 2025-08-14T21:48:52.8237121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_native.h 2025-08-14T21:48:52.8240877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\scatter_reduce_ops.h 2025-08-14T21:48:52.8245201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted.h 2025-08-14T21:48:52.8249440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_cpu_dispatch.h 2025-08-14T21:48:52.8253528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_cuda_dispatch.h 2025-08-14T21:48:52.8257956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_native.h 2025-08-14T21:48:52.8262543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\searchsorted_ops.h 2025-08-14T21:48:52.8266504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce.h 2025-08-14T21:48:52.8271556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.8275596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_cpu_dispatch.h 2025-08-14T21:48:52.8280420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_cuda_dispatch.h 2025-08-14T21:48:52.8284496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_native.h 2025-08-14T21:48:52.8288657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\segment_reduce_ops.h 2025-08-14T21:48:52.8293204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select.h 2025-08-14T21:48:52.8297054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward.h 2025-08-14T21:48:52.8301427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.8305835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.8309983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_native.h 2025-08-14T21:48:52.8314507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_backward_ops.h 2025-08-14T21:48:52.8318636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.8323950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.8327384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy.h 2025-08-14T21:48:52.8332356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.8336996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.8341422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_native.h 2025-08-14T21:48:52.8345768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_copy_ops.h 2025-08-14T21:48:52.8349815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_native.h 2025-08-14T21:48:52.8354438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_ops.h 2025-08-14T21:48:52.8358604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter.h 2025-08-14T21:48:52.8363124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.8367758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.8372136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_native.h 2025-08-14T21:48:52.8376494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\select_scatter_ops.h 2025-08-14T21:48:52.8380735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu.h 2025-08-14T21:48:52.8385178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.8389311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu_native.h 2025-08-14T21:48:52.8393929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\selu_ops.h 2025-08-14T21:48:52.8397945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set.h 2025-08-14T21:48:52.8402100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.8406167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.8410292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_cpu_dispatch.h 2025-08-14T21:48:52.8414480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_cuda_dispatch.h 2025-08-14T21:48:52.8418640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data.h 2025-08-14T21:48:52.8422666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.8427104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data_native.h 2025-08-14T21:48:52.8432121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_data_ops.h 2025-08-14T21:48:52.8435964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_meta_dispatch.h 2025-08-14T21:48:52.8440639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_native.h 2025-08-14T21:48:52.8445696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\set_ops.h 2025-08-14T21:48:52.8448510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn.h 2025-08-14T21:48:52.8452993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.8458310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_cpu_dispatch.h 2025-08-14T21:48:52.8461476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_cuda_dispatch.h 2025-08-14T21:48:52.8465700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_meta.h 2025-08-14T21:48:52.8470895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_meta_dispatch.h 2025-08-14T21:48:52.8474245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_native.h 2025-08-14T21:48:52.8478766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sgn_ops.h 2025-08-14T21:48:52.8490753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid.h 2025-08-14T21:48:52.8497758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward.h 2025-08-14T21:48:52.8509188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.8517077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_cpu_dispatch.h 2025-08-14T21:48:52.8517422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_cuda_dispatch.h 2025-08-14T21:48:52.8545450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_meta.h 2025-08-14T21:48:52.8546353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_meta_dispatch.h 2025-08-14T21:48:52.8546636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_native.h 2025-08-14T21:48:52.8553156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_backward_ops.h 2025-08-14T21:48:52.8555893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.8560334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_cpu_dispatch.h 2025-08-14T21:48:52.8566975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_cuda_dispatch.h 2025-08-14T21:48:52.8570409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_meta.h 2025-08-14T21:48:52.8574551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_meta_dispatch.h 2025-08-14T21:48:52.8579151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_native.h 2025-08-14T21:48:52.8583327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sigmoid_ops.h 2025-08-14T21:48:52.8587596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign.h 2025-08-14T21:48:52.8591460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit.h 2025-08-14T21:48:52.8596436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.8600344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_cpu_dispatch.h 2025-08-14T21:48:52.8604660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_cuda_dispatch.h 2025-08-14T21:48:52.8608620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_meta.h 2025-08-14T21:48:52.8612807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_meta_dispatch.h 2025-08-14T21:48:52.8617433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_native.h 2025-08-14T21:48:52.8623088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\signbit_ops.h 2025-08-14T21:48:52.8626219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.8630822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_cpu_dispatch.h 2025-08-14T21:48:52.8635327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_cuda_dispatch.h 2025-08-14T21:48:52.8639484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_meta.h 2025-08-14T21:48:52.8643651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_meta_dispatch.h 2025-08-14T21:48:52.8647706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_native.h 2025-08-14T21:48:52.8651884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sign_ops.h 2025-08-14T21:48:52.8655532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu.h 2025-08-14T21:48:52.8659649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward.h 2025-08-14T21:48:52.8663917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.8668640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.8673215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_cpu_dispatch.h 2025-08-14T21:48:52.8677650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_cuda_dispatch.h 2025-08-14T21:48:52.8681908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_meta.h 2025-08-14T21:48:52.8686172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_meta_dispatch.h 2025-08-14T21:48:52.8690307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_native.h 2025-08-14T21:48:52.8695240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_backward_ops.h 2025-08-14T21:48:52.8699707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.8703600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_cpu_dispatch.h 2025-08-14T21:48:52.8707526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_cuda_dispatch.h 2025-08-14T21:48:52.8711931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_meta.h 2025-08-14T21:48:52.8716049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_meta_dispatch.h 2025-08-14T21:48:52.8720381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_native.h 2025-08-14T21:48:52.8724735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\silu_ops.h 2025-08-14T21:48:52.8728849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin.h 2025-08-14T21:48:52.8732658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc.h 2025-08-14T21:48:52.8737102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.8741146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_cpu_dispatch.h 2025-08-14T21:48:52.8745226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_cuda_dispatch.h 2025-08-14T21:48:52.8749869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_meta.h 2025-08-14T21:48:52.8754080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_meta_dispatch.h 2025-08-14T21:48:52.8758010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_native.h 2025-08-14T21:48:52.8762347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinc_ops.h 2025-08-14T21:48:52.8766471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh.h 2025-08-14T21:48:52.8770901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.8775043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_cpu_dispatch.h 2025-08-14T21:48:52.8779379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_cuda_dispatch.h 2025-08-14T21:48:52.8783806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_meta.h 2025-08-14T21:48:52.8788006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_meta_dispatch.h 2025-08-14T21:48:52.8792017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_native.h 2025-08-14T21:48:52.8796679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sinh_ops.h 2025-08-14T21:48:52.8800809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.8804907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_cpu_dispatch.h 2025-08-14T21:48:52.8808975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_cuda_dispatch.h 2025-08-14T21:48:52.8813019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_meta.h 2025-08-14T21:48:52.8818817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_meta_dispatch.h 2025-08-14T21:48:52.8820814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_native.h 2025-08-14T21:48:52.8825491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sin_ops.h 2025-08-14T21:48:52.8829228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size.h 2025-08-14T21:48:52.8833657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.8838054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size_native.h 2025-08-14T21:48:52.8841397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\size_ops.h 2025-08-14T21:48:52.8845598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice.h 2025-08-14T21:48:52.8850583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward.h 2025-08-14T21:48:52.8854030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.8858205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward_native.h 2025-08-14T21:48:52.8863245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_backward_ops.h 2025-08-14T21:48:52.8866785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.8871648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy.h 2025-08-14T21:48:52.8876566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.8882404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.8885077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_native.h 2025-08-14T21:48:52.8889276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_copy_ops.h 2025-08-14T21:48:52.8895005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse.h 2025-08-14T21:48:52.8898494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.8902811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse_native.h 2025-08-14T21:48:52.8907637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_inverse_ops.h 2025-08-14T21:48:52.8911839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_native.h 2025-08-14T21:48:52.8916516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_ops.h 2025-08-14T21:48:52.8920871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter.h 2025-08-14T21:48:52.8925396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.8929748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.8933922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_native.h 2025-08-14T21:48:52.8938282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slice_scatter_ops.h 2025-08-14T21:48:52.8942446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet.h 2025-08-14T21:48:52.8946532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.8950855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet_native.h 2025-08-14T21:48:52.8955652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slogdet_ops.h 2025-08-14T21:48:52.8960291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d.h 2025-08-14T21:48:52.8966002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.8968601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward.h 2025-08-14T21:48:52.8973301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward_cpu_dispatch.h 2025-08-14T21:48:52.8986310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward_native.h 2025-08-14T21:48:52.8995617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_forward_ops.h 2025-08-14T21:48:52.9001886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_native.h 2025-08-14T21:48:52.9008121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv3d_ops.h 2025-08-14T21:48:52.9013795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d.h 2025-08-14T21:48:52.9014285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.9014612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_cpu_dispatch.h 2025-08-14T21:48:52.9014933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_cuda_dispatch.h 2025-08-14T21:48:52.9017054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_native.h 2025-08-14T21:48:52.9030890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated2d_ops.h 2025-08-14T21:48:52.9034401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d.h 2025-08-14T21:48:52.9034824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.9036947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_cpu_dispatch.h 2025-08-14T21:48:52.9049797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_cuda_dispatch.h 2025-08-14T21:48:52.9056917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_native.h 2025-08-14T21:48:52.9060509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_dilated3d_ops.h 2025-08-14T21:48:52.9060787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d.h 2025-08-14T21:48:52.9062422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.9068506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_cpu_dispatch.h 2025-08-14T21:48:52.9071556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_cuda_dispatch.h 2025-08-14T21:48:52.9080349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_meta.h 2025-08-14T21:48:52.9081433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_meta_dispatch.h 2025-08-14T21:48:52.9094202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_native.h 2025-08-14T21:48:52.9101229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose2d_ops.h 2025-08-14T21:48:52.9108461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d.h 2025-08-14T21:48:52.9111364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_cpu_dispatch.h 2025-08-14T21:48:52.9111818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_cuda_dispatch.h 2025-08-14T21:48:52.9112223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_native.h 2025-08-14T21:48:52.9118268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\slow_conv_transpose3d_ops.h 2025-08-14T21:48:52.9120333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm.h 2025-08-14T21:48:52.9124858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.9129761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm_native.h 2025-08-14T21:48:52.9133230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smm_ops.h 2025-08-14T21:48:52.9137243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss.h 2025-08-14T21:48:52.9142398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward.h 2025-08-14T21:48:52.9146589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.9151053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_cpu_dispatch.h 2025-08-14T21:48:52.9155778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_cuda_dispatch.h 2025-08-14T21:48:52.9160086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_native.h 2025-08-14T21:48:52.9164500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_backward_ops.h 2025-08-14T21:48:52.9169234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.9173303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_cpu_dispatch.h 2025-08-14T21:48:52.9177678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_cuda_dispatch.h 2025-08-14T21:48:52.9182409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_meta.h 2025-08-14T21:48:52.9186690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_meta_dispatch.h 2025-08-14T21:48:52.9190994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_native.h 2025-08-14T21:48:52.9195146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\smooth_l1_loss_ops.h 2025-08-14T21:48:52.9199602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax.h 2025-08-14T21:48:52.9203609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.9207606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.9211993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_native.h 2025-08-14T21:48:52.9216012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softmax_ops.h 2025-08-14T21:48:52.9220439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus.h 2025-08-14T21:48:52.9224709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward.h 2025-08-14T21:48:52.9229300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.9233602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_cpu_dispatch.h 2025-08-14T21:48:52.9237744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_cuda_dispatch.h 2025-08-14T21:48:52.9242052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_meta.h 2025-08-14T21:48:52.9246682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_meta_dispatch.h 2025-08-14T21:48:52.9250777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_native.h 2025-08-14T21:48:52.9255131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_backward_ops.h 2025-08-14T21:48:52.9259733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.9263780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_cpu_dispatch.h 2025-08-14T21:48:52.9269367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_cuda_dispatch.h 2025-08-14T21:48:52.9273339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_meta.h 2025-08-14T21:48:52.9277448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_meta_dispatch.h 2025-08-14T21:48:52.9281457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_native.h 2025-08-14T21:48:52.9286023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softplus_ops.h 2025-08-14T21:48:52.9289988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink.h 2025-08-14T21:48:52.9293873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward.h 2025-08-14T21:48:52.9298173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.9302209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_cpu_dispatch.h 2025-08-14T21:48:52.9306561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_cuda_dispatch.h 2025-08-14T21:48:52.9310860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_meta.h 2025-08-14T21:48:52.9315244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_meta_dispatch.h 2025-08-14T21:48:52.9319466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_native.h 2025-08-14T21:48:52.9323546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_backward_ops.h 2025-08-14T21:48:52.9327811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.9332042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_cpu_dispatch.h 2025-08-14T21:48:52.9336167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_cuda_dispatch.h 2025-08-14T21:48:52.9340408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_meta.h 2025-08-14T21:48:52.9344618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_meta_dispatch.h 2025-08-14T21:48:52.9349169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_native.h 2025-08-14T21:48:52.9354610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\softshrink_ops.h 2025-08-14T21:48:52.9357503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss.h 2025-08-14T21:48:52.9362197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward.h 2025-08-14T21:48:52.9367458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.9371280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward_native.h 2025-08-14T21:48:52.9375658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_backward_ops.h 2025-08-14T21:48:52.9380993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.9386201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_native.h 2025-08-14T21:48:52.9390306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\soft_margin_loss_ops.h 2025-08-14T21:48:52.9394558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort.h 2025-08-14T21:48:52.9399238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.9403061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.9408540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.9412822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_cpu_dispatch.h 2025-08-14T21:48:52.9418175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_cuda_dispatch.h 2025-08-14T21:48:52.9421661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_meta.h 2025-08-14T21:48:52.9425910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_meta_dispatch.h 2025-08-14T21:48:52.9431525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_native.h 2025-08-14T21:48:52.9434940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sort_ops.h 2025-08-14T21:48:52.9438833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor.h 2025-08-14T21:48:52.9443661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.9447174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor_native.h 2025-08-14T21:48:52.9451389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsc_tensor_ops.h 2025-08-14T21:48:52.9456309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor.h 2025-08-14T21:48:52.9460286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.9464817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor_native.h 2025-08-14T21:48:52.9469327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_bsr_tensor_ops.h 2025-08-14T21:48:52.9482534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor.h 2025-08-14T21:48:52.9493598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.9498816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor_native.h 2025-08-14T21:48:52.9499133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_compressed_tensor_ops.h 2025-08-14T21:48:52.9499391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor.h 2025-08-14T21:48:52.9502162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.9507347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.9515173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_native.h 2025-08-14T21:48:52.9516730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_coo_tensor_ops.h 2025-08-14T21:48:52.9529205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor.h 2025-08-14T21:48:52.9530524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.9537847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor_native.h 2025-08-14T21:48:52.9550329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csc_tensor_ops.h 2025-08-14T21:48:52.9552375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor.h 2025-08-14T21:48:52.9559309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:52.9565754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor_native.h 2025-08-14T21:48:52.9571966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_csr_tensor_ops.h 2025-08-14T21:48:52.9577800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim.h 2025-08-14T21:48:52.9584296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.9590481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim_native.h 2025-08-14T21:48:52.9596533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_dim_ops.h 2025-08-14T21:48:52.9603517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask.h 2025-08-14T21:48:52.9609529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.9614611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask_native.h 2025-08-14T21:48:52.9618750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_mask_ops.h 2025-08-14T21:48:52.9622806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize.h 2025-08-14T21:48:52.9627192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear.h 2025-08-14T21:48:52.9632492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.9636105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_meta_dispatch.h 2025-08-14T21:48:52.9640025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_native.h 2025-08-14T21:48:52.9645227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_and_clear_ops.h 2025-08-14T21:48:52.9649849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.9653957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_meta_dispatch.h 2025-08-14T21:48:52.9658046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_native.h 2025-08-14T21:48:52.9662611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_resize_ops.h 2025-08-14T21:48:52.9666773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_sampled_addmm.h 2025-08-14T21:48:52.9671142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_sampled_addmm_native.h 2025-08-14T21:48:52.9675473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sparse_sampled_addmm_ops.h 2025-08-14T21:48:52.9679565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai.h 2025-08-14T21:48:52.9683822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.9687909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_cpu_dispatch.h 2025-08-14T21:48:52.9691889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_cuda_dispatch.h 2025-08-14T21:48:52.9695896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_meta.h 2025-08-14T21:48:52.9699996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_meta_dispatch.h 2025-08-14T21:48:52.9735578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_native.h 2025-08-14T21:48:52.9739768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_airy_ai_ops.h 2025-08-14T21:48:52.9743906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0.h 2025-08-14T21:48:52.9748203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.9752395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_cpu_dispatch.h 2025-08-14T21:48:52.9756484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_cuda_dispatch.h 2025-08-14T21:48:52.9760919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_meta.h 2025-08-14T21:48:52.9765167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_meta_dispatch.h 2025-08-14T21:48:52.9769197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_native.h 2025-08-14T21:48:52.9773426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j0_ops.h 2025-08-14T21:48:52.9777508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1.h 2025-08-14T21:48:52.9782357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.9786751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_cpu_dispatch.h 2025-08-14T21:48:52.9791131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_cuda_dispatch.h 2025-08-14T21:48:52.9795526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_meta.h 2025-08-14T21:48:52.9799507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_meta_dispatch.h 2025-08-14T21:48:52.9803689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_native.h 2025-08-14T21:48:52.9807947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_j1_ops.h 2025-08-14T21:48:52.9839224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0.h 2025-08-14T21:48:52.9843860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.9848369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_cpu_dispatch.h 2025-08-14T21:48:52.9852575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_cuda_dispatch.h 2025-08-14T21:48:52.9856897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_meta.h 2025-08-14T21:48:52.9861067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_meta_dispatch.h 2025-08-14T21:48:52.9866472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_native.h 2025-08-14T21:48:52.9869776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y0_ops.h 2025-08-14T21:48:52.9874143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1.h 2025-08-14T21:48:52.9879326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.9882761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_cpu_dispatch.h 2025-08-14T21:48:52.9887051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_cuda_dispatch.h 2025-08-14T21:48:52.9891780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_meta.h 2025-08-14T21:48:52.9895825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_meta_dispatch.h 2025-08-14T21:48:52.9900239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_native.h 2025-08-14T21:48:52.9904425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_bessel_y1_ops.h 2025-08-14T21:48:52.9910204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t.h 2025-08-14T21:48:52.9913634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.9918138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.9923235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_cpu_dispatch.h 2025-08-14T21:48:52.9926976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_cuda_dispatch.h 2025-08-14T21:48:52.9931462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_meta.h 2025-08-14T21:48:52.9935926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_meta_dispatch.h 2025-08-14T21:48:52.9941133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_native.h 2025-08-14T21:48:52.9944973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_t_ops.h 2025-08-14T21:48:52.9949371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u.h 2025-08-14T21:48:52.9955154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:52.9958101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:52.9962791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_cpu_dispatch.h 2025-08-14T21:48:52.9967784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_cuda_dispatch.h 2025-08-14T21:48:52.9971389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_meta.h 2025-08-14T21:48:52.9975851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_meta_dispatch.h 2025-08-14T21:48:52.9984284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_native.h 2025-08-14T21:48:52.9985085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_u_ops.h 2025-08-14T21:48:52.9991909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v.h 2025-08-14T21:48:52.9994041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.0003848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.0004807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_cpu_dispatch.h 2025-08-14T21:48:53.0012870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_cuda_dispatch.h 2025-08-14T21:48:53.0013725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_meta.h 2025-08-14T21:48:53.0028519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_meta_dispatch.h 2025-08-14T21:48:53.0035481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_native.h 2025-08-14T21:48:53.0036265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_v_ops.h 2025-08-14T21:48:53.0037028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w.h 2025-08-14T21:48:53.0037994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.0041882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.0048278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_cpu_dispatch.h 2025-08-14T21:48:53.0050722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_cuda_dispatch.h 2025-08-14T21:48:53.0055506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_meta.h 2025-08-14T21:48:53.0059726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_meta_dispatch.h 2025-08-14T21:48:53.0064288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_native.h 2025-08-14T21:48:53.0073939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_chebyshev_polynomial_w_ops.h 2025-08-14T21:48:53.0075192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma.h 2025-08-14T21:48:53.0079978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.0084334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma_native.h 2025-08-14T21:48:53.0088569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_digamma_ops.h 2025-08-14T21:48:53.0092719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr.h 2025-08-14T21:48:53.0097141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.0101428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_cpu_dispatch.h 2025-08-14T21:48:53.0105487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_cuda_dispatch.h 2025-08-14T21:48:53.0110212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_meta.h 2025-08-14T21:48:53.0115528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_meta_dispatch.h 2025-08-14T21:48:53.0118819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_native.h 2025-08-14T21:48:53.0123015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_entr_ops.h 2025-08-14T21:48:53.0126963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf.h 2025-08-14T21:48:53.0130939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc.h 2025-08-14T21:48:53.0136287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx.h 2025-08-14T21:48:53.0139558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.0143571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_cpu_dispatch.h 2025-08-14T21:48:53.0148106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_cuda_dispatch.h 2025-08-14T21:48:53.0152472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_meta.h 2025-08-14T21:48:53.0156715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_meta_dispatch.h 2025-08-14T21:48:53.0160799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_native.h 2025-08-14T21:48:53.0165012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfcx_ops.h 2025-08-14T21:48:53.0169425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.0173903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc_native.h 2025-08-14T21:48:53.0178081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfc_ops.h 2025-08-14T21:48:53.0182078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv.h 2025-08-14T21:48:53.0186329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.0190527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv_native.h 2025-08-14T21:48:53.0194820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erfinv_ops.h 2025-08-14T21:48:53.0199123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.0203471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf_native.h 2025-08-14T21:48:53.0207637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_erf_ops.h 2025-08-14T21:48:53.0211717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2.h 2025-08-14T21:48:53.0216018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.0220134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2_native.h 2025-08-14T21:48:53.0224899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_exp2_ops.h 2025-08-14T21:48:53.0229129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit.h 2025-08-14T21:48:53.0233446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.0237527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit_native.h 2025-08-14T21:48:53.0241506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expit_ops.h 2025-08-14T21:48:53.0245620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1.h 2025-08-14T21:48:53.0249786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.0253835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1_native.h 2025-08-14T21:48:53.0258022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_expm1_ops.h 2025-08-14T21:48:53.0262475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc.h 2025-08-14T21:48:53.0266564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc.h 2025-08-14T21:48:53.0271134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.0275437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc_native.h 2025-08-14T21:48:53.0280455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaincc_ops.h 2025-08-14T21:48:53.0284115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.0288483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc_native.h 2025-08-14T21:48:53.0294071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammainc_ops.h 2025-08-14T21:48:53.0297021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln.h 2025-08-14T21:48:53.0301516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.0306047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln_native.h 2025-08-14T21:48:53.0310127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_gammaln_ops.h 2025-08-14T21:48:53.0314281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h.h 2025-08-14T21:48:53.0318827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he.h 2025-08-14T21:48:53.0324036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.0328311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.0333034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_cpu_dispatch.h 2025-08-14T21:48:53.0337294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_cuda_dispatch.h 2025-08-14T21:48:53.0341962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_meta.h 2025-08-14T21:48:53.0346150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_meta_dispatch.h 2025-08-14T21:48:53.0350399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_native.h 2025-08-14T21:48:53.0354931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_he_ops.h 2025-08-14T21:48:53.0359411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.0364998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.0368226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_cpu_dispatch.h 2025-08-14T21:48:53.0372430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_cuda_dispatch.h 2025-08-14T21:48:53.0377690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_meta.h 2025-08-14T21:48:53.0381395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_meta_dispatch.h 2025-08-14T21:48:53.0385743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_native.h 2025-08-14T21:48:53.0390394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_hermite_polynomial_h_ops.h 2025-08-14T21:48:53.0396169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0.h 2025-08-14T21:48:53.0398801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e.h 2025-08-14T21:48:53.0403330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.0408705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_cpu_dispatch.h 2025-08-14T21:48:53.0411654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_cuda_dispatch.h 2025-08-14T21:48:53.0416087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_meta.h 2025-08-14T21:48:53.0421586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_meta_dispatch.h 2025-08-14T21:48:53.0424750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_native.h 2025-08-14T21:48:53.0429113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0e_ops.h 2025-08-14T21:48:53.0434385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.0438194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0_native.h 2025-08-14T21:48:53.0442414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i0_ops.h 2025-08-14T21:48:53.0446944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1.h 2025-08-14T21:48:53.0452764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e.h 2025-08-14T21:48:53.0455557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.0460983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_cpu_dispatch.h 2025-08-14T21:48:53.0465735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_cuda_dispatch.h 2025-08-14T21:48:53.0469559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_meta.h 2025-08-14T21:48:53.0474018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_meta_dispatch.h 2025-08-14T21:48:53.0478460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_native.h 2025-08-14T21:48:53.0489520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1e_ops.h 2025-08-14T21:48:53.0495715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.0496724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_cpu_dispatch.h 2025-08-14T21:48:53.0497405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_cuda_dispatch.h 2025-08-14T21:48:53.0504470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_meta.h 2025-08-14T21:48:53.0505708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_meta_dispatch.h 2025-08-14T21:48:53.0510837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_native.h 2025-08-14T21:48:53.0514655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_i1_ops.h 2025-08-14T21:48:53.0523904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l.h 2025-08-14T21:48:53.0524890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.0535059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.0536027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_cpu_dispatch.h 2025-08-14T21:48:53.0538051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_cuda_dispatch.h 2025-08-14T21:48:53.0542450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_meta.h 2025-08-14T21:48:53.0549117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_meta_dispatch.h 2025-08-14T21:48:53.0552285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_native.h 2025-08-14T21:48:53.0556939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_laguerre_polynomial_l_ops.h 2025-08-14T21:48:53.0561041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p.h 2025-08-14T21:48:53.0567961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.0570590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.0574722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_cpu_dispatch.h 2025-08-14T21:48:53.0578902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_cuda_dispatch.h 2025-08-14T21:48:53.0583737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_meta.h 2025-08-14T21:48:53.0588080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_meta_dispatch.h 2025-08-14T21:48:53.0592211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_native.h 2025-08-14T21:48:53.0596393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_legendre_polynomial_p_ops.h 2025-08-14T21:48:53.0600409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p.h 2025-08-14T21:48:53.0604709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.0609280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p_native.h 2025-08-14T21:48:53.0613428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log1p_ops.h 2025-08-14T21:48:53.0617505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit.h 2025-08-14T21:48:53.0621746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.0625880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit_native.h 2025-08-14T21:48:53.0630206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logit_ops.h 2025-08-14T21:48:53.0634221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp.h 2025-08-14T21:48:53.0638716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.0643272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp_native.h 2025-08-14T21:48:53.0647319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_logsumexp_ops.h 2025-08-14T21:48:53.0651978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr.h 2025-08-14T21:48:53.0656220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.0660305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_cpu_dispatch.h 2025-08-14T21:48:53.0664641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_cuda_dispatch.h 2025-08-14T21:48:53.0669031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_meta.h 2025-08-14T21:48:53.0673202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_meta_dispatch.h 2025-08-14T21:48:53.0677761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_native.h 2025-08-14T21:48:53.0681955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_ndtr_ops.h 2025-08-14T21:48:53.0686136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax.h 2025-08-14T21:48:53.0690689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.0694941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax_native.h 2025-08-14T21:48:53.0699246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_log_softmax_ops.h 2025-08-14T21:48:53.0703630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0.h 2025-08-14T21:48:53.0708230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.0712494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_cpu_dispatch.h 2025-08-14T21:48:53.0716692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_cuda_dispatch.h 2025-08-14T21:48:53.0721208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_meta.h 2025-08-14T21:48:53.0725445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_meta_dispatch.h 2025-08-14T21:48:53.0740274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_native.h 2025-08-14T21:48:53.0741069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i0_ops.h 2025-08-14T21:48:53.0741788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1.h 2025-08-14T21:48:53.0742703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.0747018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_cpu_dispatch.h 2025-08-14T21:48:53.0751671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_cuda_dispatch.h 2025-08-14T21:48:53.0755951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_meta.h 2025-08-14T21:48:53.0760238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_meta_dispatch.h 2025-08-14T21:48:53.0764826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_native.h 2025-08-14T21:48:53.0769126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_i1_ops.h 2025-08-14T21:48:53.0773442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0.h 2025-08-14T21:48:53.0778303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.0783904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_cpu_dispatch.h 2025-08-14T21:48:53.0787081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_cuda_dispatch.h 2025-08-14T21:48:53.0791401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_meta.h 2025-08-14T21:48:53.0796857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_meta_dispatch.h 2025-08-14T21:48:53.0800508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_native.h 2025-08-14T21:48:53.0805018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k0_ops.h 2025-08-14T21:48:53.0809224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1.h 2025-08-14T21:48:53.0813585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.0818008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_cpu_dispatch.h 2025-08-14T21:48:53.0822271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_cuda_dispatch.h 2025-08-14T21:48:53.0826502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_meta.h 2025-08-14T21:48:53.0830928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_meta_dispatch.h 2025-08-14T21:48:53.0835293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_native.h 2025-08-14T21:48:53.0839452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_modified_bessel_k1_ops.h 2025-08-14T21:48:53.0844096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln.h 2025-08-14T21:48:53.0848848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.0854087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln_native.h 2025-08-14T21:48:53.0858318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_multigammaln_ops.h 2025-08-14T21:48:53.0862608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr.h 2025-08-14T21:48:53.0866904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri.h 2025-08-14T21:48:53.0872082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.0876624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_cpu_dispatch.h 2025-08-14T21:48:53.0880894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_cuda_dispatch.h 2025-08-14T21:48:53.0884989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_meta.h 2025-08-14T21:48:53.0920425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_meta_dispatch.h 2025-08-14T21:48:53.0926105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_native.h 2025-08-14T21:48:53.0928852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtri_ops.h 2025-08-14T21:48:53.0933601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.0938873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr_native.h 2025-08-14T21:48:53.0942889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_ndtr_ops.h 2025-08-14T21:48:53.0947354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma.h 2025-08-14T21:48:53.0952033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.0957632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma_native.h 2025-08-14T21:48:53.0960828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_polygamma_ops.h 2025-08-14T21:48:53.0965332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi.h 2025-08-14T21:48:53.0970392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.0973948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi_native.h 2025-08-14T21:48:53.0978229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_psi_ops.h 2025-08-14T21:48:53.0982822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round.h 2025-08-14T21:48:53.0986821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.1003356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round_native.h 2025-08-14T21:48:53.1005905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_round_ops.h 2025-08-14T21:48:53.1006605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0.h 2025-08-14T21:48:53.1007589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.1020027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_cpu_dispatch.h 2025-08-14T21:48:53.1020910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_cuda_dispatch.h 2025-08-14T21:48:53.1021745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta.h 2025-08-14T21:48:53.1036759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta_dispatch.h 2025-08-14T21:48:53.1052231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_native.h 2025-08-14T21:48:53.1053060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k0_ops.h 2025-08-14T21:48:53.1053847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1.h 2025-08-14T21:48:53.1054825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.1055863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_cpu_dispatch.h 2025-08-14T21:48:53.1058978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_cuda_dispatch.h 2025-08-14T21:48:53.1059831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta.h 2025-08-14T21:48:53.1066148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta_dispatch.h 2025-08-14T21:48:53.1068920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_native.h 2025-08-14T21:48:53.1073362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_scaled_modified_bessel_k1_ops.h 2025-08-14T21:48:53.1077542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t.h 2025-08-14T21:48:53.1082047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.1086779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.1091204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cpu_dispatch.h 2025-08-14T21:48:53.1095854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cuda_dispatch.h 2025-08-14T21:48:53.1101082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta.h 2025-08-14T21:48:53.1105422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta_dispatch.h 2025-08-14T21:48:53.1110081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_native.h 2025-08-14T21:48:53.1114339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_ops.h 2025-08-14T21:48:53.1118567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u.h 2025-08-14T21:48:53.1123211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.1127730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.1132346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cpu_dispatch.h 2025-08-14T21:48:53.1136602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cuda_dispatch.h 2025-08-14T21:48:53.1140847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta.h 2025-08-14T21:48:53.1145213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta_dispatch.h 2025-08-14T21:48:53.1149553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_native.h 2025-08-14T21:48:53.1154084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_ops.h 2025-08-14T21:48:53.1158377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v.h 2025-08-14T21:48:53.1162970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.1167369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.1171869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cpu_dispatch.h 2025-08-14T21:48:53.1176194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cuda_dispatch.h 2025-08-14T21:48:53.1182048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta.h 2025-08-14T21:48:53.1186582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta_dispatch.h 2025-08-14T21:48:53.1190907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_native.h 2025-08-14T21:48:53.1195403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_ops.h 2025-08-14T21:48:53.1199648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w.h 2025-08-14T21:48:53.1204190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.1208599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.1213087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cpu_dispatch.h 2025-08-14T21:48:53.1217506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cuda_dispatch.h 2025-08-14T21:48:53.1221713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta.h 2025-08-14T21:48:53.1226148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta_dispatch.h 2025-08-14T21:48:53.1230560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_native.h 2025-08-14T21:48:53.1235046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_ops.h 2025-08-14T21:48:53.1239189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc.h 2025-08-14T21:48:53.1243681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.1247921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc_native.h 2025-08-14T21:48:53.1252133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_sinc_ops.h 2025-08-14T21:48:53.1256760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax.h 2025-08-14T21:48:53.1261193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.1265534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax_native.h 2025-08-14T21:48:53.1269887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_softmax_ops.h 2025-08-14T21:48:53.1274996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0.h 2025-08-14T21:48:53.1279991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.1284554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_cpu_dispatch.h 2025-08-14T21:48:53.1288997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_cuda_dispatch.h 2025-08-14T21:48:53.1293190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_meta.h 2025-08-14T21:48:53.1297402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_meta_dispatch.h 2025-08-14T21:48:53.1302612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_native.h 2025-08-14T21:48:53.1308765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_spherical_bessel_j0_ops.h 2025-08-14T21:48:53.1314590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py.h 2025-08-14T21:48:53.1317694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.1322237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.1327455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_cpu_dispatch.h 2025-08-14T21:48:53.1330932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_cuda_dispatch.h 2025-08-14T21:48:53.1335510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_meta.h 2025-08-14T21:48:53.1340161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_meta_dispatch.h 2025-08-14T21:48:53.1346309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_native.h 2025-08-14T21:48:53.1348978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlog1py_ops.h 2025-08-14T21:48:53.1353294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy.h 2025-08-14T21:48:53.1358958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.1362082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy_native.h 2025-08-14T21:48:53.1366679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_xlogy_ops.h 2025-08-14T21:48:53.1371457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta.h 2025-08-14T21:48:53.1375355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.1379909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.1384194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_cpu_dispatch.h 2025-08-14T21:48:53.1390457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_cuda_dispatch.h 2025-08-14T21:48:53.1393859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_meta.h 2025-08-14T21:48:53.1398548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_meta_dispatch.h 2025-08-14T21:48:53.1403585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_native.h 2025-08-14T21:48:53.1407446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\special_zeta_ops.h 2025-08-14T21:48:53.1411775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split.h 2025-08-14T21:48:53.1416245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.1420033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.1424248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy.h 2025-08-14T21:48:53.1428865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.1435079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.1437663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_native.h 2025-08-14T21:48:53.1442045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_copy_ops.h 2025-08-14T21:48:53.1447576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_native.h 2025-08-14T21:48:53.1450324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_ops.h 2025-08-14T21:48:53.1454766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes.h 2025-08-14T21:48:53.1460485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.1463886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy.h 2025-08-14T21:48:53.1468703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.1473217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.1479203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_cuda_dispatch.h 2025-08-14T21:48:53.1481691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_native.h 2025-08-14T21:48:53.1486062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_copy_ops.h 2025-08-14T21:48:53.1510105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_native.h 2025-08-14T21:48:53.1510796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\split_with_sizes_ops.h 2025-08-14T21:48:53.1511383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt.h 2025-08-14T21:48:53.1512133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.1512917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_cpu_dispatch.h 2025-08-14T21:48:53.1513678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_cuda_dispatch.h 2025-08-14T21:48:53.1518529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_meta.h 2025-08-14T21:48:53.1523005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_meta_dispatch.h 2025-08-14T21:48:53.1527588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_native.h 2025-08-14T21:48:53.1531596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sqrt_ops.h 2025-08-14T21:48:53.1558423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square.h 2025-08-14T21:48:53.1559140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.1559850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square_native.h 2025-08-14T21:48:53.1560430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\square_ops.h 2025-08-14T21:48:53.1560988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze.h 2025-08-14T21:48:53.1561684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.1565084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.1566023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy.h 2025-08-14T21:48:53.1572543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.1575101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.1579528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_native.h 2025-08-14T21:48:53.1583749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_copy_ops.h 2025-08-14T21:48:53.1587904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_native.h 2025-08-14T21:48:53.1592224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\squeeze_ops.h 2025-08-14T21:48:53.1596243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm.h 2025-08-14T21:48:53.1600161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.1604209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_cpu_dispatch.h 2025-08-14T21:48:53.1608512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_cuda_dispatch.h 2025-08-14T21:48:53.1612809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_native.h 2025-08-14T21:48:53.1616924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sspaddmm_ops.h 2025-08-14T21:48:53.1621001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack.h 2025-08-14T21:48:53.1625119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.1629156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack_native.h 2025-08-14T21:48:53.1635212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stack_ops.h 2025-08-14T21:48:53.1637265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std.h 2025-08-14T21:48:53.1641099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.1645729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_cpu_dispatch.h 2025-08-14T21:48:53.1649278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_cuda_dispatch.h 2025-08-14T21:48:53.1653259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean.h 2025-08-14T21:48:53.1657222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.1661323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.1665178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_cpu_dispatch.h 2025-08-14T21:48:53.1669895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_cuda_dispatch.h 2025-08-14T21:48:53.1673960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_native.h 2025-08-14T21:48:53.1678123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_mean_ops.h 2025-08-14T21:48:53.1682083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_native.h 2025-08-14T21:48:53.1686026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\std_ops.h 2025-08-14T21:48:53.1689829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft.h 2025-08-14T21:48:53.1693710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.1697815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft_native.h 2025-08-14T21:48:53.1701687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stft_ops.h 2025-08-14T21:48:53.1705375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride.h 2025-08-14T21:48:53.1710046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.1714138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride_native.h 2025-08-14T21:48:53.1718121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\stride_ops.h 2025-08-14T21:48:53.1722098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub.h 2025-08-14T21:48:53.1725855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract.h 2025-08-14T21:48:53.1729783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.1734499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract_native.h 2025-08-14T21:48:53.1738497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\subtract_ops.h 2025-08-14T21:48:53.1744149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.1748382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.1752394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_cpu_dispatch.h 2025-08-14T21:48:53.1756348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_cuda_dispatch.h 2025-08-14T21:48:53.1760348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_meta.h 2025-08-14T21:48:53.1764926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_meta_dispatch.h 2025-08-14T21:48:53.1769104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_native.h 2025-08-14T21:48:53.1773111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sub_ops.h 2025-08-14T21:48:53.1776895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum.h 2025-08-14T21:48:53.1780947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.1785164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.1789354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.1793290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_cpu_dispatch.h 2025-08-14T21:48:53.1797302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_cuda_dispatch.h 2025-08-14T21:48:53.1801049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_meta.h 2025-08-14T21:48:53.1805322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_meta_dispatch.h 2025-08-14T21:48:53.1810242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_native.h 2025-08-14T21:48:53.1813621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_ops.h 2025-08-14T21:48:53.1817496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size.h 2025-08-14T21:48:53.1821842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.1825891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size_native.h 2025-08-14T21:48:53.1830145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sum_to_size_ops.h 2025-08-14T21:48:53.1834250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd.h 2025-08-14T21:48:53.1838281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.1842652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd_native.h 2025-08-14T21:48:53.1846584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\svd_ops.h 2025-08-14T21:48:53.1850600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes.h 2025-08-14T21:48:53.1855304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.1858809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes_native.h 2025-08-14T21:48:53.1863443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapaxes_ops.h 2025-08-14T21:48:53.1867924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims.h 2025-08-14T21:48:53.1872056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.1876423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims_native.h 2025-08-14T21:48:53.1880568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\swapdims_ops.h 2025-08-14T21:48:53.1886033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range.h 2025-08-14T21:48:53.1890209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.1894502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size.h 2025-08-14T21:48:53.1899052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.1903514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size_native.h 2025-08-14T21:48:53.1907877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_for_size_ops.h 2025-08-14T21:48:53.1912240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_native.h 2025-08-14T21:48:53.1916455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_constrain_range_ops.h 2025-08-14T21:48:53.1920684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel.h 2025-08-14T21:48:53.1925130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.1929529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel_native.h 2025-08-14T21:48:53.1933757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_numel_ops.h 2025-08-14T21:48:53.1938047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size.h 2025-08-14T21:48:53.1942093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.1946199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size_native.h 2025-08-14T21:48:53.1950429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_size_ops.h 2025-08-14T21:48:53.1954579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset.h 2025-08-14T21:48:53.1958957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.1963464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset_native.h 2025-08-14T21:48:53.1967596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_storage_offset_ops.h 2025-08-14T21:48:53.1971905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride.h 2025-08-14T21:48:53.1976668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.1980781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride_native.h 2025-08-14T21:48:53.1985012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\sym_stride_ops.h 2025-08-14T21:48:53.1989575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t.h 2025-08-14T21:48:53.1993260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take.h 2025-08-14T21:48:53.1997486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim.h 2025-08-14T21:48:53.2002032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.2006410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim_native.h 2025-08-14T21:48:53.2010752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_along_dim_ops.h 2025-08-14T21:48:53.2015409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_cpu_dispatch.h 2025-08-14T21:48:53.2019813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_cuda_dispatch.h 2025-08-14T21:48:53.2024515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_native.h 2025-08-14T21:48:53.2029241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\take_ops.h 2025-08-14T21:48:53.2033372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan.h 2025-08-14T21:48:53.2037108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh.h 2025-08-14T21:48:53.2073400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward.h 2025-08-14T21:48:53.2077465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.2081469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_cpu_dispatch.h 2025-08-14T21:48:53.2085635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_cuda_dispatch.h 2025-08-14T21:48:53.2089902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_meta.h 2025-08-14T21:48:53.2094070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_meta_dispatch.h 2025-08-14T21:48:53.2098192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_native.h 2025-08-14T21:48:53.2102534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_backward_ops.h 2025-08-14T21:48:53.2106819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.2110967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_cpu_dispatch.h 2025-08-14T21:48:53.2114938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_cuda_dispatch.h 2025-08-14T21:48:53.2119144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_meta.h 2025-08-14T21:48:53.2123127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_meta_dispatch.h 2025-08-14T21:48:53.2127155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_native.h 2025-08-14T21:48:53.2131598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tanh_ops.h 2025-08-14T21:48:53.2135805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.2140194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_cpu_dispatch.h 2025-08-14T21:48:53.2144176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_cuda_dispatch.h 2025-08-14T21:48:53.2148163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_meta.h 2025-08-14T21:48:53.2152077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_meta_dispatch.h 2025-08-14T21:48:53.2155979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_native.h 2025-08-14T21:48:53.2159835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tan_ops.h 2025-08-14T21:48:53.2163847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor.h 2025-08-14T21:48:53.2167757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot.h 2025-08-14T21:48:53.2171871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.2175782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot_native.h 2025-08-14T21:48:53.2179765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensordot_ops.h 2025-08-14T21:48:53.2183974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split.h 2025-08-14T21:48:53.2188476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.2192615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split_native.h 2025-08-14T21:48:53.2196605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tensor_split_ops.h 2025-08-14T21:48:53.2200627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d.h 2025-08-14T21:48:53.2204725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.2208744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d_native.h 2025-08-14T21:48:53.2213037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\thnn_conv2d_ops.h 2025-08-14T21:48:53.2217271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold.h 2025-08-14T21:48:53.2221412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward.h 2025-08-14T21:48:53.2225640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.2229706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_cpu_dispatch.h 2025-08-14T21:48:53.2234495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_cuda_dispatch.h 2025-08-14T21:48:53.2238847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_meta.h 2025-08-14T21:48:53.2243236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_meta_dispatch.h 2025-08-14T21:48:53.2247783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_native.h 2025-08-14T21:48:53.2251951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_backward_ops.h 2025-08-14T21:48:53.2285798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.2290147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_cpu_dispatch.h 2025-08-14T21:48:53.2294253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_cuda_dispatch.h 2025-08-14T21:48:53.2299620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_meta.h 2025-08-14T21:48:53.2302837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_meta_dispatch.h 2025-08-14T21:48:53.2307021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_native.h 2025-08-14T21:48:53.2312308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\threshold_ops.h 2025-08-14T21:48:53.2315413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile.h 2025-08-14T21:48:53.2319576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.2324720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile_native.h 2025-08-14T21:48:53.2328303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tile_ops.h 2025-08-14T21:48:53.2332341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to.h 2025-08-14T21:48:53.2337345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk.h 2025-08-14T21:48:53.2340401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.2344646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_cpu_dispatch.h 2025-08-14T21:48:53.2350043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_cuda_dispatch.h 2025-08-14T21:48:53.2352799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_meta.h 2025-08-14T21:48:53.2356894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_meta_dispatch.h 2025-08-14T21:48:53.2362585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_native.h 2025-08-14T21:48:53.2364822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\topk_ops.h 2025-08-14T21:48:53.2369086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.2374025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense.h 2025-08-14T21:48:53.2376895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward.h 2025-08-14T21:48:53.2381697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.2385687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward_native.h 2025-08-14T21:48:53.2389799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_backward_ops.h 2025-08-14T21:48:53.2394613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.2399354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_native.h 2025-08-14T21:48:53.2403258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_dense_ops.h 2025-08-14T21:48:53.2407355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn.h 2025-08-14T21:48:53.2411267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward.h 2025-08-14T21:48:53.2415560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.2419733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward_native.h 2025-08-14T21:48:53.2423693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_backward_ops.h 2025-08-14T21:48:53.2428299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.2432381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_cpu_dispatch.h 2025-08-14T21:48:53.2437022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_native.h 2025-08-14T21:48:53.2440990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_mkldnn_ops.h 2025-08-14T21:48:53.2445011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_native.h 2025-08-14T21:48:53.2448947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_ops.h 2025-08-14T21:48:53.2452679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor.h 2025-08-14T21:48:53.2456829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.2461003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor_native.h 2025-08-14T21:48:53.2465205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_padded_tensor_ops.h 2025-08-14T21:48:53.2469357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse.h 2025-08-14T21:48:53.2473593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc.h 2025-08-14T21:48:53.2479033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.2482266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc_native.h 2025-08-14T21:48:53.2486713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsc_ops.h 2025-08-14T21:48:53.2491250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr.h 2025-08-14T21:48:53.2495125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.2499633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr_native.h 2025-08-14T21:48:53.2507461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_bsr_ops.h 2025-08-14T21:48:53.2508962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.2556725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc.h 2025-08-14T21:48:53.2557133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.2557397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc_native.h 2025-08-14T21:48:53.2557649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csc_ops.h 2025-08-14T21:48:53.2557895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr.h 2025-08-14T21:48:53.2558271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.2558525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr_native.h 2025-08-14T21:48:53.2558782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_csr_ops.h 2025-08-14T21:48:53.2559033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_native.h 2025-08-14T21:48:53.2559262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\to_sparse_ops.h 2025-08-14T21:48:53.2559478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace.h 2025-08-14T21:48:53.2563677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward.h 2025-08-14T21:48:53.2567491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.2571792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward_native.h 2025-08-14T21:48:53.2577654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_backward_ops.h 2025-08-14T21:48:53.2580283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.2584585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_cpu_dispatch.h 2025-08-14T21:48:53.2589751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_cuda_dispatch.h 2025-08-14T21:48:53.2593364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_native.h 2025-08-14T21:48:53.2597385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trace_ops.h 2025-08-14T21:48:53.2601325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose.h 2025-08-14T21:48:53.2606862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.2609964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.2613998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy.h 2025-08-14T21:48:53.2618454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.2623351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.2627383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_native.h 2025-08-14T21:48:53.2633723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_copy_ops.h 2025-08-14T21:48:53.2635840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_native.h 2025-08-14T21:48:53.2639996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\transpose_ops.h 2025-08-14T21:48:53.2644009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid.h 2025-08-14T21:48:53.2648230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.2652233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid_native.h 2025-08-14T21:48:53.2656319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapezoid_ops.h 2025-08-14T21:48:53.2660269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz.h 2025-08-14T21:48:53.2664316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.2668441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz_native.h 2025-08-14T21:48:53.2672480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trapz_ops.h 2025-08-14T21:48:53.2677559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve.h 2025-08-14T21:48:53.2681906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.2685896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_cpu_dispatch.h 2025-08-14T21:48:53.2690010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_cuda_dispatch.h 2025-08-14T21:48:53.2694129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_meta.h 2025-08-14T21:48:53.2698466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_meta_dispatch.h 2025-08-14T21:48:53.2702709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_native.h 2025-08-14T21:48:53.2707464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triangular_solve_ops.h 2025-08-14T21:48:53.2711564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril.h 2025-08-14T21:48:53.2715603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.2719407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_cpu_dispatch.h 2025-08-14T21:48:53.2723360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_cuda_dispatch.h 2025-08-14T21:48:53.2727512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices.h 2025-08-14T21:48:53.2731700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.2736018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_cpu_dispatch.h 2025-08-14T21:48:53.2740098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_cuda_dispatch.h 2025-08-14T21:48:53.2745464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_native.h 2025-08-14T21:48:53.2749503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_indices_ops.h 2025-08-14T21:48:53.2753846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_meta.h 2025-08-14T21:48:53.2757727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_meta_dispatch.h 2025-08-14T21:48:53.2761952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_native.h 2025-08-14T21:48:53.2765826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\tril_ops.h 2025-08-14T21:48:53.2769681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss.h 2025-08-14T21:48:53.2773830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.2777797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss_native.h 2025-08-14T21:48:53.2781910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triplet_margin_loss_ops.h 2025-08-14T21:48:53.2786027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu.h 2025-08-14T21:48:53.2790411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.2794289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_cpu_dispatch.h 2025-08-14T21:48:53.2798207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_cuda_dispatch.h 2025-08-14T21:48:53.2802168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices.h 2025-08-14T21:48:53.2807117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.2812055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_cpu_dispatch.h 2025-08-14T21:48:53.2815461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_cuda_dispatch.h 2025-08-14T21:48:53.2820071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_native.h 2025-08-14T21:48:53.2824576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_indices_ops.h 2025-08-14T21:48:53.2829603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_meta.h 2025-08-14T21:48:53.2833852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_meta_dispatch.h 2025-08-14T21:48:53.2838029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_native.h 2025-08-14T21:48:53.2843696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\triu_ops.h 2025-08-14T21:48:53.2845920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide.h 2025-08-14T21:48:53.2850304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.2856323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide_native.h 2025-08-14T21:48:53.2859350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\true_divide_ops.h 2025-08-14T21:48:53.2863737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc.h 2025-08-14T21:48:53.2868801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.2871979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_cpu_dispatch.h 2025-08-14T21:48:53.2876140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_cuda_dispatch.h 2025-08-14T21:48:53.2945663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_meta.h 2025-08-14T21:48:53.2945950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_meta_dispatch.h 2025-08-14T21:48:53.2946184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_native.h 2025-08-14T21:48:53.2946401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\trunc_ops.h 2025-08-14T21:48:53.2946635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as.h 2025-08-14T21:48:53.2947151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.2947393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as_native.h 2025-08-14T21:48:53.2947708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\type_as_ops.h 2025-08-14T21:48:53.2948050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.2948276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy.h 2025-08-14T21:48:53.2948710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.2949067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.2949305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_native.h 2025-08-14T21:48:53.2949550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_copy_ops.h 2025-08-14T21:48:53.2949872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_native.h 2025-08-14T21:48:53.2952492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\t_ops.h 2025-08-14T21:48:53.2955969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind.h 2025-08-14T21:48:53.2960270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.2966331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.2968579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy.h 2025-08-14T21:48:53.2972802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.2978359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.2981900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_native.h 2025-08-14T21:48:53.2986181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_copy_ops.h 2025-08-14T21:48:53.2990301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_native.h 2025-08-14T21:48:53.2995153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unbind_ops.h 2025-08-14T21:48:53.2998582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten.h 2025-08-14T21:48:53.3002964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.3007141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors.h 2025-08-14T21:48:53.3011346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.3015552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors_native.h 2025-08-14T21:48:53.3022286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_dense_tensors_ops.h 2025-08-14T21:48:53.3023917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_native.h 2025-08-14T21:48:53.3027968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unflatten_ops.h 2025-08-14T21:48:53.3032036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold.h 2025-08-14T21:48:53.3035808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward.h 2025-08-14T21:48:53.3040446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.3044648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_cpu_dispatch.h 2025-08-14T21:48:53.3048902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_cuda_dispatch.h 2025-08-14T21:48:53.3052967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_native.h 2025-08-14T21:48:53.3056890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_backward_ops.h 2025-08-14T21:48:53.3060916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy.h 2025-08-14T21:48:53.3065165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.3069568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.3075615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_native.h 2025-08-14T21:48:53.3078441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_copy_ops.h 2025-08-14T21:48:53.3082472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_cpu_dispatch.h 2025-08-14T21:48:53.3086590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_cuda_dispatch.h 2025-08-14T21:48:53.3090658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_meta_dispatch.h 2025-08-14T21:48:53.3095243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_native.h 2025-08-14T21:48:53.3099333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unfold_ops.h 2025-08-14T21:48:53.3103635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform.h 2025-08-14T21:48:53.3107581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.3111461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_cpu_dispatch.h 2025-08-14T21:48:53.3115297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_cuda_dispatch.h 2025-08-14T21:48:53.3119173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_meta_dispatch.h 2025-08-14T21:48:53.3123133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_native.h 2025-08-14T21:48:53.3127479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\uniform_ops.h 2025-08-14T21:48:53.3131346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive.h 2025-08-14T21:48:53.3135448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.3139938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_cpu_dispatch.h 2025-08-14T21:48:53.3144003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_cuda_dispatch.h 2025-08-14T21:48:53.3148557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_native.h 2025-08-14T21:48:53.3152971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_consecutive_ops.h 2025-08-14T21:48:53.3157109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim.h 2025-08-14T21:48:53.3161487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.3165455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive.h 2025-08-14T21:48:53.3169796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.3173928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_cpu_dispatch.h 2025-08-14T21:48:53.3178013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_cuda_dispatch.h 2025-08-14T21:48:53.3182309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_native.h 2025-08-14T21:48:53.3186549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_consecutive_ops.h 2025-08-14T21:48:53.3220654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_cpu_dispatch.h 2025-08-14T21:48:53.3224895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_cuda_dispatch.h 2025-08-14T21:48:53.3229008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_native.h 2025-08-14T21:48:53.3233080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unique_dim_ops.h 2025-08-14T21:48:53.3238330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk.h 2025-08-14T21:48:53.3242540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.3246679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk_native.h 2025-08-14T21:48:53.3250723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_chunk_ops.h 2025-08-14T21:48:53.3254857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split.h 2025-08-14T21:48:53.3258989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.3262950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_native.h 2025-08-14T21:48:53.3267042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_ops.h 2025-08-14T21:48:53.3271283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes.h 2025-08-14T21:48:53.3275735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.3279782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes_native.h 2025-08-14T21:48:53.3283931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsafe_split_with_sizes_ops.h 2025-08-14T21:48:53.3288255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze.h 2025-08-14T21:48:53.3292336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.3296234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy.h 2025-08-14T21:48:53.3300613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.3304876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.3309026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_native.h 2025-08-14T21:48:53.3314065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_copy_ops.h 2025-08-14T21:48:53.3318055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_native.h 2025-08-14T21:48:53.3322155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\unsqueeze_ops.h 2025-08-14T21:48:53.3326729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d.h 2025-08-14T21:48:53.3331038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward.h 2025-08-14T21:48:53.3335216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.3339356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_cpu_dispatch.h 2025-08-14T21:48:53.3343927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_cuda_dispatch.h 2025-08-14T21:48:53.3348086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_meta.h 2025-08-14T21:48:53.3352462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_meta_dispatch.h 2025-08-14T21:48:53.3356717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_native.h 2025-08-14T21:48:53.3370178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_backward_ops.h 2025-08-14T21:48:53.3370698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.3372153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.3376430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_cpu_dispatch.h 2025-08-14T21:48:53.3380602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_cuda_dispatch.h 2025-08-14T21:48:53.3384735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_meta.h 2025-08-14T21:48:53.3389002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_meta_dispatch.h 2025-08-14T21:48:53.3393263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_native.h 2025-08-14T21:48:53.3397405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bicubic2d_ops.h 2025-08-14T21:48:53.3401554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d.h 2025-08-14T21:48:53.3406127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward.h 2025-08-14T21:48:53.3410992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.3416142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_cpu_dispatch.h 2025-08-14T21:48:53.3419869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_cuda_dispatch.h 2025-08-14T21:48:53.3423994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_meta.h 2025-08-14T21:48:53.3428525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_meta_dispatch.h 2025-08-14T21:48:53.3432727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_native.h 2025-08-14T21:48:53.3436851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_backward_ops.h 2025-08-14T21:48:53.3441297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.3446113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.3450434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.3454767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_cpu_dispatch.h 2025-08-14T21:48:53.3459103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_cuda_dispatch.h 2025-08-14T21:48:53.3463250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_meta.h 2025-08-14T21:48:53.3467494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_meta_dispatch.h 2025-08-14T21:48:53.3471722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_native.h 2025-08-14T21:48:53.3475858Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_bilinear2d_ops.h 2025-08-14T21:48:53.3480173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d.h 2025-08-14T21:48:53.3484281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward.h 2025-08-14T21:48:53.3488647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.3492931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_cpu_dispatch.h 2025-08-14T21:48:53.3497428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_cuda_dispatch.h 2025-08-14T21:48:53.3501689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_meta.h 2025-08-14T21:48:53.3506050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_meta_dispatch.h 2025-08-14T21:48:53.3510324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_native.h 2025-08-14T21:48:53.3514600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_backward_ops.h 2025-08-14T21:48:53.3533358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.3543698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.3551463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_cpu_dispatch.h 2025-08-14T21:48:53.3559746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_cuda_dispatch.h 2025-08-14T21:48:53.3566180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_meta.h 2025-08-14T21:48:53.3573812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_meta_dispatch.h 2025-08-14T21:48:53.3580808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_native.h 2025-08-14T21:48:53.3587791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_linear1d_ops.h 2025-08-14T21:48:53.3590693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d.h 2025-08-14T21:48:53.3591002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward.h 2025-08-14T21:48:53.3591555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.3591909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_cpu_dispatch.h 2025-08-14T21:48:53.3592253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_cuda_dispatch.h 2025-08-14T21:48:53.3592567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_meta.h 2025-08-14T21:48:53.3592924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_meta_dispatch.h 2025-08-14T21:48:53.3593254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_native.h 2025-08-14T21:48:53.3598022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_backward_ops.h 2025-08-14T21:48:53.3601669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.3606325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.3611826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_cpu_dispatch.h 2025-08-14T21:48:53.3615303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_cuda_dispatch.h 2025-08-14T21:48:53.3619473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_meta.h 2025-08-14T21:48:53.3624026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_meta_dispatch.h 2025-08-14T21:48:53.3628618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_native.h 2025-08-14T21:48:53.3632887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest1d_ops.h 2025-08-14T21:48:53.3637458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d.h 2025-08-14T21:48:53.3642064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward.h 2025-08-14T21:48:53.3646450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.3651196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_cpu_dispatch.h 2025-08-14T21:48:53.3655894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_cuda_dispatch.h 2025-08-14T21:48:53.3660682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_meta.h 2025-08-14T21:48:53.3666100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_meta_dispatch.h 2025-08-14T21:48:53.3670505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_native.h 2025-08-14T21:48:53.3674686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_backward_ops.h 2025-08-14T21:48:53.3679132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.3683336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.3687774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.3692073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_cpu_dispatch.h 2025-08-14T21:48:53.3696226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_cuda_dispatch.h 2025-08-14T21:48:53.3700297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_meta.h 2025-08-14T21:48:53.3704427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_meta_dispatch.h 2025-08-14T21:48:53.3708587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_native.h 2025-08-14T21:48:53.3713756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest2d_ops.h 2025-08-14T21:48:53.3717972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d.h 2025-08-14T21:48:53.3722205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward.h 2025-08-14T21:48:53.3726654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.3730815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_cpu_dispatch.h 2025-08-14T21:48:53.3735037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_cuda_dispatch.h 2025-08-14T21:48:53.3739424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_meta.h 2025-08-14T21:48:53.3743767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_meta_dispatch.h 2025-08-14T21:48:53.3748428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_native.h 2025-08-14T21:48:53.3752558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_backward_ops.h 2025-08-14T21:48:53.3757569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.3762019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.3766119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_cpu_dispatch.h 2025-08-14T21:48:53.3770385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_cuda_dispatch.h 2025-08-14T21:48:53.3774684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_meta.h 2025-08-14T21:48:53.3778716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_meta_dispatch.h 2025-08-14T21:48:53.3782857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_native.h 2025-08-14T21:48:53.3787227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_nearest3d_ops.h 2025-08-14T21:48:53.3792554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d.h 2025-08-14T21:48:53.3796922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward.h 2025-08-14T21:48:53.3801461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.3805722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_cpu_dispatch.h 2025-08-14T21:48:53.3809978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_cuda_dispatch.h 2025-08-14T21:48:53.3814330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_meta.h 2025-08-14T21:48:53.3818663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_meta_dispatch.h 2025-08-14T21:48:53.3822954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_native.h 2025-08-14T21:48:53.3827436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_backward_ops.h 2025-08-14T21:48:53.3832758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.3837510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.3841695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_cpu_dispatch.h 2025-08-14T21:48:53.3846150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_cuda_dispatch.h 2025-08-14T21:48:53.3850573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_meta.h 2025-08-14T21:48:53.3855324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_meta_dispatch.h 2025-08-14T21:48:53.3859917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_native.h 2025-08-14T21:48:53.3864479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\upsample_trilinear3d_ops.h 2025-08-14T21:48:53.3868843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values.h 2025-08-14T21:48:53.3872816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.3876922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy.h 2025-08-14T21:48:53.3881247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.3885664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.3890050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_native.h 2025-08-14T21:48:53.3894552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_copy_ops.h 2025-08-14T21:48:53.3899567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_native.h 2025-08-14T21:48:53.3903156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\values_ops.h 2025-08-14T21:48:53.3907646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward.h 2025-08-14T21:48:53.3913723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.3916474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward_native.h 2025-08-14T21:48:53.3920641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\value_selecting_reduction_backward_ops.h 2025-08-14T21:48:53.3926032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander.h 2025-08-14T21:48:53.3928750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.3932854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander_native.h 2025-08-14T21:48:53.3938676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vander_ops.h 2025-08-14T21:48:53.3941319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var.h 2025-08-14T21:48:53.3945502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.3951323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_cpu_dispatch.h 2025-08-14T21:48:53.3953639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_cuda_dispatch.h 2025-08-14T21:48:53.3957848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean.h 2025-08-14T21:48:53.3963601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.3966488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.3970776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_cpu_dispatch.h 2025-08-14T21:48:53.3976446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_cuda_dispatch.h 2025-08-14T21:48:53.3979733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_native.h 2025-08-14T21:48:53.3983895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_mean_ops.h 2025-08-14T21:48:53.3989005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_native.h 2025-08-14T21:48:53.3992436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\var_ops.h 2025-08-14T21:48:53.3996331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot.h 2025-08-14T21:48:53.4001737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.4005122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_cpu_dispatch.h 2025-08-14T21:48:53.4010235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_cuda_dispatch.h 2025-08-14T21:48:53.4014844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_native.h 2025-08-14T21:48:53.4019776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vdot_ops.h 2025-08-14T21:48:53.4024149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view.h 2025-08-14T21:48:53.4028392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as.h 2025-08-14T21:48:53.4033088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex.h 2025-08-14T21:48:53.4037072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy.h 2025-08-14T21:48:53.4041782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.4063131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.4063434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_native.h 2025-08-14T21:48:53.4063717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_copy_ops.h 2025-08-14T21:48:53.4064013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_cpu_dispatch.h 2025-08-14T21:48:53.4064450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_cuda_dispatch.h 2025-08-14T21:48:53.4070101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_meta_dispatch.h 2025-08-14T21:48:53.4073611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_native.h 2025-08-14T21:48:53.4078021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_complex_ops.h 2025-08-14T21:48:53.4083929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.4087070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_native.h 2025-08-14T21:48:53.4091611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_ops.h 2025-08-14T21:48:53.4095994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real.h 2025-08-14T21:48:53.4100106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy.h 2025-08-14T21:48:53.4104513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.4109241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.4113459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_native.h 2025-08-14T21:48:53.4117607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_copy_ops.h 2025-08-14T21:48:53.4121742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_cpu_dispatch.h 2025-08-14T21:48:53.4125831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_cuda_dispatch.h 2025-08-14T21:48:53.4129912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_meta_dispatch.h 2025-08-14T21:48:53.4134303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_native.h 2025-08-14T21:48:53.4139674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_as_real_ops.h 2025-08-14T21:48:53.4142817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.4146669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy.h 2025-08-14T21:48:53.4151044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.4155208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.4159467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_native.h 2025-08-14T21:48:53.4163558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_copy_ops.h 2025-08-14T21:48:53.4168012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_cpu_dispatch.h 2025-08-14T21:48:53.4172156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_cuda_dispatch.h 2025-08-14T21:48:53.4176429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_meta_dispatch.h 2025-08-14T21:48:53.4180476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_native.h 2025-08-14T21:48:53.4184343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\view_ops.h 2025-08-14T21:48:53.4188146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit.h 2025-08-14T21:48:53.4193049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.4196538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit_native.h 2025-08-14T21:48:53.4200417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vsplit_ops.h 2025-08-14T21:48:53.4205045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack.h 2025-08-14T21:48:53.4208935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.4213457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack_native.h 2025-08-14T21:48:53.4216822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\vstack_ops.h 2025-08-14T21:48:53.4221089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where.h 2025-08-14T21:48:53.4225184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.4229154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_cpu_dispatch.h 2025-08-14T21:48:53.4233144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_cuda_dispatch.h 2025-08-14T21:48:53.4237058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_native.h 2025-08-14T21:48:53.4240931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\where_ops.h 2025-08-14T21:48:53.4244822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy.h 2025-08-14T21:48:53.4248814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.4252798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.4257010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_cpu_dispatch.h 2025-08-14T21:48:53.4261132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_cuda_dispatch.h 2025-08-14T21:48:53.4265117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_meta.h 2025-08-14T21:48:53.4269202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_meta_dispatch.h 2025-08-14T21:48:53.4273678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_native.h 2025-08-14T21:48:53.4277605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xlogy_ops.h 2025-08-14T21:48:53.4281798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor.h 2025-08-14T21:48:53.4285835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.4289874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor_native.h 2025-08-14T21:48:53.4294313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\xor_ops.h 2025-08-14T21:48:53.4297722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero.h 2025-08-14T21:48:53.4301341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros.h 2025-08-14T21:48:53.4305103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.4308958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like.h 2025-08-14T21:48:53.4313077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.4317365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_compositeimplicitautogradnestedtensor_dispatch.h 2025-08-14T21:48:53.4321967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_native.h 2025-08-14T21:48:53.4325979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_like_ops.h 2025-08-14T21:48:53.4360567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_native.h 2025-08-14T21:48:53.4364358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zeros_ops.h 2025-08-14T21:48:53.4368580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.4373186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_cpu_dispatch.h 2025-08-14T21:48:53.4377327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_cuda_dispatch.h 2025-08-14T21:48:53.4381320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_meta_dispatch.h 2025-08-14T21:48:53.4385333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_native.h 2025-08-14T21:48:53.4389173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\zero_ops.h 2025-08-14T21:48:53.4392942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d.h 2025-08-14T21:48:53.4397717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward.h 2025-08-14T21:48:53.4402196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.4406436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cpu_dispatch.h 2025-08-14T21:48:53.4410779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cuda_dispatch.h 2025-08-14T21:48:53.4415080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_native.h 2025-08-14T21:48:53.4419350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_backward_ops.h 2025-08-14T21:48:53.4423653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.4428143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_cpu_dispatch.h 2025-08-14T21:48:53.4432679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_cuda_dispatch.h 2025-08-14T21:48:53.4436796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_native.h 2025-08-14T21:48:53.4441216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool2d_ops.h 2025-08-14T21:48:53.4445526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d.h 2025-08-14T21:48:53.4449709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward.h 2025-08-14T21:48:53.4454204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.4459359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cpu_dispatch.h 2025-08-14T21:48:53.4463876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cuda_dispatch.h 2025-08-14T21:48:53.4468108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_native.h 2025-08-14T21:48:53.4491025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_backward_ops.h 2025-08-14T21:48:53.4491493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.4491819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_cpu_dispatch.h 2025-08-14T21:48:53.4492151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_cuda_dispatch.h 2025-08-14T21:48:53.4492458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_native.h 2025-08-14T21:48:53.4494669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_adaptive_avg_pool3d_ops.h 2025-08-14T21:48:53.4499538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation.h 2025-08-14T21:48:53.4504116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.4508499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_cpu_dispatch.h 2025-08-14T21:48:53.4512818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_cuda_dispatch.h 2025-08-14T21:48:53.4564849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_meta.h 2025-08-14T21:48:53.4565176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_meta_dispatch.h 2025-08-14T21:48:53.4565617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_native.h 2025-08-14T21:48:53.4565900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_addmm_activation_ops.h 2025-08-14T21:48:53.4566137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim.h 2025-08-14T21:48:53.4566542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.4566818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim_native.h 2025-08-14T21:48:53.4567066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_batch_dim_ops.h 2025-08-14T21:48:53.4567293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu.h 2025-08-14T21:48:53.4567673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.4567947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_cpu_dispatch.h 2025-08-14T21:48:53.4568225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_meta_dispatch.h 2025-08-14T21:48:53.4572744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_native.h 2025-08-14T21:48:53.4578701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_add_relu_ops.h 2025-08-14T21:48:53.4581166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax.h 2025-08-14T21:48:53.4585765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.4589539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_cpu_dispatch.h 2025-08-14T21:48:53.4593486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_cuda_dispatch.h 2025-08-14T21:48:53.4598011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_native.h 2025-08-14T21:48:53.4602362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_aminmax_ops.h 2025-08-14T21:48:53.4606871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale.h 2025-08-14T21:48:53.4611018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.4615525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h 2025-08-14T21:48:53.4620063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h 2025-08-14T21:48:53.4624605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_native.h 2025-08-14T21:48:53.4628981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale_ops.h 2025-08-14T21:48:53.4633092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale.h 2025-08-14T21:48:53.4637237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.4641639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_cpu_dispatch.h 2025-08-14T21:48:53.4645804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_cuda_dispatch.h 2025-08-14T21:48:53.4649960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_meta_dispatch.h 2025-08-14T21:48:53.4654445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_native.h 2025-08-14T21:48:53.4659125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_amp_update_scale_ops.h 2025-08-14T21:48:53.4663657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async.h 2025-08-14T21:48:53.4668038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_cpu_dispatch.h 2025-08-14T21:48:53.4671953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_cuda_dispatch.h 2025-08-14T21:48:53.4676194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_native.h 2025-08-14T21:48:53.4680908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_async_ops.h 2025-08-14T21:48:53.4684948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar.h 2025-08-14T21:48:53.4689187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.4693664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar_native.h 2025-08-14T21:48:53.4697753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_scalar_ops.h 2025-08-14T21:48:53.4701978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata.h 2025-08-14T21:48:53.4706906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.4711214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_meta_dispatch.h 2025-08-14T21:48:53.4715331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_native.h 2025-08-14T21:48:53.4719519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_assert_tensor_metadata_ops.h 2025-08-14T21:48:53.4723600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision.h 2025-08-14T21:48:53.4727776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.4732018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision_native.h 2025-08-14T21:48:53.4736107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_full_precision_ops.h 2025-08-14T21:48:53.4740251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision.h 2025-08-14T21:48:53.4744643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.4748892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision_native.h 2025-08-14T21:48:53.4753268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_autocast_to_reduced_precision_ops.h 2025-08-14T21:48:53.4757516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward.h 2025-08-14T21:48:53.4761818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.4765783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward_native.h 2025-08-14T21:48:53.4769769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_backward_ops.h 2025-08-14T21:48:53.4773812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index.h 2025-08-14T21:48:53.4777863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward.h 2025-08-14T21:48:53.4783033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.4787125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward_native.h 2025-08-14T21:48:53.4791302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_backward_ops.h 2025-08-14T21:48:53.4824912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.4829090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_native.h 2025-08-14T21:48:53.4833543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_impl_index_ops.h 2025-08-14T21:48:53.4837487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update.h 2025-08-14T21:48:53.4841832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.4846196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update_native.h 2025-08-14T21:48:53.4850268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_no_update_ops.h 2025-08-14T21:48:53.4854422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update.h 2025-08-14T21:48:53.4858890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.4863222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_cpu_dispatch.h 2025-08-14T21:48:53.4867608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_cuda_dispatch.h 2025-08-14T21:48:53.4871731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_native.h 2025-08-14T21:48:53.4875820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_batch_norm_with_update_ops.h 2025-08-14T21:48:53.4879819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte.h 2025-08-14T21:48:53.4883860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.4887981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte_native.h 2025-08-14T21:48:53.4891969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Byte_ops.h 2025-08-14T21:48:53.4896142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char.h 2025-08-14T21:48:53.4900537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.4904744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char_native.h 2025-08-14T21:48:53.4909013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Char_ops.h 2025-08-14T21:48:53.4913015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double.h 2025-08-14T21:48:53.4917930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.4922017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double_native.h 2025-08-14T21:48:53.4926285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Double_ops.h 2025-08-14T21:48:53.4930364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float.h 2025-08-14T21:48:53.4934809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.4939445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float_native.h 2025-08-14T21:48:53.4943088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Float_ops.h 2025-08-14T21:48:53.4947566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half.h 2025-08-14T21:48:53.4952513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.4958114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half_native.h 2025-08-14T21:48:53.4960722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Half_ops.h 2025-08-14T21:48:53.4965079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int.h 2025-08-14T21:48:53.4970945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.4973451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int_native.h 2025-08-14T21:48:53.4978491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Int_ops.h 2025-08-14T21:48:53.4982318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long.h 2025-08-14T21:48:53.4986647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.4991256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long_native.h 2025-08-14T21:48:53.4995784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Long_ops.h 2025-08-14T21:48:53.4999391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short.h 2025-08-14T21:48:53.5003620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.5007963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short_native.h 2025-08-14T21:48:53.5011966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cast_Short_ops.h 2025-08-14T21:48:53.5074406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward.h 2025-08-14T21:48:53.5075192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.5076011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_cpu_dispatch.h 2025-08-14T21:48:53.5076736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_cuda_dispatch.h 2025-08-14T21:48:53.5077432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_native.h 2025-08-14T21:48:53.5078083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_backward_ops.h 2025-08-14T21:48:53.5081278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward.h 2025-08-14T21:48:53.5082012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.5082823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_cpu_dispatch.h 2025-08-14T21:48:53.5083537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_cuda_dispatch.h 2025-08-14T21:48:53.5084206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_native.h 2025-08-14T21:48:53.5084851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cdist_forward_ops.h 2025-08-14T21:48:53.5088029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper.h 2025-08-14T21:48:53.5088861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.5089733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_cpu_dispatch.h 2025-08-14T21:48:53.5090499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_cuda_dispatch.h 2025-08-14T21:48:53.5091254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_native.h 2025-08-14T21:48:53.5095295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cholesky_solve_helper_ops.h 2025-08-14T21:48:53.5098427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor.h 2025-08-14T21:48:53.5102616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.5107257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor_native.h 2025-08-14T21:48:53.5111113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_choose_qparams_per_tensor_ops.h 2025-08-14T21:48:53.5115150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat.h 2025-08-14T21:48:53.5119372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.5124302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_cuda_dispatch.h 2025-08-14T21:48:53.5128596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_native.h 2025-08-14T21:48:53.5132582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_chunk_cat_ops.h 2025-08-14T21:48:53.5136796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce.h 2025-08-14T21:48:53.5140732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced.h 2025-08-14T21:48:53.5144857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.5151282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_meta_dispatch.h 2025-08-14T21:48:53.5153959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_native.h 2025-08-14T21:48:53.5158242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesced_ops.h 2025-08-14T21:48:53.5162511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.5166558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce_native.h 2025-08-14T21:48:53.5171756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_coalesce_ops.h 2025-08-14T21:48:53.5174991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination.h 2025-08-14T21:48:53.5179286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_cpu_dispatch.h 2025-08-14T21:48:53.5183589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_cuda_dispatch.h 2025-08-14T21:48:53.5187768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_native.h 2025-08-14T21:48:53.5191880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_compute_linear_combination_ops.h 2025-08-14T21:48:53.5195933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj.h 2025-08-14T21:48:53.5199790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.5203791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy.h 2025-08-14T21:48:53.5208099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.5212362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.5216524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_native.h 2025-08-14T21:48:53.5220533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_copy_ops.h 2025-08-14T21:48:53.5224537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_native.h 2025-08-14T21:48:53.5228646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_ops.h 2025-08-14T21:48:53.5232777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical.h 2025-08-14T21:48:53.5237026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.5241287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical_native.h 2025-08-14T21:48:53.5245691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conj_physical_ops.h 2025-08-14T21:48:53.5249928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr.h 2025-08-14T21:48:53.5254283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.5259370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cpu_dispatch.h 2025-08-14T21:48:53.5263655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_cuda_dispatch.h 2025-08-14T21:48:53.5267696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta.h 2025-08-14T21:48:53.5271943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta_dispatch.h 2025-08-14T21:48:53.5276138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_native.h 2025-08-14T21:48:53.5280294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_coo_to_csr_ops.h 2025-08-14T21:48:53.5285110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo.h 2025-08-14T21:48:53.5289452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.5293627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cpu_dispatch.h 2025-08-14T21:48:53.5297845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_cuda_dispatch.h 2025-08-14T21:48:53.5302041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta.h 2025-08-14T21:48:53.5306857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta_dispatch.h 2025-08-14T21:48:53.5310999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_native.h 2025-08-14T21:48:53.5315739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_indices_from_csr_to_coo_ops.h 2025-08-14T21:48:53.5319925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack.h 2025-08-14T21:48:53.5324231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_cuda_dispatch.h 2025-08-14T21:48:53.5328589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu.h 2025-08-14T21:48:53.5333212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h 2025-08-14T21:48:53.5337669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_native.h 2025-08-14T21:48:53.5342083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_ops.h 2025-08-14T21:48:53.5346746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_native.h 2025-08-14T21:48:53.5351179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convert_weight_to_int4pack_ops.h 2025-08-14T21:48:53.5356110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution.h 2025-08-14T21:48:53.5360940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.5365276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.5369411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward.h 2025-08-14T21:48:53.5373917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.5378256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward_native.h 2025-08-14T21:48:53.5382818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_double_backward_ops.h 2025-08-14T21:48:53.5387102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode.h 2025-08-14T21:48:53.5391622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.5396029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode_native.h 2025-08-14T21:48:53.5400302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_mode_ops.h 2025-08-14T21:48:53.5404648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_native.h 2025-08-14T21:48:53.5408876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_convolution_ops.h 2025-08-14T21:48:53.5413711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d.h 2025-08-14T21:48:53.5417939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d_cuda_dispatch.h 2025-08-14T21:48:53.5421990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d_native.h 2025-08-14T21:48:53.5426173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_conv_depthwise2d_ops.h 2025-08-14T21:48:53.5430509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from.h 2025-08-14T21:48:53.5434486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize.h 2025-08-14T21:48:53.5438958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.5443417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize_native.h 2025-08-14T21:48:53.5447672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_and_resize_ops.h 2025-08-14T21:48:53.5452015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.5456576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_native.h 2025-08-14T21:48:53.5461003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_copy_from_ops.h 2025-08-14T21:48:53.5465526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress.h 2025-08-14T21:48:53.5470167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress_cuda_dispatch.h 2025-08-14T21:48:53.5474628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress_native.h 2025-08-14T21:48:53.5478825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_compress_ops.h 2025-08-14T21:48:53.5482937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm.h 2025-08-14T21:48:53.5487352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_cuda_dispatch.h 2025-08-14T21:48:53.5491559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_native.h 2025-08-14T21:48:53.5495840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_ops.h 2025-08-14T21:48:53.5532455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search.h 2025-08-14T21:48:53.5537375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search_cuda_dispatch.h 2025-08-14T21:48:53.5542330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search_native.h 2025-08-14T21:48:53.5546376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cslt_sparse_mm_search_ops.h 2025-08-14T21:48:53.5555575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss.h 2025-08-14T21:48:53.5556204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward.h 2025-08-14T21:48:53.5578862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.5579723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_cpu_dispatch.h 2025-08-14T21:48:53.5580453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_cuda_dispatch.h 2025-08-14T21:48:53.5581181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_native.h 2025-08-14T21:48:53.5581996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_backward_ops.h 2025-08-14T21:48:53.5582943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.5587653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_cpu_dispatch.h 2025-08-14T21:48:53.5593016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_cuda_dispatch.h 2025-08-14T21:48:53.5596494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_meta_dispatch.h 2025-08-14T21:48:53.5601045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_native.h 2025-08-14T21:48:53.5605078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_ctc_loss_ops.h 2025-08-14T21:48:53.5611033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_backward.h 2025-08-14T21:48:53.5613398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_backward_cuda_dispatch.h 2025-08-14T21:48:53.5617992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_backward_native.h 2025-08-14T21:48:53.5622316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_backward_ops.h 2025-08-14T21:48:53.5628197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward.h 2025-08-14T21:48:53.5631224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward_cuda_dispatch.h 2025-08-14T21:48:53.5635529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward_native.h 2025-08-14T21:48:53.5639787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_attention_forward_ops.h 2025-08-14T21:48:53.5643990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss.h 2025-08-14T21:48:53.5648204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.5652330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_cuda_dispatch.h 2025-08-14T21:48:53.5656559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_native.h 2025-08-14T21:48:53.5660972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_ctc_loss_ops.h 2025-08-14T21:48:53.5665068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state.h 2025-08-14T21:48:53.5669467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.5673614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_cuda_dispatch.h 2025-08-14T21:48:53.5677951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_native.h 2025-08-14T21:48:53.5682342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_init_dropout_state_ops.h 2025-08-14T21:48:53.5686584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn.h 2025-08-14T21:48:53.5690796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward.h 2025-08-14T21:48:53.5695248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.5699525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_cuda_dispatch.h 2025-08-14T21:48:53.5703635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_native.h 2025-08-14T21:48:53.5708169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_backward_ops.h 2025-08-14T21:48:53.5712570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.5716654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_cuda_dispatch.h 2025-08-14T21:48:53.5720944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight.h 2025-08-14T21:48:53.5725639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.5729895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_cuda_dispatch.h 2025-08-14T21:48:53.5734258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_native.h 2025-08-14T21:48:53.5738364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_flatten_weight_ops.h 2025-08-14T21:48:53.5742506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_native.h 2025-08-14T21:48:53.5746575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cudnn_rnn_ops.h 2025-08-14T21:48:53.5751187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache.h 2025-08-14T21:48:53.5755720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.5759835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache_native.h 2025-08-14T21:48:53.5763912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_clear_plan_cache_ops.h 2025-08-14T21:48:53.5768061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size.h 2025-08-14T21:48:53.5772475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.5776641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_native.h 2025-08-14T21:48:53.5780818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_max_size_ops.h 2025-08-14T21:48:53.5785143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size.h 2025-08-14T21:48:53.5789707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.5793906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size_native.h 2025-08-14T21:48:53.5798291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_get_plan_cache_size_ops.h 2025-08-14T21:48:53.5802487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size.h 2025-08-14T21:48:53.5806811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.5811432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_native.h 2025-08-14T21:48:53.5815620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cufft_set_plan_cache_max_size_ops.h 2025-08-14T21:48:53.5819699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper.h 2025-08-14T21:48:53.5824153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_cpu_dispatch.h 2025-08-14T21:48:53.5828466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_cuda_dispatch.h 2025-08-14T21:48:53.5833749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_native.h 2025-08-14T21:48:53.5837367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummax_helper_ops.h 2025-08-14T21:48:53.5841788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper.h 2025-08-14T21:48:53.5846337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_cpu_dispatch.h 2025-08-14T21:48:53.5850465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_cuda_dispatch.h 2025-08-14T21:48:53.5854596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_native.h 2025-08-14T21:48:53.5859449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_cummin_helper_ops.h 2025-08-14T21:48:53.5863585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap.h 2025-08-14T21:48:53.5868189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.5872633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap_native.h 2025-08-14T21:48:53.5876906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_debug_has_internal_overlap_ops.h 2025-08-14T21:48:53.5880979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimI.h 2025-08-14T21:48:53.5885174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimI_native.h 2025-08-14T21:48:53.5889269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimI_ops.h 2025-08-14T21:48:53.5893360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimV.h 2025-08-14T21:48:53.5897390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimV_native.h 2025-08-14T21:48:53.5901515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dimV_ops.h 2025-08-14T21:48:53.5905594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange.h 2025-08-14T21:48:53.5909959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.5914152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange_native.h 2025-08-14T21:48:53.5918185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dim_arange_ops.h 2025-08-14T21:48:53.5922468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad.h 2025-08-14T21:48:53.5926964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.5931386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_cpu_dispatch.h 2025-08-14T21:48:53.5935737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_cuda_dispatch.h 2025-08-14T21:48:53.5940516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_native.h 2025-08-14T21:48:53.5944687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dirichlet_grad_ops.h 2025-08-14T21:48:53.5949209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit.h 2025-08-14T21:48:53.5953925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit_cpu_dispatch.h 2025-08-14T21:48:53.5958285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit_native.h 2025-08-14T21:48:53.5962431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_matmul_4bit_ops.h 2025-08-14T21:48:53.5966837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight.h 2025-08-14T21:48:53.5971149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_cpu_dispatch.h 2025-08-14T21:48:53.5975273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_native.h 2025-08-14T21:48:53.5979576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_ops.h 2025-08-14T21:48:53.5983909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor.h 2025-08-14T21:48:53.5988485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.5992714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_cpu_dispatch.h 2025-08-14T21:48:53.5997004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_cuda_dispatch.h 2025-08-14T21:48:53.6002631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_meta_dispatch.h 2025-08-14T21:48:53.6006037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_native.h 2025-08-14T21:48:53.6010096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficientzerotensor_ops.h 2025-08-14T21:48:53.6015427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward.h 2025-08-14T21:48:53.6018423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward_cuda_dispatch.h 2025-08-14T21:48:53.6022821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward_native.h 2025-08-14T21:48:53.6031591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_backward_ops.h 2025-08-14T21:48:53.6032349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward.h 2025-08-14T21:48:53.6036492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward_cuda_dispatch.h 2025-08-14T21:48:53.6041364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward_native.h 2025-08-14T21:48:53.6045862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_efficient_attention_forward_ops.h 2025-08-14T21:48:53.6050904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag.h 2025-08-14T21:48:53.6055860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward.h 2025-08-14T21:48:53.6060509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_cpu_dispatch.h 2025-08-14T21:48:53.6065135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_cuda_dispatch.h 2025-08-14T21:48:53.6070450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_native.h 2025-08-14T21:48:53.6075296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_backward_ops.h 2025-08-14T21:48:53.6080346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6084916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_cpu_dispatch.h 2025-08-14T21:48:53.6089708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_cuda_dispatch.h 2025-08-14T21:48:53.6093944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward.h 2025-08-14T21:48:53.6098961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6103424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_cpu_dispatch.h 2025-08-14T21:48:53.6107891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_cuda_dispatch.h 2025-08-14T21:48:53.6112663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_native.h 2025-08-14T21:48:53.6117408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_dense_backward_ops.h 2025-08-14T21:48:53.6122792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only.h 2025-08-14T21:48:53.6128446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6132751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_cpu_dispatch.h 2025-08-14T21:48:53.6137258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_cuda_dispatch.h 2025-08-14T21:48:53.6141481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_native.h 2025-08-14T21:48:53.6145947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_forward_only_ops.h 2025-08-14T21:48:53.6150490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_native.h 2025-08-14T21:48:53.6155984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_ops.h 2025-08-14T21:48:53.6160014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward.h 2025-08-14T21:48:53.6165271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6169583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cpu_dispatch.h 2025-08-14T21:48:53.6174160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_cuda_dispatch.h 2025-08-14T21:48:53.6178588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_native.h 2025-08-14T21:48:53.6182863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_ops.h 2025-08-14T21:48:53.6187015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward.h 2025-08-14T21:48:53.6191519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.6195955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward_native.h 2025-08-14T21:48:53.6200189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_embedding_bag_sparse_backward_ops.h 2025-08-14T21:48:53.6204451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized.h 2025-08-14T21:48:53.6208571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6212590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_cpu_dispatch.h 2025-08-14T21:48:53.6216637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_native.h 2025-08-14T21:48:53.6220897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_affine_quantized_ops.h 2025-08-14T21:48:53.6225460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized.h 2025-08-14T21:48:53.6229591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6233778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_cpu_dispatch.h 2025-08-14T21:48:53.6238030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_native.h 2025-08-14T21:48:53.6242508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_empty_per_channel_affine_quantized_ops.h 2025-08-14T21:48:53.6246767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist.h 2025-08-14T21:48:53.6251079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6255014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist_native.h 2025-08-14T21:48:53.6259690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_euclidean_dist_ops.h 2025-08-14T21:48:53.6263994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine.h 2025-08-14T21:48:53.6268404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward.h 2025-08-14T21:48:53.6272724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h 2025-08-14T21:48:53.6277063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h 2025-08-14T21:48:53.6281330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_native.h 2025-08-14T21:48:53.6285559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward_ops.h 2025-08-14T21:48:53.6290133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6294337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h 2025-08-14T21:48:53.6298648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h 2025-08-14T21:48:53.6302970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_native.h 2025-08-14T21:48:53.6308036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_ops.h 2025-08-14T21:48:53.6311953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine.h 2025-08-14T21:48:53.6316168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward.h 2025-08-14T21:48:53.6320630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h 2025-08-14T21:48:53.6325003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h 2025-08-14T21:48:53.6329495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_native.h 2025-08-14T21:48:53.6336029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward_ops.h 2025-08-14T21:48:53.6338605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6343726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h 2025-08-14T21:48:53.6349156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h 2025-08-14T21:48:53.6352761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_native.h 2025-08-14T21:48:53.6357200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_ops.h 2025-08-14T21:48:53.6362336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h 2025-08-14T21:48:53.6368691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6371510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h 2025-08-14T21:48:53.6376114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h 2025-08-14T21:48:53.6381341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h 2025-08-14T21:48:53.6385013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h 2025-08-14T21:48:53.6389581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c.h 2025-08-14T21:48:53.6393796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_cpu_dispatch.h 2025-08-14T21:48:53.6399835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_cuda_dispatch.h 2025-08-14T21:48:53.6402623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_native.h 2025-08-14T21:48:53.6406619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2c_ops.h 2025-08-14T21:48:53.6412399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r.h 2025-08-14T21:48:53.6414541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_cpu_dispatch.h 2025-08-14T21:48:53.6419111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_cuda_dispatch.h 2025-08-14T21:48:53.6425053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_native.h 2025-08-14T21:48:53.6427642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_c2r_ops.h 2025-08-14T21:48:53.6432090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c.h 2025-08-14T21:48:53.6437683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_cpu_dispatch.h 2025-08-14T21:48:53.6439976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_cuda_dispatch.h 2025-08-14T21:48:53.6444537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_native.h 2025-08-14T21:48:53.6450247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fft_r2c_ops.h 2025-08-14T21:48:53.6452994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask.h 2025-08-14T21:48:53.6457399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_cuda_dispatch.h 2025-08-14T21:48:53.6463016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_meta_dispatch.h 2025-08-14T21:48:53.6465811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_native.h 2025-08-14T21:48:53.6470488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fill_mem_eff_dropout_mask_ops.h 2025-08-14T21:48:53.6475454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward.h 2025-08-14T21:48:53.6479024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward_cuda_dispatch.h 2025-08-14T21:48:53.6483309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward_native.h 2025-08-14T21:48:53.6488478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_backward_ops.h 2025-08-14T21:48:53.6491581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward.h 2025-08-14T21:48:53.6496263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward_cuda_dispatch.h 2025-08-14T21:48:53.6501176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward_native.h 2025-08-14T21:48:53.6506082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_flash_attention_forward_ops.h 2025-08-14T21:48:53.6509683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar.h 2025-08-14T21:48:53.6513865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6519555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_cpu_dispatch.h 2025-08-14T21:48:53.6522776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_native.h 2025-08-14T21:48:53.6534014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foobar_ops.h 2025-08-14T21:48:53.6534600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs.h 2025-08-14T21:48:53.6548195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6549909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_cuda_dispatch.h 2025-08-14T21:48:53.6551181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_native.h 2025-08-14T21:48:53.6554362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_abs_ops.h 2025-08-14T21:48:53.6558099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos.h 2025-08-14T21:48:53.6563286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6567800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_cuda_dispatch.h 2025-08-14T21:48:53.6573011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_native.h 2025-08-14T21:48:53.6577462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_acos_ops.h 2025-08-14T21:48:53.6581625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add.h 2025-08-14T21:48:53.6588340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv.h 2025-08-14T21:48:53.6590268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6595351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_cuda_dispatch.h 2025-08-14T21:48:53.6599121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_native.h 2025-08-14T21:48:53.6603546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcdiv_ops.h 2025-08-14T21:48:53.6608267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul.h 2025-08-14T21:48:53.6612436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6616587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_cuda_dispatch.h 2025-08-14T21:48:53.6620910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_native.h 2025-08-14T21:48:53.6625114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_addcmul_ops.h 2025-08-14T21:48:53.6629596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6633934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_cuda_dispatch.h 2025-08-14T21:48:53.6638172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_native.h 2025-08-14T21:48:53.6642254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_add_ops.h 2025-08-14T21:48:53.6646295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin.h 2025-08-14T21:48:53.6651055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6654922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_cuda_dispatch.h 2025-08-14T21:48:53.6659095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_native.h 2025-08-14T21:48:53.6694247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_asin_ops.h 2025-08-14T21:48:53.6698364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan.h 2025-08-14T21:48:53.6702665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6707366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_cuda_dispatch.h 2025-08-14T21:48:53.6711730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_native.h 2025-08-14T21:48:53.6716095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_atan_ops.h 2025-08-14T21:48:53.6720130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil.h 2025-08-14T21:48:53.6724890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6729290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_cuda_dispatch.h 2025-08-14T21:48:53.6733065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_native.h 2025-08-14T21:48:53.6736967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_ceil_ops.h 2025-08-14T21:48:53.6741366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max.h 2025-08-14T21:48:53.6745755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6750369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_cuda_dispatch.h 2025-08-14T21:48:53.6754505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_native.h 2025-08-14T21:48:53.6758617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_max_ops.h 2025-08-14T21:48:53.6762612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min.h 2025-08-14T21:48:53.6766917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6771060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_cuda_dispatch.h 2025-08-14T21:48:53.6775332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_native.h 2025-08-14T21:48:53.6779726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_clamp_min_ops.h 2025-08-14T21:48:53.6784084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy.h 2025-08-14T21:48:53.6788501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6792524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_cuda_dispatch.h 2025-08-14T21:48:53.6796680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_native.h 2025-08-14T21:48:53.6800912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_copy_ops.h 2025-08-14T21:48:53.6805002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos.h 2025-08-14T21:48:53.6809249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh.h 2025-08-14T21:48:53.6813781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6818741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_cuda_dispatch.h 2025-08-14T21:48:53.6823135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_native.h 2025-08-14T21:48:53.6827606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cosh_ops.h 2025-08-14T21:48:53.6832043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6836697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_cuda_dispatch.h 2025-08-14T21:48:53.6841037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_native.h 2025-08-14T21:48:53.6845075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_cos_ops.h 2025-08-14T21:48:53.6849321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div.h 2025-08-14T21:48:53.6853889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6858353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_cuda_dispatch.h 2025-08-14T21:48:53.6862547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_native.h 2025-08-14T21:48:53.6867198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_div_ops.h 2025-08-14T21:48:53.6871558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf.h 2025-08-14T21:48:53.6875795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc.h 2025-08-14T21:48:53.6880677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6885265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_cuda_dispatch.h 2025-08-14T21:48:53.6889435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_native.h 2025-08-14T21:48:53.6893990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erfc_ops.h 2025-08-14T21:48:53.6898398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6903288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_cuda_dispatch.h 2025-08-14T21:48:53.6907576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_native.h 2025-08-14T21:48:53.6911914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_erf_ops.h 2025-08-14T21:48:53.6916321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp.h 2025-08-14T21:48:53.6920454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1.h 2025-08-14T21:48:53.6925074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6929630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_cuda_dispatch.h 2025-08-14T21:48:53.6933844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_native.h 2025-08-14T21:48:53.6939992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_expm1_ops.h 2025-08-14T21:48:53.6944912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6949590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_cuda_dispatch.h 2025-08-14T21:48:53.6954073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_native.h 2025-08-14T21:48:53.6958304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_exp_ops.h 2025-08-14T21:48:53.6963201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor.h 2025-08-14T21:48:53.6967814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6972783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_cuda_dispatch.h 2025-08-14T21:48:53.6977072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_native.h 2025-08-14T21:48:53.6982140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_floor_ops.h 2025-08-14T21:48:53.6986619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac.h 2025-08-14T21:48:53.6991201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.6995815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_cuda_dispatch.h 2025-08-14T21:48:53.7000174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_native.h 2025-08-14T21:48:53.7004728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_frac_ops.h 2025-08-14T21:48:53.7009551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp.h 2025-08-14T21:48:53.7014440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7018657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_cuda_dispatch.h 2025-08-14T21:48:53.7023265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_native.h 2025-08-14T21:48:53.7027824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lerp_ops.h 2025-08-14T21:48:53.7032408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma.h 2025-08-14T21:48:53.7037426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7042463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_cuda_dispatch.h 2025-08-14T21:48:53.7047260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_native.h 2025-08-14T21:48:53.7051807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_lgamma_ops.h 2025-08-14T21:48:53.7056812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log.h 2025-08-14T21:48:53.7061733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10.h 2025-08-14T21:48:53.7067637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7072557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_cuda_dispatch.h 2025-08-14T21:48:53.7077669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_native.h 2025-08-14T21:48:53.7082347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log10_ops.h 2025-08-14T21:48:53.7087163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p.h 2025-08-14T21:48:53.7092161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7097568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_cuda_dispatch.h 2025-08-14T21:48:53.7102134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_native.h 2025-08-14T21:48:53.7107041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log1p_ops.h 2025-08-14T21:48:53.7111393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2.h 2025-08-14T21:48:53.7115992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7120664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_cuda_dispatch.h 2025-08-14T21:48:53.7125350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_native.h 2025-08-14T21:48:53.7130107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log2_ops.h 2025-08-14T21:48:53.7134468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7140269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_cuda_dispatch.h 2025-08-14T21:48:53.7143591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_native.h 2025-08-14T21:48:53.7147660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_log_ops.h 2025-08-14T21:48:53.7151843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max.h 2025-08-14T21:48:53.7157324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum.h 2025-08-14T21:48:53.7160942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7165356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_cuda_dispatch.h 2025-08-14T21:48:53.7169487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_native.h 2025-08-14T21:48:53.7173646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_maximum_ops.h 2025-08-14T21:48:53.7178844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7183799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_cuda_dispatch.h 2025-08-14T21:48:53.7188704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_native.h 2025-08-14T21:48:53.7193582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_max_ops.h 2025-08-14T21:48:53.7197726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum.h 2025-08-14T21:48:53.7202104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7206380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_cuda_dispatch.h 2025-08-14T21:48:53.7210815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_native.h 2025-08-14T21:48:53.7214970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_minimum_ops.h 2025-08-14T21:48:53.7219289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul.h 2025-08-14T21:48:53.7223869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7228050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_cuda_dispatch.h 2025-08-14T21:48:53.7232555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_native.h 2025-08-14T21:48:53.7236993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_mul_ops.h 2025-08-14T21:48:53.7241230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg.h 2025-08-14T21:48:53.7245888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7250151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_cuda_dispatch.h 2025-08-14T21:48:53.7254817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_native.h 2025-08-14T21:48:53.7259189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_neg_ops.h 2025-08-14T21:48:53.7263325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm.h 2025-08-14T21:48:53.7268377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7272583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_cuda_dispatch.h 2025-08-14T21:48:53.7276876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_native.h 2025-08-14T21:48:53.7281248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_norm_ops.h 2025-08-14T21:48:53.7285683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow.h 2025-08-14T21:48:53.7290366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7294659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_cuda_dispatch.h 2025-08-14T21:48:53.7299575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_native.h 2025-08-14T21:48:53.7303899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_pow_ops.h 2025-08-14T21:48:53.7308949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal.h 2025-08-14T21:48:53.7313822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7318149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_cuda_dispatch.h 2025-08-14T21:48:53.7351796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_native.h 2025-08-14T21:48:53.7356399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_reciprocal_ops.h 2025-08-14T21:48:53.7360602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round.h 2025-08-14T21:48:53.7365059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7369734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_cuda_dispatch.h 2025-08-14T21:48:53.7374519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_native.h 2025-08-14T21:48:53.7379499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_round_ops.h 2025-08-14T21:48:53.7383885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt.h 2025-08-14T21:48:53.7388442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7393025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_cuda_dispatch.h 2025-08-14T21:48:53.7397516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_native.h 2025-08-14T21:48:53.7402013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_rsqrt_ops.h 2025-08-14T21:48:53.7406908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid.h 2025-08-14T21:48:53.7411364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7416081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_cuda_dispatch.h 2025-08-14T21:48:53.7420544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_native.h 2025-08-14T21:48:53.7425823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sigmoid_ops.h 2025-08-14T21:48:53.7432013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign.h 2025-08-14T21:48:53.7435259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7439755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_cuda_dispatch.h 2025-08-14T21:48:53.7444687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_native.h 2025-08-14T21:48:53.7448395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sign_ops.h 2025-08-14T21:48:53.7452566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin.h 2025-08-14T21:48:53.7457514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh.h 2025-08-14T21:48:53.7463900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7466815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_cuda_dispatch.h 2025-08-14T21:48:53.7471728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_native.h 2025-08-14T21:48:53.7476356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sinh_ops.h 2025-08-14T21:48:53.7481320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7484641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_cuda_dispatch.h 2025-08-14T21:48:53.7489128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_native.h 2025-08-14T21:48:53.7495155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sin_ops.h 2025-08-14T21:48:53.7498505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt.h 2025-08-14T21:48:53.7502865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7507822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_cuda_dispatch.h 2025-08-14T21:48:53.7511983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_native.h 2025-08-14T21:48:53.7527624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sqrt_ops.h 2025-08-14T21:48:53.7528124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub.h 2025-08-14T21:48:53.7528724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7530401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_cuda_dispatch.h 2025-08-14T21:48:53.7536243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_native.h 2025-08-14T21:48:53.7541086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_sub_ops.h 2025-08-14T21:48:53.7545785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan.h 2025-08-14T21:48:53.7550707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh.h 2025-08-14T21:48:53.7554946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7559950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_cuda_dispatch.h 2025-08-14T21:48:53.7564417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_native.h 2025-08-14T21:48:53.7569788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tanh_ops.h 2025-08-14T21:48:53.7574287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7579069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_cuda_dispatch.h 2025-08-14T21:48:53.7583220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_native.h 2025-08-14T21:48:53.7587823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_tan_ops.h 2025-08-14T21:48:53.7592520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc.h 2025-08-14T21:48:53.7596820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7601226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_cuda_dispatch.h 2025-08-14T21:48:53.7605671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_native.h 2025-08-14T21:48:53.7610116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_trunc_ops.h 2025-08-14T21:48:53.7614435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero.h 2025-08-14T21:48:53.7618652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7623155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_cuda_dispatch.h 2025-08-14T21:48:53.7627690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_native.h 2025-08-14T21:48:53.7632200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_foreach_zero_ops.h 2025-08-14T21:48:53.7636583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async.h 2025-08-14T21:48:53.7640914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async_cpu_dispatch.h 2025-08-14T21:48:53.7644949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async_native.h 2025-08-14T21:48:53.7649874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_async_ops.h 2025-08-14T21:48:53.7654212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar.h 2025-08-14T21:48:53.7658977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7663369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar_native.h 2025-08-14T21:48:53.7667849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_assert_scalar_ops.h 2025-08-14T21:48:53.7672137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range.h 2025-08-14T21:48:53.7676850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7681626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size.h 2025-08-14T21:48:53.7686723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7691697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_native.h 2025-08-14T21:48:53.7696101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_for_size_ops.h 2025-08-14T21:48:53.7700943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_native.h 2025-08-14T21:48:53.7705335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_functional_sym_constrain_range_ops.h 2025-08-14T21:48:53.7709939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad.h 2025-08-14T21:48:53.7714180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7718409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_cpu_dispatch.h 2025-08-14T21:48:53.7722789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_cuda_dispatch.h 2025-08-14T21:48:53.7727178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_native.h 2025-08-14T21:48:53.7731820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adagrad_ops.h 2025-08-14T21:48:53.7736068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam.h 2025-08-14T21:48:53.7740144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw.h 2025-08-14T21:48:53.7744357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7748615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_cpu_dispatch.h 2025-08-14T21:48:53.7753132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_cuda_dispatch.h 2025-08-14T21:48:53.7757828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_native.h 2025-08-14T21:48:53.7761992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adamw_ops.h 2025-08-14T21:48:53.7766232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7770616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_cpu_dispatch.h 2025-08-14T21:48:53.7774876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_cuda_dispatch.h 2025-08-14T21:48:53.7779454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_native.h 2025-08-14T21:48:53.7783843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_adam_ops.h 2025-08-14T21:48:53.7787956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout.h 2025-08-14T21:48:53.7792566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7797349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_cuda_dispatch.h 2025-08-14T21:48:53.7801738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_native.h 2025-08-14T21:48:53.7806123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_dropout_ops.h 2025-08-14T21:48:53.7810830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper.h 2025-08-14T21:48:53.7815546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7820521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cpu_dispatch.h 2025-08-14T21:48:53.7825157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_cuda_dispatch.h 2025-08-14T21:48:53.7830812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_native.h 2025-08-14T21:48:53.7834724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_ops.h 2025-08-14T21:48:53.7839064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm.h 2025-08-14T21:48:53.7843541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_backward.h 2025-08-14T21:48:53.7848375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_backward_cuda_dispatch.h 2025-08-14T21:48:53.7853459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_backward_native.h 2025-08-14T21:48:53.7857995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_backward_ops.h 2025-08-14T21:48:53.7862551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.7866792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_cuda_dispatch.h 2025-08-14T21:48:53.7871421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_native.h 2025-08-14T21:48:53.7876077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_rms_norm_ops.h 2025-08-14T21:48:53.7880589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice.h 2025-08-14T21:48:53.7917309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_cpu_dispatch.h 2025-08-14T21:48:53.7922018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_cuda_dispatch.h 2025-08-14T21:48:53.7926703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_meta_dispatch.h 2025-08-14T21:48:53.7931625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_native.h 2025-08-14T21:48:53.7936106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sdp_choice_ops.h 2025-08-14T21:48:53.7940555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd.h 2025-08-14T21:48:53.7947011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7951831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_cpu_dispatch.h 2025-08-14T21:48:53.7956294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_cuda_dispatch.h 2025-08-14T21:48:53.7960598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_native.h 2025-08-14T21:48:53.7964953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fused_sgd_ops.h 2025-08-14T21:48:53.7969111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal.h 2025-08-14T21:48:53.7973727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7977818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy.h 2025-08-14T21:48:53.7982456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.7987093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.7994346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_native.h 2025-08-14T21:48:53.7997006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_copy_ops.h 2025-08-14T21:48:53.8001672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_native.h 2025-08-14T21:48:53.8007063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_fw_primal_ops.h 2025-08-14T21:48:53.8010652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward.h 2025-08-14T21:48:53.8015156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.8019612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward_native.h 2025-08-14T21:48:53.8025411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_gather_sparse_backward_ops.h 2025-08-14T21:48:53.8028250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback.h 2025-08-14T21:48:53.8033283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward.h 2025-08-14T21:48:53.8063559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.8063965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_native.h 2025-08-14T21:48:53.8064320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_ops.h 2025-08-14T21:48:53.8064769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.8065119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_native.h 2025-08-14T21:48:53.8065438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_ops.h 2025-08-14T21:48:53.8070071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm.h 2025-08-14T21:48:53.8072293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm_cuda_dispatch.h 2025-08-14T21:48:53.8076398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm_native.h 2025-08-14T21:48:53.8080987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_grouped_mm_ops.h 2025-08-14T21:48:53.8085653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type.h 2025-08-14T21:48:53.8089838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.8094306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type_native.h 2025-08-14T21:48:53.8099084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_compatible_shallow_copy_type_ops.h 2025-08-14T21:48:53.8103193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel.h 2025-08-14T21:48:53.8108063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.8112436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel_native.h 2025-08-14T21:48:53.8116930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_has_same_storage_numel_ops.h 2025-08-14T21:48:53.8121256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges.h 2025-08-14T21:48:53.8125483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.8129424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_cpu_dispatch.h 2025-08-14T21:48:53.8133891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_native.h 2025-08-14T21:48:53.8138405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_bin_edges_ops.h 2025-08-14T21:48:53.8142820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts.h 2025-08-14T21:48:53.8147339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.8151766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_cpu_dispatch.h 2025-08-14T21:48:53.8155976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_native.h 2025-08-14T21:48:53.8160471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_cts_ops.h 2025-08-14T21:48:53.8164986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors.h 2025-08-14T21:48:53.8169790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.8174151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_cpu_dispatch.h 2025-08-14T21:48:53.8178421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_native.h 2025-08-14T21:48:53.8182782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_histogramdd_from_bin_tensors_ops.h 2025-08-14T21:48:53.8187597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl.h 2025-08-14T21:48:53.8191995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.8196487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_cpu_dispatch.h 2025-08-14T21:48:53.8200569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_cuda_dispatch.h 2025-08-14T21:48:53.8204990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_meta_dispatch.h 2025-08-14T21:48:53.8209335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_native.h 2025-08-14T21:48:53.8214427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_index_put_impl_ops.h 2025-08-14T21:48:53.8218886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices.h 2025-08-14T21:48:53.8222785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy.h 2025-08-14T21:48:53.8227422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.8232237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.8236581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_native.h 2025-08-14T21:48:53.8240830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_copy_ops.h 2025-08-14T21:48:53.8245065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_native.h 2025-08-14T21:48:53.8249144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_indices_ops.h 2025-08-14T21:48:53.8254374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm.h 2025-08-14T21:48:53.8258210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_cpu_dispatch.h 2025-08-14T21:48:53.8262482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_cuda_dispatch.h 2025-08-14T21:48:53.8267040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_native.h 2025-08-14T21:48:53.8271507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_int_mm_ops.h 2025-08-14T21:48:53.8275514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true.h 2025-08-14T21:48:53.8280206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.8284145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true_native.h 2025-08-14T21:48:53.8288128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_all_true_ops.h 2025-08-14T21:48:53.8292286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true.h 2025-08-14T21:48:53.8297402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.8301417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true_native.h 2025-08-14T21:48:53.8305743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_any_true_ops.h 2025-08-14T21:48:53.8310102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor.h 2025-08-14T21:48:53.8314852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.8319130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor_native.h 2025-08-14T21:48:53.8323334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_is_zerotensor_ops.h 2025-08-14T21:48:53.8329165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward.h 2025-08-14T21:48:53.8332225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_cpu_dispatch.h 2025-08-14T21:48:53.8337474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_cuda_dispatch.h 2025-08-14T21:48:53.8342010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_native.h 2025-08-14T21:48:53.8347979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_jagged_to_padded_dense_forward_ops.h 2025-08-14T21:48:53.8350817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone.h 2025-08-14T21:48:53.8355221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.8360711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone_native.h 2025-08-14T21:48:53.8363815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lazy_clone_ops.h 2025-08-14T21:48:53.8368206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors.h 2025-08-14T21:48:53.8373549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.8376990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors_native.h 2025-08-14T21:48:53.8381574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_check_errors_ops.h 2025-08-14T21:48:53.8386093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det.h 2025-08-14T21:48:53.8392500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.8395937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_cpu_dispatch.h 2025-08-14T21:48:53.8400493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_cuda_dispatch.h 2025-08-14T21:48:53.8405071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_meta.h 2025-08-14T21:48:53.8411010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_meta_dispatch.h 2025-08-14T21:48:53.8413509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_native.h 2025-08-14T21:48:53.8418032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_det_ops.h 2025-08-14T21:48:53.8423780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh.h 2025-08-14T21:48:53.8427087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.8431434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_cpu_dispatch.h 2025-08-14T21:48:53.8436466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_cuda_dispatch.h 2025-08-14T21:48:53.8440313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_meta.h 2025-08-14T21:48:53.8444918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_meta_dispatch.h 2025-08-14T21:48:53.8449256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_native.h 2025-08-14T21:48:53.8453947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigh_ops.h 2025-08-14T21:48:53.8458160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals.h 2025-08-14T21:48:53.8462546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_cpu_dispatch.h 2025-08-14T21:48:53.8466742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_cuda_dispatch.h 2025-08-14T21:48:53.8471236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_native.h 2025-08-14T21:48:53.8475624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_eigvals_ops.h 2025-08-14T21:48:53.8479913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet.h 2025-08-14T21:48:53.8486632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.8489426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_cpu_dispatch.h 2025-08-14T21:48:53.8494296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_cuda_dispatch.h 2025-08-14T21:48:53.8498874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_meta.h 2025-08-14T21:48:53.8503231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_meta_dispatch.h 2025-08-14T21:48:53.8507787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_native.h 2025-08-14T21:48:53.8512825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_slogdet_ops.h 2025-08-14T21:48:53.8517483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex.h 2025-08-14T21:48:53.8521912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.8526165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_cpu_dispatch.h 2025-08-14T21:48:53.8530907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_cuda_dispatch.h 2025-08-14T21:48:53.8535177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_meta.h 2025-08-14T21:48:53.8539578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_meta_dispatch.h 2025-08-14T21:48:53.8544437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_native.h 2025-08-14T21:48:53.8549309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_solve_ex_ops.h 2025-08-14T21:48:53.8553330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd.h 2025-08-14T21:48:53.8557828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.8562251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_cpu_dispatch.h 2025-08-14T21:48:53.8567229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_cuda_dispatch.h 2025-08-14T21:48:53.8571688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_meta.h 2025-08-14T21:48:53.8576198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_meta_dispatch.h 2025-08-14T21:48:53.8580428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_native.h 2025-08-14T21:48:53.8584693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_linalg_svd_ops.h 2025-08-14T21:48:53.8588970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense.h 2025-08-14T21:48:53.8593717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_cpu_dispatch.h 2025-08-14T21:48:53.8598102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_cuda_dispatch.h 2025-08-14T21:48:53.8602252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_native.h 2025-08-14T21:48:53.8606866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_local_scalar_dense_ops.h 2025-08-14T21:48:53.8611158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp.h 2025-08-14T21:48:53.8615406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_cpu_dispatch.h 2025-08-14T21:48:53.8619549Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_cuda_dispatch.h 2025-08-14T21:48:53.8623719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_native.h 2025-08-14T21:48:53.8628728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_logcumsumexp_ops.h 2025-08-14T21:48:53.8633001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax.h 2025-08-14T21:48:53.8637265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data.h 2025-08-14T21:48:53.8641847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.8646475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_cpu_dispatch.h 2025-08-14T21:48:53.8651259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_cuda_dispatch.h 2025-08-14T21:48:53.8655709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_meta.h 2025-08-14T21:48:53.8659985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_meta_dispatch.h 2025-08-14T21:48:53.8664637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_native.h 2025-08-14T21:48:53.8668922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_backward_data_ops.h 2025-08-14T21:48:53.8673287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.8677672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_cpu_dispatch.h 2025-08-14T21:48:53.8681880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_cuda_dispatch.h 2025-08-14T21:48:53.8686533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_meta.h 2025-08-14T21:48:53.8690742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_meta_dispatch.h 2025-08-14T21:48:53.8695094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_native.h 2025-08-14T21:48:53.8699315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_log_softmax_ops.h 2025-08-14T21:48:53.8703431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps.h 2025-08-14T21:48:53.8707615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.8711797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps_native.h 2025-08-14T21:48:53.8715821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lstm_mps_ops.h 2025-08-14T21:48:53.8720150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info.h 2025-08-14T21:48:53.8724444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.8728469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info_native.h 2025-08-14T21:48:53.8732756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_lu_with_info_ops.h 2025-08-14T21:48:53.8736962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token.h 2025-08-14T21:48:53.8741259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token_cpu_dispatch.h 2025-08-14T21:48:53.8745431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token_native.h 2025-08-14T21:48:53.8749886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dep_token_ops.h 2025-08-14T21:48:53.8754293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual.h 2025-08-14T21:48:53.8758504Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.8762677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy.h 2025-08-14T21:48:53.8767278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.8771708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.8776298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_native.h 2025-08-14T21:48:53.8781045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_copy_ops.h 2025-08-14T21:48:53.8785360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_native.h 2025-08-14T21:48:53.8790606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_dual_ops.h 2025-08-14T21:48:53.8794966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor.h 2025-08-14T21:48:53.8799749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.8804622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_cpu_dispatch.h 2025-08-14T21:48:53.8809028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_cuda_dispatch.h 2025-08-14T21:48:53.8813614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_native.h 2025-08-14T21:48:53.8817904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_channel_quantized_tensor_ops.h 2025-08-14T21:48:53.8822088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor.h 2025-08-14T21:48:53.8826931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.8831465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cpu_dispatch.h 2025-08-14T21:48:53.8835980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cuda_dispatch.h 2025-08-14T21:48:53.8840230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_native.h 2025-08-14T21:48:53.8845197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_make_per_tensor_quantized_tensor_ops.h 2025-08-14T21:48:53.8849277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale.h 2025-08-14T21:48:53.8854106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.8858820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_cuda_dispatch.h 2025-08-14T21:48:53.8863259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_native.h 2025-08-14T21:48:53.8868034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_scale_ops.h 2025-08-14T21:48:53.8872053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax.h 2025-08-14T21:48:53.8876348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward.h 2025-08-14T21:48:53.8881747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.8886674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_cpu_dispatch.h 2025-08-14T21:48:53.8891103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_cuda_dispatch.h 2025-08-14T21:48:53.8895168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_native.h 2025-08-14T21:48:53.8899764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_backward_ops.h 2025-08-14T21:48:53.8904980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.8909567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_cpu_dispatch.h 2025-08-14T21:48:53.8914618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_cuda_dispatch.h 2025-08-14T21:48:53.8919128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_native.h 2025-08-14T21:48:53.8923272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_masked_softmax_ops.h 2025-08-14T21:48:53.8927326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear.h 2025-08-14T21:48:53.8931789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear_cuda_dispatch.h 2025-08-14T21:48:53.8935703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear_native.h 2025-08-14T21:48:53.8939751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mixed_dtypes_linear_ops.h 2025-08-14T21:48:53.8943936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape.h 2025-08-14T21:48:53.8948256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.8952917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape_native.h 2025-08-14T21:48:53.8957776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_reshape_ops.h 2025-08-14T21:48:53.8962575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose.h 2025-08-14T21:48:53.8966941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.8971177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_meta_dispatch.h 2025-08-14T21:48:53.8975671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_native.h 2025-08-14T21:48:53.8979894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mkldnn_transpose_ops.h 2025-08-14T21:48:53.8984339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution.h 2025-08-14T21:48:53.8988672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.8992796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_native.h 2025-08-14T21:48:53.8997062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_ops.h 2025-08-14T21:48:53.9001556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose.h 2025-08-14T21:48:53.9005958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.9010147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose_native.h 2025-08-14T21:48:53.9014448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_mps_convolution_transpose_ops.h 2025-08-14T21:48:53.9018716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit.h 2025-08-14T21:48:53.9024144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.9027509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_cpu_dispatch.h 2025-08-14T21:48:53.9031708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_cuda_dispatch.h 2025-08-14T21:48:53.9036040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_native.h 2025-08-14T21:48:53.9040475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training.h 2025-08-14T21:48:53.9045198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.9049634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training_native.h 2025-08-14T21:48:53.9092576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_no_training_ops.h 2025-08-14T21:48:53.9097230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_batch_norm_legit_ops.h 2025-08-14T21:48:53.9102238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention.h 2025-08-14T21:48:53.9108011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.9113104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_cpu_dispatch.h 2025-08-14T21:48:53.9118016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_cuda_dispatch.h 2025-08-14T21:48:53.9122905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_native.h 2025-08-14T21:48:53.9137610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_native_multi_head_attention_ops.h 2025-08-14T21:48:53.9137869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view.h 2025-08-14T21:48:53.9138266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.9144007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy.h 2025-08-14T21:48:53.9146042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.9151435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.9155113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_native.h 2025-08-14T21:48:53.9160098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_copy_ops.h 2025-08-14T21:48:53.9164420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_native.h 2025-08-14T21:48:53.9170478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_neg_view_ops.h 2025-08-14T21:48:53.9173049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets.h 2025-08-14T21:48:53.9177287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cpu_dispatch.h 2025-08-14T21:48:53.9181341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cuda_dispatch.h 2025-08-14T21:48:53.9187618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_native.h 2025-08-14T21:48:53.9190629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_ops.h 2025-08-14T21:48:53.9194966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded.h 2025-08-14T21:48:53.9199633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example.h 2025-08-14T21:48:53.9204520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.9209646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example_native.h 2025-08-14T21:48:53.9215228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_and_nested_example_ops.h 2025-08-14T21:48:53.9218932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.9223138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_cpu_dispatch.h 2025-08-14T21:48:53.9228082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_cuda_dispatch.h 2025-08-14T21:48:53.9232360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_native.h 2025-08-14T21:48:53.9237945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_ops.h 2025-08-14T21:48:53.9242530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_tensor.h 2025-08-14T21:48:53.9247043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_tensor_native.h 2025-08-14T21:48:53.9251338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_from_padded_tensor_ops.h 2025-08-14T21:48:53.9255869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_jagged_dummy.h 2025-08-14T21:48:53.9260018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_jagged_dummy_native.h 2025-08-14T21:48:53.9264563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_jagged_dummy_ops.h 2025-08-14T21:48:53.9271076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_lengths.h 2025-08-14T21:48:53.9273540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_lengths_native.h 2025-08-14T21:48:53.9277930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_lengths_ops.h 2025-08-14T21:48:53.9284175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_max_seqlen.h 2025-08-14T21:48:53.9286739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_max_seqlen_native.h 2025-08-14T21:48:53.9291719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_max_seqlen_ops.h 2025-08-14T21:48:53.9296782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_min_seqlen.h 2025-08-14T21:48:53.9300672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_min_seqlen_native.h 2025-08-14T21:48:53.9305598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_min_seqlen_ops.h 2025-08-14T21:48:53.9310055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_offsets.h 2025-08-14T21:48:53.9315642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_offsets_native.h 2025-08-14T21:48:53.9318667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_offsets_ops.h 2025-08-14T21:48:53.9323256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_ragged_idx.h 2025-08-14T21:48:53.9328579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_ragged_idx_native.h 2025-08-14T21:48:53.9332734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_ragged_idx_ops.h 2025-08-14T21:48:53.9337158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values.h 2025-08-14T21:48:53.9341316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy.h 2025-08-14T21:48:53.9345697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.9350829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.9355281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_native.h 2025-08-14T21:48:53.9359860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_copy_ops.h 2025-08-14T21:48:53.9364519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_native.h 2025-08-14T21:48:53.9368734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_get_values_ops.h 2025-08-14T21:48:53.9373202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_select_backward.h 2025-08-14T21:48:53.9377204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_select_backward_native.h 2025-08-14T21:48:53.9382026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_select_backward_ops.h 2025-08-14T21:48:53.9386444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_sum_backward.h 2025-08-14T21:48:53.9390591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_sum_backward_native.h 2025-08-14T21:48:53.9395060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_sum_backward_ops.h 2025-08-14T21:48:53.9399833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask.h 2025-08-14T21:48:53.9404247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.9408693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_cpu_dispatch.h 2025-08-14T21:48:53.9413795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_cuda_dispatch.h 2025-08-14T21:48:53.9418560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned.h 2025-08-14T21:48:53.9423051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cpu_dispatch.h 2025-08-14T21:48:53.9428043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_cuda_dispatch.h 2025-08-14T21:48:53.9432831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_native.h 2025-08-14T21:48:53.9438289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_ops.h 2025-08-14T21:48:53.9442800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_native.h 2025-08-14T21:48:53.9447171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_mask_ops.h 2025-08-14T21:48:53.9452474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list.h 2025-08-14T21:48:53.9457586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.9461003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list_native.h 2025-08-14T21:48:53.9465901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_from_tensor_list_ops.h 2025-08-14T21:48:53.9470514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size.h 2025-08-14T21:48:53.9476647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.9479437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size_native.h 2025-08-14T21:48:53.9484348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_size_ops.h 2025-08-14T21:48:53.9489230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_softmax_with_shape.h 2025-08-14T21:48:53.9495203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_softmax_with_shape_native.h 2025-08-14T21:48:53.9498193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_softmax_with_shape_ops.h 2025-08-14T21:48:53.9502320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets.h 2025-08-14T21:48:53.9508151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.9511840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets_native.h 2025-08-14T21:48:53.9516097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_storage_offsets_ops.h 2025-08-14T21:48:53.9521008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides.h 2025-08-14T21:48:53.9525931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.9530325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides_native.h 2025-08-14T21:48:53.9535184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_tensor_strides_ops.h 2025-08-14T21:48:53.9539594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer.h 2025-08-14T21:48:53.9544529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy.h 2025-08-14T21:48:53.9549458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.9553761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.9558149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_native.h 2025-08-14T21:48:53.9563316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_copy_ops.h 2025-08-14T21:48:53.9567924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_cpu_dispatch.h 2025-08-14T21:48:53.9573062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_cuda_dispatch.h 2025-08-14T21:48:53.9578596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_native.h 2025-08-14T21:48:53.9583403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_buffer_ops.h 2025-08-14T21:48:53.9588155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged.h 2025-08-14T21:48:53.9592913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy.h 2025-08-14T21:48:53.9598439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:53.9603805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.9608249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_native.h 2025-08-14T21:48:53.9612488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_copy_ops.h 2025-08-14T21:48:53.9616920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_native.h 2025-08-14T21:48:53.9621206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nested_view_from_jagged_ops.h 2025-08-14T21:48:53.9625831Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta.h 2025-08-14T21:48:53.9630522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.9634811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_native.h 2025-08-14T21:48:53.9639031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_new_zeros_with_same_feature_meta_ops.h 2025-08-14T21:48:53.9643409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available.h 2025-08-14T21:48:53.9648207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.9652634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available_native.h 2025-08-14T21:48:53.9656836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_available_ops.h 2025-08-14T21:48:53.9661332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution.h 2025-08-14T21:48:53.9665838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.9669987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution_native.h 2025-08-14T21:48:53.9674806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnpack_spatial_convolution_ops.h 2025-08-14T21:48:53.9679284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnz.h 2025-08-14T21:48:53.9684120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnz_native.h 2025-08-14T21:48:53.9688425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_nnz_ops.h 2025-08-14T21:48:53.9692469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence.h 2025-08-14T21:48:53.9696483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward.h 2025-08-14T21:48:53.9701558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.9705875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward_native.h 2025-08-14T21:48:53.9710242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_backward_ops.h 2025-08-14T21:48:53.9714703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:53.9718884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_native.h 2025-08-14T21:48:53.9723413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pack_padded_sequence_ops.h 2025-08-14T21:48:53.9727737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward.h 2025-08-14T21:48:53.9731970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_cpu_dispatch.h 2025-08-14T21:48:53.9736374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_cuda_dispatch.h 2025-08-14T21:48:53.9740787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_native.h 2025-08-14T21:48:53.9745571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_padded_dense_to_jagged_forward_ops.h 2025-08-14T21:48:53.9749824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular.h 2025-08-14T21:48:53.9754679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:53.9759712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular_native.h 2025-08-14T21:48:54.1045353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_circular_ops.h 2025-08-14T21:48:54.1049524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum.h 2025-08-14T21:48:54.1054020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.1058214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum_native.h 2025-08-14T21:48:54.1062635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_enum_ops.h 2025-08-14T21:48:54.1067546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence.h 2025-08-14T21:48:54.1072762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.1077281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence_native.h 2025-08-14T21:48:54.1082694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pad_packed_sequence_ops.h 2025-08-14T21:48:54.1087293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward.h 2025-08-14T21:48:54.1092088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.1096860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_cpu_dispatch.h 2025-08-14T21:48:54.1101591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_cuda_dispatch.h 2025-08-14T21:48:54.1106479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_native.h 2025-08-14T21:48:54.1112097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_backward_ops.h 2025-08-14T21:48:54.1116943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward.h 2025-08-14T21:48:54.1121905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.1126502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_cpu_dispatch.h 2025-08-14T21:48:54.1130909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_cuda_dispatch.h 2025-08-14T21:48:54.1135294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_native.h 2025-08-14T21:48:54.1139878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pdist_forward_ops.h 2025-08-14T21:48:54.1144327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory.h 2025-08-14T21:48:54.1148889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.1153153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory_native.h 2025-08-14T21:48:54.1158008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_pin_memory_ops.h 2025-08-14T21:48:54.1162242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel.h 2025-08-14T21:48:54.1166745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward.h 2025-08-14T21:48:54.1171358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_cpu_dispatch.h 2025-08-14T21:48:54.1176274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_cuda_dispatch.h 2025-08-14T21:48:54.1180997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_native.h 2025-08-14T21:48:54.1184837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_backward_ops.h 2025-08-14T21:48:54.1189914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_cpu_dispatch.h 2025-08-14T21:48:54.1194490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_cuda_dispatch.h 2025-08-14T21:48:54.1199210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_native.h 2025-08-14T21:48:54.1203631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_prelu_kernel_ops.h 2025-08-14T21:48:54.1208610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print.h 2025-08-14T21:48:54.1214798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.1220335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print_native.h 2025-08-14T21:48:54.1226141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_print_ops.h 2025-08-14T21:48:54.1230610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data.h 2025-08-14T21:48:54.1234813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.1239025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data_native.h 2025-08-14T21:48:54.1243052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_propagate_xla_data_ops.h 2025-08-14T21:48:54.1247357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim.h 2025-08-14T21:48:54.1252267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.1256267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim_native.h 2025-08-14T21:48:54.1260554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_remove_batch_dim_ops.h 2025-08-14T21:48:54.1265049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias.h 2025-08-14T21:48:54.1269181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy.h 2025-08-14T21:48:54.1273265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:54.1278785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.1282715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_native.h 2025-08-14T21:48:54.1286838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_copy_ops.h 2025-08-14T21:48:54.1291476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_cpu_dispatch.h 2025-08-14T21:48:54.1295908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_cuda_dispatch.h 2025-08-14T21:48:54.1300051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_meta_dispatch.h 2025-08-14T21:48:54.1304173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_native.h 2025-08-14T21:48:54.1309124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_alias_ops.h 2025-08-14T21:48:54.1313303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy.h 2025-08-14T21:48:54.1317589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.1321781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy_native.h 2025-08-14T21:48:54.1325913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_copy_ops.h 2025-08-14T21:48:54.1330024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor.h 2025-08-14T21:48:54.1334364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.1338467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor_native.h 2025-08-14T21:48:54.1342611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_reshape_from_tensor_ops.h 2025-08-14T21:48:54.1347031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output.h 2025-08-14T21:48:54.1351305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.1355761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_meta_dispatch.h 2025-08-14T21:48:54.1359965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_native.h 2025-08-14T21:48:54.1364059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_resize_output_ops.h 2025-08-14T21:48:54.1368381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune.h 2025-08-14T21:48:54.1372351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.1376930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune_native.h 2025-08-14T21:48:54.1380879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_rowwise_prune_ops.h 2025-08-14T21:48:54.1385010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax.h 2025-08-14T21:48:54.1389798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.1393832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax_native.h 2025-08-14T21:48:54.1397865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_safe_softmax_ops.h 2025-08-14T21:48:54.1401913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet.h 2025-08-14T21:48:54.1406144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.1410255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_cpu_dispatch.h 2025-08-14T21:48:54.1414337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_cuda_dispatch.h 2025-08-14T21:48:54.1418591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_native.h 2025-08-14T21:48:54.1422829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sample_dirichlet_ops.h 2025-08-14T21:48:54.1427192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16.h 2025-08-14T21:48:54.1432301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.1436781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16_native.h 2025-08-14T21:48:54.1440734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_saturate_weight_to_fp16_ops.h 2025-08-14T21:48:54.1445553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math.h 2025-08-14T21:48:54.1449873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.1455110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps.h 2025-08-14T21:48:54.1459674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_native.h 2025-08-14T21:48:54.1464061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps_ops.h 2025-08-14T21:48:54.1468402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_native.h 2025-08-14T21:48:54.1472539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_attention_math_ops.h 2025-08-14T21:48:54.1476974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention.h 2025-08-14T21:48:54.1482836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward.h 2025-08-14T21:48:54.1487072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h 2025-08-14T21:48:54.1492058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_native.h 2025-08-14T21:48:54.1496528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_ops.h 2025-08-14T21:48:54.1501127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_cuda_dispatch.h 2025-08-14T21:48:54.1506271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_native.h 2025-08-14T21:48:54.1510584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_ops.h 2025-08-14T21:48:54.1514793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention.h 2025-08-14T21:48:54.1519124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward.h 2025-08-14T21:48:54.1523664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h 2025-08-14T21:48:54.1528326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_native.h 2025-08-14T21:48:54.1532760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_ops.h 2025-08-14T21:48:54.1537153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_cuda_dispatch.h 2025-08-14T21:48:54.1541952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_native.h 2025-08-14T21:48:54.1564786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_efficient_attention_ops.h 2025-08-14T21:48:54.1569239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention.h 2025-08-14T21:48:54.1574367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward.h 2025-08-14T21:48:54.1578765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_cuda_dispatch.h 2025-08-14T21:48:54.1584490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_native.h 2025-08-14T21:48:54.1589560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_ops.h 2025-08-14T21:48:54.1594539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_cuda_dispatch.h 2025-08-14T21:48:54.1599656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu.h 2025-08-14T21:48:54.1605087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward.h 2025-08-14T21:48:54.1610769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h 2025-08-14T21:48:54.1615833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_native.h 2025-08-14T21:48:54.1620979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_backward_ops.h 2025-08-14T21:48:54.1625982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h 2025-08-14T21:48:54.1630932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_native.h 2025-08-14T21:48:54.1635808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu_ops.h 2025-08-14T21:48:54.1640782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_native.h 2025-08-14T21:48:54.1645974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_flash_attention_ops.h 2025-08-14T21:48:54.1650994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable.h 2025-08-14T21:48:54.1655888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward.h 2025-08-14T21:48:54.1661534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.1666734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_native.h 2025-08-14T21:48:54.1671839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward_ops.h 2025-08-14T21:48:54.1676879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.1681494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_native.h 2025-08-14T21:48:54.1687511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_ops.h 2025-08-14T21:48:54.1692241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm.h 2025-08-14T21:48:54.1697102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm_cuda_dispatch.h 2025-08-14T21:48:54.1702220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm_native.h 2025-08-14T21:48:54.1707823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_grouped_mm_ops.h 2025-08-14T21:48:54.1712666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm.h 2025-08-14T21:48:54.1717624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_cpu_dispatch.h 2025-08-14T21:48:54.1721930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_cuda_dispatch.h 2025-08-14T21:48:54.1726505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_native.h 2025-08-14T21:48:54.1731087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_scaled_mm_ops.h 2025-08-14T21:48:54.1735379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward.h 2025-08-14T21:48:54.1739881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.1744204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_cpu_dispatch.h 2025-08-14T21:48:54.1748997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_cuda_dispatch.h 2025-08-14T21:48:54.1753241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_native.h 2025-08-14T21:48:54.1757720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_segment_reduce_backward_ops.h 2025-08-14T21:48:54.1762030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor.h 2025-08-14T21:48:54.1766264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.1770223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor_native.h 2025-08-14T21:48:54.1774640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_shape_as_tensor_ops.h 2025-08-14T21:48:54.1778867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward.h 2025-08-14T21:48:54.1783200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.1787431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_cpu_dispatch.h 2025-08-14T21:48:54.1792469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_cuda_dispatch.h 2025-08-14T21:48:54.1796991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_native.h 2025-08-14T21:48:54.1801494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_backward_ops.h 2025-08-14T21:48:54.1806118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward.h 2025-08-14T21:48:54.1810260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_cpu_dispatch.h 2025-08-14T21:48:54.1815748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_cuda_dispatch.h 2025-08-14T21:48:54.1820266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_native.h 2025-08-14T21:48:54.1824818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_slow_conv2d_forward_ops.h 2025-08-14T21:48:54.1829050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw.h 2025-08-14T21:48:54.1833602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.1837903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw_native.h 2025-08-14T21:48:54.1842397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_draw_ops.h 2025-08-14T21:48:54.1847266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff.h 2025-08-14T21:48:54.1853550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.1856246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff_native.h 2025-08-14T21:48:54.1861374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_ff_ops.h 2025-08-14T21:48:54.1866262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state.h 2025-08-14T21:48:54.1872356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.1875123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state_native.h 2025-08-14T21:48:54.1879441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_initialize_state_ops.h 2025-08-14T21:48:54.1885086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble.h 2025-08-14T21:48:54.1888540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.1892898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble_native.h 2025-08-14T21:48:54.1897845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sobol_engine_scramble_ops.h 2025-08-14T21:48:54.1901633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax.h 2025-08-14T21:48:54.1905591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data.h 2025-08-14T21:48:54.1910863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:54.1916836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_cpu_dispatch.h 2025-08-14T21:48:54.1919658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_cuda_dispatch.h 2025-08-14T21:48:54.1924625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_meta.h 2025-08-14T21:48:54.1929608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_meta_dispatch.h 2025-08-14T21:48:54.1935310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_native.h 2025-08-14T21:48:54.1937975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_backward_data_ops.h 2025-08-14T21:48:54.1942534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:54.1948458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_cpu_dispatch.h 2025-08-14T21:48:54.1951442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_cuda_dispatch.h 2025-08-14T21:48:54.1955746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_meta.h 2025-08-14T21:48:54.1961046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_meta_dispatch.h 2025-08-14T21:48:54.1964188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_native.h 2025-08-14T21:48:54.1968912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_softmax_ops.h 2025-08-14T21:48:54.1973767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm.h 2025-08-14T21:48:54.1977461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.1981626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm_native.h 2025-08-14T21:48:54.1986413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_addmm_ops.h 2025-08-14T21:48:54.1990000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to.h 2025-08-14T21:48:54.1994581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy.h 2025-08-14T21:48:54.1999402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:54.2005523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2008656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_native.h 2025-08-14T21:48:54.2013227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_copy_ops.h 2025-08-14T21:48:54.2017065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_native.h 2025-08-14T21:48:54.2021614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_broadcast_to_ops.h 2025-08-14T21:48:54.2026767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe.h 2025-08-14T21:48:54.2031333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.2036186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_native.h 2025-08-14T21:48:54.2040575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_ops.h 2025-08-14T21:48:54.2044962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe.h 2025-08-14T21:48:54.2049957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.2054224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_native.h 2025-08-14T21:48:54.2058588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_ops.h 2025-08-14T21:48:54.2063339Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe.h 2025-08-14T21:48:54.2068642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.2073048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_native.h 2025-08-14T21:48:54.2078040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_ops.h 2025-08-14T21:48:54.2082670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims.h 2025-08-14T21:48:54.2087535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2091926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_native.h 2025-08-14T21:48:54.2096425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_ops.h 2025-08-14T21:48:54.2101015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe.h 2025-08-14T21:48:54.2105925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.2110185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_native.h 2025-08-14T21:48:54.2114528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_unsafe_ops.h 2025-08-14T21:48:54.2118951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims.h 2025-08-14T21:48:54.2123485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors.h 2025-08-14T21:48:54.2127958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2132599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h 2025-08-14T21:48:54.2137638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_native.h 2025-08-14T21:48:54.2142018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors_ops.h 2025-08-14T21:48:54.2146816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2152058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_meta_dispatch.h 2025-08-14T21:48:54.2156625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_native.h 2025-08-14T21:48:54.2161055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_coo_tensor_with_dims_ops.h 2025-08-14T21:48:54.2165424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe.h 2025-08-14T21:48:54.2169903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.2174439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_native.h 2025-08-14T21:48:54.2179482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csc_tensor_unsafe_ops.h 2025-08-14T21:48:54.2183629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod.h 2025-08-14T21:48:54.2188232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2192376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod_native.h 2025-08-14T21:48:54.2196547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_prod_ops.h 2025-08-14T21:48:54.2200588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum.h 2025-08-14T21:48:54.2205963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2210111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum_native.h 2025-08-14T21:48:54.2214303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_sum_ops.h 2025-08-14T21:48:54.2218453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe.h 2025-08-14T21:48:54.2223360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.2227313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_native.h 2025-08-14T21:48:54.2232110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_csr_tensor_unsafe_ops.h 2025-08-14T21:48:54.2236129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax.h 2025-08-14T21:48:54.2240433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data.h 2025-08-14T21:48:54.2245348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2249427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data_native.h 2025-08-14T21:48:54.2253615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_backward_data_ops.h 2025-08-14T21:48:54.2258484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2262776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.2266919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_native.h 2025-08-14T21:48:54.2271169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_log_softmax_ops.h 2025-08-14T21:48:54.2275613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection.h 2025-08-14T21:48:54.2280212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2284399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection_native.h 2025-08-14T21:48:54.2288859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mask_projection_ops.h 2025-08-14T21:48:54.2293155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm.h 2025-08-14T21:48:54.2297386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.2301684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_native.h 2025-08-14T21:48:54.2307434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_ops.h 2025-08-14T21:48:54.2311607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl.h 2025-08-14T21:48:54.2315891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward.h 2025-08-14T21:48:54.2320113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_native.h 2025-08-14T21:48:54.2324469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_ops.h 2025-08-14T21:48:54.2328749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_native.h 2025-08-14T21:48:54.2333245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_mm_reduce_impl_ops.h 2025-08-14T21:48:54.2337437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm.h 2025-08-14T21:48:54.2341718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm_cuda_dispatch.h 2025-08-14T21:48:54.2346127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm_native.h 2025-08-14T21:48:54.2351120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_addmm_ops.h 2025-08-14T21:48:54.2355441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply.h 2025-08-14T21:48:54.2359804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_cuda_dispatch.h 2025-08-14T21:48:54.2364160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense.h 2025-08-14T21:48:54.2368442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_cuda_dispatch.h 2025-08-14T21:48:54.2373250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_native.h 2025-08-14T21:48:54.2377312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_dense_ops.h 2025-08-14T21:48:54.2381579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_native.h 2025-08-14T21:48:54.2386135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_apply_ops.h 2025-08-14T21:48:54.2390892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear.h 2025-08-14T21:48:54.2395531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear_cuda_dispatch.h 2025-08-14T21:48:54.2399793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear_native.h 2025-08-14T21:48:54.2404892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_linear_ops.h 2025-08-14T21:48:54.2409671Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm.h 2025-08-14T21:48:54.2414083Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm_cuda_dispatch.h 2025-08-14T21:48:54.2418666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm_native.h 2025-08-14T21:48:54.2423098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_mm_ops.h 2025-08-14T21:48:54.2427781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile.h 2025-08-14T21:48:54.2432085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile_cuda_dispatch.h 2025-08-14T21:48:54.2436467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile_native.h 2025-08-14T21:48:54.2440768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_semi_structured_tile_ops.h 2025-08-14T21:48:54.2445429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax.h 2025-08-14T21:48:54.2449719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data.h 2025-08-14T21:48:54.2455026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2459709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data_native.h 2025-08-14T21:48:54.2464449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_backward_data_ops.h 2025-08-14T21:48:54.2469041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2473857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.2478033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_native.h 2025-08-14T21:48:54.2482276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_softmax_ops.h 2025-08-14T21:48:54.2486426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul.h 2025-08-14T21:48:54.2491069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2495886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul_native.h 2025-08-14T21:48:54.2500160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sparse_matmul_ops.h 2025-08-14T21:48:54.2504588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum.h 2025-08-14T21:48:54.2509192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward.h 2025-08-14T21:48:54.2513921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2519065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward_native.h 2025-08-14T21:48:54.2524065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_backward_ops.h 2025-08-14T21:48:54.2529217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2533963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.2538758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_native.h 2025-08-14T21:48:54.2544392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_sparse_sum_ops.h 2025-08-14T21:48:54.2549058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags.h 2025-08-14T21:48:54.2554108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2558684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_cpu_dispatch.h 2025-08-14T21:48:54.2563514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_native.h 2025-08-14T21:48:54.2567992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spdiags_ops.h 2025-08-14T21:48:54.2573627Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spsolve.h 2025-08-14T21:48:54.2578087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spsolve_native.h 2025-08-14T21:48:54.2582666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_spsolve_ops.h 2025-08-14T21:48:54.2593846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack.h 2025-08-14T21:48:54.2594576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2596278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_cpu_dispatch.h 2025-08-14T21:48:54.2600757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_native.h 2025-08-14T21:48:54.2604706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_stack_ops.h 2025-08-14T21:48:54.2609762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma.h 2025-08-14T21:48:54.2614283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2618230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_cpu_dispatch.h 2025-08-14T21:48:54.2622941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_cuda_dispatch.h 2025-08-14T21:48:54.2627495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad.h 2025-08-14T21:48:54.2632250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2636623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_cpu_dispatch.h 2025-08-14T21:48:54.2641084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_cuda_dispatch.h 2025-08-14T21:48:54.2645455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_native.h 2025-08-14T21:48:54.2650002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_grad_ops.h 2025-08-14T21:48:54.2654342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_native.h 2025-08-14T21:48:54.2658958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_standard_gamma_ops.h 2025-08-14T21:48:54.2663647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults.h 2025-08-14T21:48:54.2668105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.2674697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults_native.h 2025-08-14T21:48:54.2678338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_ambiguous_defaults_ops.h 2025-08-14T21:48:54.2682729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch.h 2025-08-14T21:48:54.2687584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2692359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.2696572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_native.h 2025-08-14T21:48:54.2700809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_ops.h 2025-08-14T21:48:54.2706073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view.h 2025-08-14T21:48:54.2711314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2715886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy.h 2025-08-14T21:48:54.2720422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:54.2731998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2733031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_native.h 2025-08-14T21:48:54.2735165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_ops.h 2025-08-14T21:48:54.2739751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_native.h 2025-08-14T21:48:54.2878079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_ops.h 2025-08-14T21:48:54.2882124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor.h 2025-08-14T21:48:54.2888147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.2892676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor_native.h 2025-08-14T21:48:54.2897739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_check_tensor_ops.h 2025-08-14T21:48:54.2902434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback.h 2025-08-14T21:48:54.2906923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2912162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_cpu_dispatch.h 2025-08-14T21:48:54.2916722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_native.h 2025-08-14T21:48:54.2921278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_functorch_fallback_ops.h 2025-08-14T21:48:54.2925896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist.h 2025-08-14T21:48:54.2930847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2935304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_cpu_dispatch.h 2025-08-14T21:48:54.2940038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_native.h 2025-08-14T21:48:54.2944694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_filled_intlist_ops.h 2025-08-14T21:48:54.2949098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist.h 2025-08-14T21:48:54.2953863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2958254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_cpu_dispatch.h 2025-08-14T21:48:54.2962573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_native.h 2025-08-14T21:48:54.2967193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_floatlist_ops.h 2025-08-14T21:48:54.2971703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist.h 2025-08-14T21:48:54.2976367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.2980617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_cpu_dispatch.h 2025-08-14T21:48:54.2984925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_native.h 2025-08-14T21:48:54.2989581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_optional_intlist_ops.h 2025-08-14T21:48:54.2994065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize.h 2025-08-14T21:48:54.2998796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3003026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize_native.h 2025-08-14T21:48:54.3007511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_parallel_materialize_ops.h 2025-08-14T21:48:54.3011877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul.h 2025-08-14T21:48:54.3016654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.3022408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul_native.h 2025-08-14T21:48:54.3026687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_serialization_subcmul_ops.h 2025-08-14T21:48:54.3031824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default.h 2025-08-14T21:48:54.3036190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.3040592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default_native.h 2025-08-14T21:48:54.3044999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_string_default_ops.h 2025-08-14T21:48:54.3050158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd.h 2025-08-14T21:48:54.3054443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3058981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd_native.h 2025-08-14T21:48:54.3063373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_test_warn_in_autograd_ops.h 2025-08-14T21:48:54.3068894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward.h 2025-08-14T21:48:54.3073281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.3078547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_native.h 2025-08-14T21:48:54.3082967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_ops.h 2025-08-14T21:48:54.3087630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward.h 2025-08-14T21:48:54.3092658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.3097033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_native.h 2025-08-14T21:48:54.3101995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_ops.h 2025-08-14T21:48:54.3106413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell.h 2025-08-14T21:48:54.3111096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward.h 2025-08-14T21:48:54.3116335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3120734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_cuda_dispatch.h 2025-08-14T21:48:54.3125580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_native.h 2025-08-14T21:48:54.3129722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_backward_ops.h 2025-08-14T21:48:54.3135657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3140435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_cuda_dispatch.h 2025-08-14T21:48:54.3144799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_native.h 2025-08-14T21:48:54.3149591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_gru_cell_ops.h 2025-08-14T21:48:54.3154464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell.h 2025-08-14T21:48:54.3159541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward.h 2025-08-14T21:48:54.3164267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.3168963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl.h 2025-08-14T21:48:54.3173766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3178633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h 2025-08-14T21:48:54.3183217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_native.h 2025-08-14T21:48:54.3187608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_ops.h 2025-08-14T21:48:54.3192044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_native.h 2025-08-14T21:48:54.3196310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_ops.h 2025-08-14T21:48:54.3201085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3205695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_cuda_dispatch.h 2025-08-14T21:48:54.3210164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_native.h 2025-08-14T21:48:54.3214513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_thnn_fused_lstm_cell_ops.h 2025-08-14T21:48:54.3218901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy.h 2025-08-14T21:48:54.3223247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3227865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy_native.h 2025-08-14T21:48:54.3232582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_copy_ops.h 2025-08-14T21:48:54.3236760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu.h 2025-08-14T21:48:54.3241518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.3246756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu_native.h 2025-08-14T21:48:54.3251071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_cpu_ops.h 2025-08-14T21:48:54.3255786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense.h 2025-08-14T21:48:54.3260553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3265420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense_native.h 2025-08-14T21:48:54.3269905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_dense_ops.h 2025-08-14T21:48:54.3274731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse.h 2025-08-14T21:48:54.3279438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc.h 2025-08-14T21:48:54.3284134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3288954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_cpu_dispatch.h 2025-08-14T21:48:54.3293728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_cuda_dispatch.h 2025-08-14T21:48:54.3298355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_native.h 2025-08-14T21:48:54.3303517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsc_ops.h 2025-08-14T21:48:54.3308843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr.h 2025-08-14T21:48:54.3314242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3319326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_cpu_dispatch.h 2025-08-14T21:48:54.3324634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_cuda_dispatch.h 2025-08-14T21:48:54.3329657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_native.h 2025-08-14T21:48:54.3335047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_bsr_ops.h 2025-08-14T21:48:54.3339477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3343434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_cpu_dispatch.h 2025-08-14T21:48:54.3347639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc.h 2025-08-14T21:48:54.3351865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3356028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_cpu_dispatch.h 2025-08-14T21:48:54.3360188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_cuda_dispatch.h 2025-08-14T21:48:54.3364478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_native.h 2025-08-14T21:48:54.3368746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csc_ops.h 2025-08-14T21:48:54.3373415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr.h 2025-08-14T21:48:54.3377768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3381972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_cpu_dispatch.h 2025-08-14T21:48:54.3386625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_cuda_dispatch.h 2025-08-14T21:48:54.3390947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_native.h 2025-08-14T21:48:54.3395806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_csr_ops.h 2025-08-14T21:48:54.3399897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_cuda_dispatch.h 2025-08-14T21:48:54.3404071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_native.h 2025-08-14T21:48:54.3408110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_ops.h 2025-08-14T21:48:54.3412122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured.h 2025-08-14T21:48:54.3416294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured_cuda_dispatch.h 2025-08-14T21:48:54.3420423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured_native.h 2025-08-14T21:48:54.3424715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_to_sparse_semi_structured_ops.h 2025-08-14T21:48:54.3429025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd.h 2025-08-14T21:48:54.3433179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3437165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_cpu_dispatch.h 2025-08-14T21:48:54.3441421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_cuda_dispatch.h 2025-08-14T21:48:54.3445652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_native.h 2025-08-14T21:48:54.3449918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transformer_encoder_layer_fwd_ops.h 2025-08-14T21:48:54.3454068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv.h 2025-08-14T21:48:54.3457986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3462136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_cpu_dispatch.h 2025-08-14T21:48:54.3466319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_cuda_dispatch.h 2025-08-14T21:48:54.3470763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_native.h 2025-08-14T21:48:54.3476686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_transform_bias_rescale_qkv_ops.h 2025-08-14T21:48:54.3480923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear.h 2025-08-14T21:48:54.3485532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:54.3489582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3493953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_native.h 2025-08-14T21:48:54.3498167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_trilinear_ops.h 2025-08-14T21:48:54.3502565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention.h 2025-08-14T21:48:54.3506923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3511132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_cuda_dispatch.h 2025-08-14T21:48:54.3515708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_native.h 2025-08-14T21:48:54.3520117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_multi_head_attention_ops.h 2025-08-14T21:48:54.3524698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention.h 2025-08-14T21:48:54.3529131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3533919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_cuda_dispatch.h 2025-08-14T21:48:54.3538079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_native.h 2025-08-14T21:48:54.3542449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_triton_scaled_dot_attention_ops.h 2025-08-14T21:48:54.3547122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique.h 2025-08-14T21:48:54.3550996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2.h 2025-08-14T21:48:54.3555261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3559498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_cpu_dispatch.h 2025-08-14T21:48:54.3563836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_cuda_dispatch.h 2025-08-14T21:48:54.3571940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_native.h 2025-08-14T21:48:54.3574436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique2_ops.h 2025-08-14T21:48:54.3579122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3583571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_cpu_dispatch.h 2025-08-14T21:48:54.3588503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_cuda_dispatch.h 2025-08-14T21:48:54.3593016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_native.h 2025-08-14T21:48:54.3597465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unique_ops.h 2025-08-14T21:48:54.3602000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual.h 2025-08-14T21:48:54.3606569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.3610856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual_native.h 2025-08-14T21:48:54.3916288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unpack_dual_ops.h 2025-08-14T21:48:54.3920133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index.h 2025-08-14T21:48:54.3924746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3928787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_native.h 2025-08-14T21:48:54.3932569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_ops.h 2025-08-14T21:48:54.3936617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put.h 2025-08-14T21:48:54.3941022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3945265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put_native.h 2025-08-14T21:48:54.3949570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_index_put_ops.h 2025-08-14T21:48:54.3953658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index.h 2025-08-14T21:48:54.3958042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3962132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_native.h 2025-08-14T21:48:54.3966705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_ops.h 2025-08-14T21:48:54.3970881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate.h 2025-08-14T21:48:54.3975186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3979160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_native.h 2025-08-14T21:48:54.3983709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_ops.h 2025-08-14T21:48:54.3988182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view.h 2025-08-14T21:48:54.3992354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.3997472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view_native.h 2025-08-14T21:48:54.4001736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_unsafe_view_ops.h 2025-08-14T21:48:54.4006337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa.h 2025-08-14T21:48:54.4010748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward.h 2025-08-14T21:48:54.4015863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:54.4020471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cpu_dispatch.h 2025-08-14T21:48:54.4024915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cuda_dispatch.h 2025-08-14T21:48:54.4029482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta.h 2025-08-14T21:48:54.4033731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta_dispatch.h 2025-08-14T21:48:54.4038813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_native.h 2025-08-14T21:48:54.4043110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_ops.h 2025-08-14T21:48:54.4048796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:54.4052461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.4057054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_cpu_dispatch.h 2025-08-14T21:48:54.4061660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_cuda_dispatch.h 2025-08-14T21:48:54.4066797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_meta.h 2025-08-14T21:48:54.4070762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_meta_dispatch.h 2025-08-14T21:48:54.4075196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_native.h 2025-08-14T21:48:54.4080152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bicubic2d_aa_ops.h 2025-08-14T21:48:54.4083787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa.h 2025-08-14T21:48:54.4151493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward.h 2025-08-14T21:48:54.4152238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:54.4152613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cpu_dispatch.h 2025-08-14T21:48:54.4153009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cuda_dispatch.h 2025-08-14T21:48:54.4153347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta.h 2025-08-14T21:48:54.4153818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta_dispatch.h 2025-08-14T21:48:54.4154177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_native.h 2025-08-14T21:48:54.4154613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_ops.h 2025-08-14T21:48:54.4155117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:54.4155656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.4155992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_cpu_dispatch.h 2025-08-14T21:48:54.4156412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_cuda_dispatch.h 2025-08-14T21:48:54.4156719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_meta.h 2025-08-14T21:48:54.4157148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_meta_dispatch.h 2025-08-14T21:48:54.4160249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_native.h 2025-08-14T21:48:54.4164617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_bilinear2d_aa_ops.h 2025-08-14T21:48:54.4168996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d.h 2025-08-14T21:48:54.4173434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward.h 2025-08-14T21:48:54.4178212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:54.4182795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cpu_dispatch.h 2025-08-14T21:48:54.4187051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cuda_dispatch.h 2025-08-14T21:48:54.4191416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta.h 2025-08-14T21:48:54.4195739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta_dispatch.h 2025-08-14T21:48:54.4200444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_native.h 2025-08-14T21:48:54.4205180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_backward_ops.h 2025-08-14T21:48:54.4209928Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:54.4214176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.4219356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_cpu_dispatch.h 2025-08-14T21:48:54.4223945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_cuda_dispatch.h 2025-08-14T21:48:54.4228581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_meta.h 2025-08-14T21:48:54.4232941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_meta_dispatch.h 2025-08-14T21:48:54.4237521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_native.h 2025-08-14T21:48:54.4243402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact1d_ops.h 2025-08-14T21:48:54.4247299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d.h 2025-08-14T21:48:54.4251642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward.h 2025-08-14T21:48:54.4255970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:54.4260156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cpu_dispatch.h 2025-08-14T21:48:54.4265068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cuda_dispatch.h 2025-08-14T21:48:54.4269636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta.h 2025-08-14T21:48:54.4273997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta_dispatch.h 2025-08-14T21:48:54.4278437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_native.h 2025-08-14T21:48:54.4282622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_backward_ops.h 2025-08-14T21:48:54.4287479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:54.4292568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.4297119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_cpu_dispatch.h 2025-08-14T21:48:54.4302366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_cuda_dispatch.h 2025-08-14T21:48:54.4306641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_meta.h 2025-08-14T21:48:54.4310952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_meta_dispatch.h 2025-08-14T21:48:54.4315316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_native.h 2025-08-14T21:48:54.4319499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact2d_ops.h 2025-08-14T21:48:54.4323687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d.h 2025-08-14T21:48:54.4327994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward.h 2025-08-14T21:48:54.4332426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:54.4336688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cpu_dispatch.h 2025-08-14T21:48:54.4342942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cuda_dispatch.h 2025-08-14T21:48:54.4363954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta.h 2025-08-14T21:48:54.4368372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta_dispatch.h 2025-08-14T21:48:54.4372564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_native.h 2025-08-14T21:48:54.4376774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_backward_ops.h 2025-08-14T21:48:54.4381656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:54.4385867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.4390126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_cpu_dispatch.h 2025-08-14T21:48:54.4394720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_cuda_dispatch.h 2025-08-14T21:48:54.4399178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_meta.h 2025-08-14T21:48:54.4403919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_meta_dispatch.h 2025-08-14T21:48:54.4408587Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_native.h 2025-08-14T21:48:54.4412810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_upsample_nearest_exact3d_ops.h 2025-08-14T21:48:54.4417333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss.h 2025-08-14T21:48:54.4421248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss_cuda_dispatch.h 2025-08-14T21:48:54.4425213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss_native.h 2025-08-14T21:48:54.4429595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_ctc_loss_ops.h 2025-08-14T21:48:54.4433957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight.h 2025-08-14T21:48:54.4438222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.4442382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_native.h 2025-08-14T21:48:54.4446521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_ops.h 2025-08-14T21:48:54.4450759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices.h 2025-08-14T21:48:54.4455133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_cpu_dispatch.h 2025-08-14T21:48:54.4459338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_cuda_dispatch.h 2025-08-14T21:48:54.4464159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_native.h 2025-08-14T21:48:54.4468525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_compressed_sparse_indices_ops.h 2025-08-14T21:48:54.4473109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args.h 2025-08-14T21:48:54.4477728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.4481947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_native.h 2025-08-14T21:48:54.4486265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_ops.h 2025-08-14T21:48:54.4490466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args.h 2025-08-14T21:48:54.4494960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.4499375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_native.h 2025-08-14T21:48:54.4503779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_ops.h 2025-08-14T21:48:54.4508143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args.h 2025-08-14T21:48:54.4513307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.4517838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_native.h 2025-08-14T21:48:54.4522070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_ops.h 2025-08-14T21:48:54.4526231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args.h 2025-08-14T21:48:54.4530804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.4534886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_native.h 2025-08-14T21:48:54.4539174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_coo_tensor_args_ops.h 2025-08-14T21:48:54.4543317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args.h 2025-08-14T21:48:54.4548051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.4552390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_native.h 2025-08-14T21:48:54.4556673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csc_tensor_args_ops.h 2025-08-14T21:48:54.4561441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args.h 2025-08-14T21:48:54.4565896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.4570203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_native.h 2025-08-14T21:48:54.4574366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_validate_sparse_csr_tensor_args_ops.h 2025-08-14T21:48:54.4578425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values.h 2025-08-14T21:48:54.4582464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy.h 2025-08-14T21:48:54.4586674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_compositeexplicitautogradnonfunctional_dispatch.h 2025-08-14T21:48:54.4591005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.4595236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_native.h 2025-08-14T21:48:54.4599605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_copy_ops.h 2025-08-14T21:48:54.4603860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_native.h 2025-08-14T21:48:54.4608508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_values_ops.h 2025-08-14T21:48:54.4614494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version.h 2025-08-14T21:48:54.4619128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.4623785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version_native.h 2025-08-14T21:48:54.4628318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_version_ops.h 2025-08-14T21:48:54.4633052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm.h 2025-08-14T21:48:54.4637692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_cuda_dispatch.h 2025-08-14T21:48:54.4642252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu.h 2025-08-14T21:48:54.4646736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_cpu_dispatch.h 2025-08-14T21:48:54.4651473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_native.h 2025-08-14T21:48:54.4655909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_ops.h 2025-08-14T21:48:54.4660833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_native.h 2025-08-14T21:48:54.4665451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_ops.h 2025-08-14T21:48:54.4670381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros.h 2025-08-14T21:48:54.4674706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_native.h 2025-08-14T21:48:54.4679260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros_ops.h 2025-08-14T21:48:54.4684554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm.h 2025-08-14T21:48:54.4690210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_cpu_dispatch.h 2025-08-14T21:48:54.4695166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_cuda_dispatch.h 2025-08-14T21:48:54.4699857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_native.h 2025-08-14T21:48:54.4704845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_int8pack_mm_ops.h 2025-08-14T21:48:54.4709356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm.h 2025-08-14T21:48:54.4713789Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.4718311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward.h 2025-08-14T21:48:54.4722979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.4727360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward_native.h 2025-08-14T21:48:54.4732631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_differentiable_backward_ops.h 2025-08-14T21:48:54.4736846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface.h 2025-08-14T21:48:54.4741314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward.h 2025-08-14T21:48:54.4746401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.4750853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_cpu_dispatch.h 2025-08-14T21:48:54.4754938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_cuda_dispatch.h 2025-08-14T21:48:54.4759282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_native.h 2025-08-14T21:48:54.4763903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_backward_ops.h 2025-08-14T21:48:54.4768151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_compositeexplicitautograd_dispatch.h 2025-08-14T21:48:54.4772525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_cpu_dispatch.h 2025-08-14T21:48:54.4776732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_cuda_dispatch.h 2025-08-14T21:48:54.4780889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_native.h 2025-08-14T21:48:54.4785055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_interface_ops.h 2025-08-14T21:48:54.4789263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_native.h 2025-08-14T21:48:54.4793805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_weight_norm_ops.h 2025-08-14T21:48:54.4798027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack.h 2025-08-14T21:48:54.4802328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.4806282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack_native.h 2025-08-14T21:48:54.4810342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_linear_prepack_ops.h 2025-08-14T21:48:54.4814541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked.h 2025-08-14T21:48:54.4819030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h 2025-08-14T21:48:54.4823314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_native.h 2025-08-14T21:48:54.4827799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_ops.h 2025-08-14T21:48:54.5093919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\quantized\QTensorImpl.h 2025-08-14T21:48:54.5097828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\quantized\Quantizer.h 2025-08-14T21:48:54.5107255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\CachingHostAllocator.h 2025-08-14T21:48:54.5111970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\PinnedMemoryAllocator.h 2025-08-14T21:48:54.5115762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUContext.h 2025-08-14T21:48:54.5120403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUDevice.h 2025-08-14T21:48:54.5129046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUEvent.h 2025-08-14T21:48:54.5132972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\XPUGeneratorImpl.h 2025-08-14T21:48:54.5141427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\ATen\xpu\detail\XPUHooks.h 2025-08-14T21:48:54.5156477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\alignment.h 2025-08-14T21:48:54.5160202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Allocator.h 2025-08-14T21:48:54.5164292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\AllocatorConfig.h 2025-08-14T21:48:54.5167879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\AutogradState.h 2025-08-14T21:48:54.5268729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Backend.h 2025-08-14T21:48:54.5272420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CachingDeviceAllocator.h 2025-08-14T21:48:54.5276167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CompileTimeFunctionPointer.h 2025-08-14T21:48:54.5279911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\ConstantSymNodeImpl.h 2025-08-14T21:48:54.5283764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Contiguity.h 2025-08-14T21:48:54.5287951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CopyBytes.h 2025-08-14T21:48:54.5292097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\CPUAllocator.h 2025-08-14T21:48:54.5295816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DefaultDtype.h 2025-08-14T21:48:54.5299607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DefaultTensorOptions.h 2025-08-14T21:48:54.5303259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Device.h 2025-08-14T21:48:54.5306832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DeviceArray.h 2025-08-14T21:48:54.5310638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DeviceGuard.h 2025-08-14T21:48:54.5314369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DeviceType.h 2025-08-14T21:48:54.5318355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DispatchKey.h 2025-08-14T21:48:54.5322406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DispatchKeySet.h 2025-08-14T21:48:54.5326335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\DynamicCast.h 2025-08-14T21:48:54.5415764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Event.h 2025-08-14T21:48:54.5419754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\GeneratorImpl.h 2025-08-14T21:48:54.5423551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\GradMode.h 2025-08-14T21:48:54.5427478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\InferenceMode.h 2025-08-14T21:48:54.5432100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Layout.h 2025-08-14T21:48:54.5435925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\MemoryFormat.h 2025-08-14T21:48:54.5439801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\OptionalRef.h 2025-08-14T21:48:54.5443667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\PyHandleCache.h 2025-08-14T21:48:54.5448229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\QEngine.h 2025-08-14T21:48:54.5452240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\QScheme.h 2025-08-14T21:48:54.5456194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\RefcountedDeleter.h 2025-08-14T21:48:54.5460024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SafePyObject.h 2025-08-14T21:48:54.5468473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Scalar.h 2025-08-14T21:48:54.5472420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\ScalarType.h 2025-08-14T21:48:54.5476528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\ScalarTypeToTypeMeta.h 2025-08-14T21:48:54.5480656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Storage.h 2025-08-14T21:48:54.5484250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\StorageImpl.h 2025-08-14T21:48:54.5488273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\Stream.h 2025-08-14T21:48:54.5491863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\StreamGuard.h 2025-08-14T21:48:54.5495672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymbolicShapeMeta.h 2025-08-14T21:48:54.5499444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymBool.h 2025-08-14T21:48:54.5502994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymFloat.h 2025-08-14T21:48:54.5506691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymInt.h 2025-08-14T21:48:54.5510454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymIntArrayRef.h 2025-08-14T21:48:54.5518620Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\SymNodeImpl.h 2025-08-14T21:48:54.5522341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\TensorImpl.h 2025-08-14T21:48:54.5527158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\TensorOptions.h 2025-08-14T21:48:54.5531046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\thread_pool.h 2025-08-14T21:48:54.5535327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\UndefinedTensorImpl.h 2025-08-14T21:48:54.5539520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\WrapDimMinimal.h 2025-08-14T21:48:54.5547761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\alloc_cpu.h 2025-08-14T21:48:54.5551661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\COW.h 2025-08-14T21:48:54.5555321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\COWDeleter.h 2025-08-14T21:48:54.5559670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\DeviceGuardImplInterface.h 2025-08-14T21:48:54.5568253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\FakeGuardImpl.h 2025-08-14T21:48:54.5572107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\GPUTrace.h 2025-08-14T21:48:54.5575901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\HermeticPyObjectTLS.h 2025-08-14T21:48:54.5579605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\InlineDeviceGuard.h 2025-08-14T21:48:54.5583382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\InlineEvent.h 2025-08-14T21:48:54.5587236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\InlineStreamGuard.h 2025-08-14T21:48:54.5591193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\LocalDispatchKeySet.h 2025-08-14T21:48:54.5601465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PyInterpreter.h 2025-08-14T21:48:54.5602333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PyInterpreterHooks.h 2025-08-14T21:48:54.5604149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PyObjectSlot.h 2025-08-14T21:48:54.5633799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\PythonDispatcherTLS.h 2025-08-14T21:48:54.5634485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\SizesAndStrides.h 2025-08-14T21:48:54.5635160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\TorchDispatchModeTLS.h 2025-08-14T21:48:54.5635829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\core\impl\VirtualGuardImpl.h 2025-08-14T21:48:54.5636464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAAlgorithm.h 2025-08-14T21:48:54.5637095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAAllocatorConfig.h 2025-08-14T21:48:54.5639369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDACachingAllocator.h 2025-08-14T21:48:54.5642994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDADeviceAssertion.h 2025-08-14T21:48:54.5651414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDADeviceAssertionHost.h 2025-08-14T21:48:54.5655259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAException.h 2025-08-14T21:48:54.5658988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAFunctions.h 2025-08-14T21:48:54.5662644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAGraphsC10Utils.h 2025-08-14T21:48:54.5666634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAGuard.h 2025-08-14T21:48:54.5670647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAMacros.h 2025-08-14T21:48:54.5675040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAMathCompat.h 2025-08-14T21:48:54.5678951Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAMiscFunctions.h 2025-08-14T21:48:54.5682806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\CUDAStream.h 2025-08-14T21:48:54.5686527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\driver_api.h 2025-08-14T21:48:54.5694278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\impl\CUDAGuardImpl.h 2025-08-14T21:48:54.5697896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\cuda\impl\CUDATest.h 2025-08-14T21:48:54.5705758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\macros\cmake_macros.h 2025-08-14T21:48:54.5709788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\macros\Export.h 2025-08-14T21:48:54.5713263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\macros\Macros.h 2025-08-14T21:48:54.5720936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\atomic.h 2025-08-14T21:48:54.5724301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\common.h 2025-08-14T21:48:54.5727952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\expm1f.h 2025-08-14T21:48:54.5731392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\indexing.h 2025-08-14T21:48:54.5734920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\random.h 2025-08-14T21:48:54.5738495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\reduction_utils.h 2025-08-14T21:48:54.5746353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\special_math.h 2025-08-14T21:48:54.5750564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\metal\utils.h 2025-08-14T21:48:54.5758270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\mobile\CPUCachingAllocator.h 2025-08-14T21:48:54.5762100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\mobile\CPUProfilingAllocator.h 2025-08-14T21:48:54.5773046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\test\util\complex_math_test_common.h 2025-08-14T21:48:54.5777031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\test\util\complex_test_common.h 2025-08-14T21:48:54.5780683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\test\util\Macros.h 2025-08-14T21:48:54.5789287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\AbortHandler.h 2025-08-14T21:48:54.5792987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\accumulate.h 2025-08-14T21:48:54.5796552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\AlignOf.h 2025-08-14T21:48:54.5800117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ApproximateClock.h 2025-08-14T21:48:54.5808396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Array.h 2025-08-14T21:48:54.5812132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ArrayRef.h 2025-08-14T21:48:54.5815625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Backtrace.h 2025-08-14T21:48:54.5819308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\BFloat16-inl.h 2025-08-14T21:48:54.5823101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\BFloat16-math.h 2025-08-14T21:48:54.5826693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\BFloat16.h 2025-08-14T21:48:54.5830352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\bits.h 2025-08-14T21:48:54.5833881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Bitset.h 2025-08-14T21:48:54.5837580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\bit_cast.h 2025-08-14T21:48:54.5841074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\C++17.h 2025-08-14T21:48:54.5844742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\CallOnce.h 2025-08-14T21:48:54.5848320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\complex.h 2025-08-14T21:48:54.5851932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\complex_math.h 2025-08-14T21:48:54.5855783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\complex_utils.h 2025-08-14T21:48:54.5859448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ConstexprCrc.h 2025-08-14T21:48:54.5863070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\copysign.h 2025-08-14T21:48:54.5866729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\DeadlockDetection.h 2025-08-14T21:48:54.5870553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Deprecated.h 2025-08-14T21:48:54.5874209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\DimVector.h 2025-08-14T21:48:54.5878355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\DynamicCounter.h 2025-08-14T21:48:54.5887141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Enumerate.h 2025-08-14T21:48:54.5891243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\env.h 2025-08-14T21:48:54.5895044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\error.h 2025-08-14T21:48:54.5898663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Exception.h 2025-08-14T21:48:54.5917590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ExclusivelyOwned.h 2025-08-14T21:48:54.5921766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ExclusivelyOwnedTensorTraits.h 2025-08-14T21:48:54.5927387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\FbcodeMaps.h 2025-08-14T21:48:54.5929112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Flags.h 2025-08-14T21:48:54.5933997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\flat_hash_map.h 2025-08-14T21:48:54.5938022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float4_e2m1fn_x2.h 2025-08-14T21:48:54.5941796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fn-inl.h 2025-08-14T21:48:54.5951225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fn.h 2025-08-14T21:48:54.5955128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fnuz-inl.h 2025-08-14T21:48:54.5959990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e4m3fnuz.h 2025-08-14T21:48:54.5962986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2-inl.h 2025-08-14T21:48:54.5966717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2.h 2025-08-14T21:48:54.5970525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2fnuz-inl.h 2025-08-14T21:48:54.5974401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e5m2fnuz.h 2025-08-14T21:48:54.5978244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e8m0fnu-inl.h 2025-08-14T21:48:54.5982270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Float8_e8m0fnu.h 2025-08-14T21:48:54.5991054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\floating_point_utils.h 2025-08-14T21:48:54.5994855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\FunctionRef.h 2025-08-14T21:48:54.5998594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Gauge.h 2025-08-14T21:48:54.6002257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\generic_math.h 2025-08-14T21:48:54.6006038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Half-inl.h 2025-08-14T21:48:54.6009541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Half.h 2025-08-14T21:48:54.6013219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\hash.h 2025-08-14T21:48:54.6016848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\IdWrapper.h 2025-08-14T21:48:54.6020684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\int128.h 2025-08-14T21:48:54.6024610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\IntrusiveList.h 2025-08-14T21:48:54.6028335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\intrusive_ptr.h 2025-08-14T21:48:54.6032507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\irange.h 2025-08-14T21:48:54.6036201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Lazy.h 2025-08-14T21:48:54.6039816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\LeftRight.h 2025-08-14T21:48:54.6047974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\llvmMathExtras.h 2025-08-14T21:48:54.6051921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Load.h 2025-08-14T21:48:54.6055703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Logging.h 2025-08-14T21:48:54.6059376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\logging_is_google_glog.h 2025-08-14T21:48:54.6063979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\logging_is_not_google_glog.h 2025-08-14T21:48:54.6067728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\MathConstants.h 2025-08-14T21:48:54.6071606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\MaybeOwned.h 2025-08-14T21:48:54.6075334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Metaprogramming.h 2025-08-14T21:48:54.6078964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\NetworkFlow.h 2025-08-14T21:48:54.6082738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\numa.h 2025-08-14T21:48:54.6086393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Optional.h 2025-08-14T21:48:54.6098135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\OptionalArrayRef.h 2025-08-14T21:48:54.6102074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\order_preserving_flat_hash_map.h 2025-08-14T21:48:54.6106870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\overflows.h 2025-08-14T21:48:54.6110801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\overloaded.h 2025-08-14T21:48:54.6115145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ParallelGuard.h 2025-08-14T21:48:54.6119193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\python_stub.h 2025-08-14T21:48:54.6124099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\qint32.h 2025-08-14T21:48:54.6127703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\qint8.h 2025-08-14T21:48:54.6131595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\quint2x4.h 2025-08-14T21:48:54.6135099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\quint4x2.h 2025-08-14T21:48:54.6138646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\quint8.h 2025-08-14T21:48:54.6142498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Registry.h 2025-08-14T21:48:54.6146150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\safe_numerics.h 2025-08-14T21:48:54.6154907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ScopeExit.h 2025-08-14T21:48:54.6159002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Semaphore.h 2025-08-14T21:48:54.6162892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\signal_handler.h 2025-08-14T21:48:54.6167085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\SmallBuffer.h 2025-08-14T21:48:54.6171024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\SmallVector.h 2025-08-14T21:48:54.6175989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\sparse_bitset.h 2025-08-14T21:48:54.6180196Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ssize.h 2025-08-14T21:48:54.6184501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\static_tracepoint.h 2025-08-14T21:48:54.6189136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\static_tracepoint_elfx86.h 2025-08-14T21:48:54.6193128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\strides.h 2025-08-14T21:48:54.6197183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\StringUtil.h 2025-08-14T21:48:54.6205716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\string_utils.h 2025-08-14T21:48:54.6234193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\string_view.h 2025-08-14T21:48:54.6234810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\strong_type.h 2025-08-14T21:48:54.6235385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Synchronized.h 2025-08-14T21:48:54.6235957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\tempfile.h 2025-08-14T21:48:54.6236514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ThreadLocal.h 2025-08-14T21:48:54.6237118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\ThreadLocalDebugInfo.h 2025-08-14T21:48:54.6237740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\thread_name.h 2025-08-14T21:48:54.6240859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Type.h 2025-08-14T21:48:54.6243227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeCast.h 2025-08-14T21:48:54.6247027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\typeid.h 2025-08-14T21:48:54.6250666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeIndex.h 2025-08-14T21:48:54.6254605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeList.h 2025-08-14T21:48:54.6258188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeSafeSignMath.h 2025-08-14T21:48:54.6261884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\TypeTraits.h 2025-08-14T21:48:54.6265969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Unicode.h 2025-08-14T21:48:54.6269741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\UniqueVoidPtr.h 2025-08-14T21:48:54.6273362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\Unroll.h 2025-08-14T21:48:54.6277010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\WaitCounter.h 2025-08-14T21:48:54.6281798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\WaitCounterDynamicBackend.h 2025-08-14T21:48:54.6286249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\util\win32-headers.h 2025-08-14T21:48:54.6303648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUCachingAllocator.h 2025-08-14T21:48:54.6307804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUDeviceProp.h 2025-08-14T21:48:54.6311613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUException.h 2025-08-14T21:48:54.6315198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUFunctions.h 2025-08-14T21:48:54.6323258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUMacros.h 2025-08-14T21:48:54.6327000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\XPUStream.h 2025-08-14T21:48:54.6334160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\impl\XPUGuardImpl.h 2025-08-14T21:48:54.6345223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\c10\xpu\test\impl\XPUTest.h 2025-08-14T21:48:54.6359439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\core\common.h 2025-08-14T21:48:54.6363043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\core\macros.h 2025-08-14T21:48:54.6366488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\core\timer.h 2025-08-14T21:48:54.6374221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\perfkernels\batch_box_cox_vec.h 2025-08-14T21:48:54.6377948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\perfkernels\common.h 2025-08-14T21:48:54.6381578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\perfkernels\embedding_lookup_idx.h 2025-08-14T21:48:54.6389615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\crc_alt.h 2025-08-14T21:48:54.6393894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\file_adapter.h 2025-08-14T21:48:54.6397628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\inline_container.h 2025-08-14T21:48:54.6401345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\in_memory_adapter.h 2025-08-14T21:48:54.6409475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\istream_adapter.h 2025-08-14T21:48:54.6413217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\read_adapter_interface.h 2025-08-14T21:48:54.6417152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\serialize\versions.h 2025-08-14T21:48:54.6424687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\fixed_divisor.h 2025-08-14T21:48:54.6428632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\proto_wrap.h 2025-08-14T21:48:54.6432323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\string_utils.h 2025-08-14T21:48:54.6553892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\pthreadpool-cpp.h 2025-08-14T21:48:54.6557561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\pthreadpool.h 2025-08-14T21:48:54.6561327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\ThreadPool.h 2025-08-14T21:48:54.6746312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\ThreadPoolCommon.h 2025-08-14T21:48:54.6750088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\thread_pool_guard.h 2025-08-14T21:48:54.6754672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\caffe2\utils\threadpool\WorkersPool.h 2025-08-14T21:48:54.6763823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\args.h 2025-08-14T21:48:54.6767340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\base.h 2025-08-14T21:48:54.6772174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\chrono.h 2025-08-14T21:48:54.6776423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\color.h 2025-08-14T21:48:54.6780115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\compile.h 2025-08-14T21:48:54.6783665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\core.h 2025-08-14T21:48:54.6787523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\format-inl.h 2025-08-14T21:48:54.6797365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\format.h 2025-08-14T21:48:54.6801976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\os.h 2025-08-14T21:48:54.6805731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\ostream.h 2025-08-14T21:48:54.6809176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\printf.h 2025-08-14T21:48:54.6813466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\ranges.h 2025-08-14T21:48:54.6817223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\std.h 2025-08-14T21:48:54.6820918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fmt\xchar.h 2025-08-14T21:48:54.6828576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16\bitcasts.h 2025-08-14T21:48:54.6832147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16\fp16.h 2025-08-14T21:48:54.6835738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\fp16\psimd.h 2025-08-14T21:48:54.6847827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\any.h 2025-08-14T21:48:54.6851387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\any.pb.h 2025-08-14T21:48:54.6854979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\api.pb.h 2025-08-14T21:48:54.6859009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\arena.h 2025-08-14T21:48:54.6862782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\arenastring.h 2025-08-14T21:48:54.6871257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\arena_impl.h 2025-08-14T21:48:54.6874936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\descriptor.h 2025-08-14T21:48:54.6879414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\descriptor.pb.h 2025-08-14T21:48:54.6886547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\descriptor_database.h 2025-08-14T21:48:54.6890909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\duration.pb.h 2025-08-14T21:48:54.6895119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\dynamic_message.h 2025-08-14T21:48:54.6899232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\empty.pb.h 2025-08-14T21:48:54.6902933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\extension_set.h 2025-08-14T21:48:54.6907385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\extension_set_inl.h 2025-08-14T21:48:54.6911381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\field_mask.pb.h 2025-08-14T21:48:54.6915055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_enum_reflection.h 2025-08-14T21:48:54.6918898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_enum_util.h 2025-08-14T21:48:54.6922963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_message_reflection.h 2025-08-14T21:48:54.6926755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_message_table_driven.h 2025-08-14T21:48:54.6930538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\generated_message_util.h 2025-08-14T21:48:54.6938591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\has_bits.h 2025-08-14T21:48:54.6942399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\implicit_weak_message.h 2025-08-14T21:48:54.6946106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\inlined_string_field.h 2025-08-14T21:48:54.6949912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map.h 2025-08-14T21:48:54.6953812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_entry.h 2025-08-14T21:48:54.6957728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_entry_lite.h 2025-08-14T21:48:54.6961580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_field.h 2025-08-14T21:48:54.6965306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_field_inl.h 2025-08-14T21:48:54.6975781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_field_lite.h 2025-08-14T21:48:54.6976497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\map_type_handler.h 2025-08-14T21:48:54.6981268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\message.h 2025-08-14T21:48:54.6985266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\message_lite.h 2025-08-14T21:48:54.6989143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\metadata.h 2025-08-14T21:48:54.6992873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\metadata_lite.h 2025-08-14T21:48:54.6996882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\parse_context.h 2025-08-14T21:48:54.7000667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\port.h 2025-08-14T21:48:54.7004309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\reflection.h 2025-08-14T21:48:54.7008103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\reflection_ops.h 2025-08-14T21:48:54.7012109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\repeated_field.h 2025-08-14T21:48:54.7016913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\service.h 2025-08-14T21:48:54.7020724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\source_context.pb.h 2025-08-14T21:48:54.7024460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\struct.pb.h 2025-08-14T21:48:54.7033228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\text_format.h 2025-08-14T21:48:54.7037278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\timestamp.pb.h 2025-08-14T21:48:54.7041209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\type.pb.h 2025-08-14T21:48:54.7045729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\unknown_field_set.h 2025-08-14T21:48:54.7049595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\wire_format.h 2025-08-14T21:48:54.7053445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\wire_format_lite.h 2025-08-14T21:48:54.7057809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\wrappers.pb.h 2025-08-14T21:48:54.7066411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\code_generator.h 2025-08-14T21:48:54.7070351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\command_line_interface.h 2025-08-14T21:48:54.7074441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\importer.h 2025-08-14T21:48:54.7078231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\parser.h 2025-08-14T21:48:54.7081878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\plugin.h 2025-08-14T21:48:54.7097517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\plugin.pb.h 2025-08-14T21:48:54.7105890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\cpp\cpp_generator.h 2025-08-14T21:48:54.7113442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\csharp\csharp_generator.h 2025-08-14T21:48:54.7117368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\csharp\csharp_names.h 2025-08-14T21:48:54.7125024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\java\java_generator.h 2025-08-14T21:48:54.7128714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\java\java_names.h 2025-08-14T21:48:54.7136310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\js\js_generator.h 2025-08-14T21:48:54.7140157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\js\well_known_types_embed.h 2025-08-14T21:48:54.7149080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\objectivec\objectivec_generator.h 2025-08-14T21:48:54.7152852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\objectivec\objectivec_helpers.h 2025-08-14T21:48:54.7160675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\php\php_generator.h 2025-08-14T21:48:54.7168654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\python\python_generator.h 2025-08-14T21:48:54.7176459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\compiler\ruby\ruby_generator.h 2025-08-14T21:48:54.7184782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\coded_stream.h 2025-08-14T21:48:54.7189276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\gzip_stream.h 2025-08-14T21:48:54.7192865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\io_win32.h 2025-08-14T21:48:54.7196554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\printer.h 2025-08-14T21:48:54.7200191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\strtod.h 2025-08-14T21:48:54.7208784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\tokenizer.h 2025-08-14T21:48:54.7212734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\zero_copy_stream.h 2025-08-14T21:48:54.7216815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\zero_copy_stream_impl.h 2025-08-14T21:48:54.7221386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\io\zero_copy_stream_impl_lite.h 2025-08-14T21:48:54.7230298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\bytestream.h 2025-08-14T21:48:54.7234480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\callback.h 2025-08-14T21:48:54.7238678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\casts.h 2025-08-14T21:48:54.7242530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\common.h 2025-08-14T21:48:54.7248737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\fastmem.h 2025-08-14T21:48:54.7252668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\hash.h 2025-08-14T21:48:54.7261387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\logging.h 2025-08-14T21:48:54.7265002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\macros.h 2025-08-14T21:48:54.7268633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\map_util.h 2025-08-14T21:48:54.7272342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\mutex.h 2025-08-14T21:48:54.7275947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\once.h 2025-08-14T21:48:54.7279776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\platform_macros.h 2025-08-14T21:48:54.7283623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\port.h 2025-08-14T21:48:54.7287424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\status.h 2025-08-14T21:48:54.7290969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\stl_util.h 2025-08-14T21:48:54.7294703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\stringpiece.h 2025-08-14T21:48:54.7298618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\strutil.h 2025-08-14T21:48:54.7302356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\stubs\template_util.h 2025-08-14T21:48:54.7311198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\delimited_message_util.h 2025-08-14T21:48:54.7314675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\field_comparator.h 2025-08-14T21:48:54.7318562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\field_mask_util.h 2025-08-14T21:48:54.7343723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\json_util.h 2025-08-14T21:48:54.7347678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\message_differencer.h 2025-08-14T21:48:54.7351672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\time_util.h 2025-08-14T21:48:54.7355513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\type_resolver.h 2025-08-14T21:48:54.7359389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\google\protobuf\util\type_resolver_util.h 2025-08-14T21:48:54.7369263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\AbstractConfig.h 2025-08-14T21:48:54.7373207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ActivityProfilerInterface.h 2025-08-14T21:48:54.7377257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ActivityTraceInterface.h 2025-08-14T21:48:54.7385566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ActivityType.h 2025-08-14T21:48:54.7389450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ClientInterface.h 2025-08-14T21:48:54.7393252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\Config.h 2025-08-14T21:48:54.7396895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\GenericTraceActivity.h 2025-08-14T21:48:54.7401125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\IActivityProfiler.h 2025-08-14T21:48:54.7404959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ILoggerObserver.h 2025-08-14T21:48:54.7408625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ITraceActivity.h 2025-08-14T21:48:54.7412558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\libkineto.h 2025-08-14T21:48:54.7416382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\LoggingAPI.h 2025-08-14T21:48:54.7420269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\output_base.h 2025-08-14T21:48:54.7424165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\ThreadUtil.h 2025-08-14T21:48:54.7428008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\time_since_epoch.h 2025-08-14T21:48:54.7431773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\kineto\TraceSpan.h 2025-08-14T21:48:54.7439961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\legacy\ittnotify.h 2025-08-14T21:48:54.7448348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc-new-delete.h 2025-08-14T21:48:54.7452434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc-override.h 2025-08-14T21:48:54.7456205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc-stats.h 2025-08-14T21:48:54.7464419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\mimalloc-2.2\mimalloc.h 2025-08-14T21:48:54.7477807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl.h 2025-08-14T21:48:54.7482850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl.hpp 2025-08-14T21:48:54.7490583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_common.h 2025-08-14T21:48:54.7494706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_common.hpp 2025-08-14T21:48:54.7498647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_common_types.h 2025-08-14T21:48:54.7506345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_config.h 2025-08-14T21:48:54.7510309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_debug.h 2025-08-14T21:48:54.7514043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph.h 2025-08-14T21:48:54.7518237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph.hpp 2025-08-14T21:48:54.7522490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_ocl.h 2025-08-14T21:48:54.7526289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_ocl.hpp 2025-08-14T21:48:54.7529967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_sycl.h 2025-08-14T21:48:54.7533735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_sycl.hpp 2025-08-14T21:48:54.7537673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_graph_types.h 2025-08-14T21:48:54.7541689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ocl.h 2025-08-14T21:48:54.7545251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ocl.hpp 2025-08-14T21:48:54.7549117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ocl_types.h 2025-08-14T21:48:54.7552865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_sycl.h 2025-08-14T21:48:54.7556615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_sycl.hpp 2025-08-14T21:48:54.7560434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_sycl_types.h 2025-08-14T21:48:54.7564297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_threadpool.h 2025-08-14T21:48:54.7572540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_threadpool.hpp 2025-08-14T21:48:54.7576737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_threadpool_iface.hpp 2025-08-14T21:48:54.7580554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_types.h 2025-08-14T21:48:54.7585084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ukernel.h 2025-08-14T21:48:54.7589045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ukernel.hpp 2025-08-14T21:48:54.7592902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_ukernel_types.h 2025-08-14T21:48:54.7597144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_version.h 2025-08-14T21:48:54.7601311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\oneapi\dnnl\dnnl_version_hash.h 2025-08-14T21:48:54.7612045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\attr.h 2025-08-14T21:48:54.7616479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\buffer_info.h 2025-08-14T21:48:54.7620411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\cast.h 2025-08-14T21:48:54.7624718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\chrono.h 2025-08-14T21:48:54.7628456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\common.h 2025-08-14T21:48:54.7632129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\complex.h 2025-08-14T21:48:54.7640016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen.h 2025-08-14T21:48:54.7643509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\embed.h 2025-08-14T21:48:54.7647075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eval.h 2025-08-14T21:48:54.7650768Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\functional.h 2025-08-14T21:48:54.7655020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\gil.h 2025-08-14T21:48:54.7658538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\gil_safe_call_once.h 2025-08-14T21:48:54.7662160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\iostream.h 2025-08-14T21:48:54.7665600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\numpy.h 2025-08-14T21:48:54.7670046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\operators.h 2025-08-14T21:48:54.7673732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\options.h 2025-08-14T21:48:54.7677360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\pybind11.h 2025-08-14T21:48:54.7682053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\pytypes.h 2025-08-14T21:48:54.7686537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\stl.h 2025-08-14T21:48:54.7690353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\stl_bind.h 2025-08-14T21:48:54.7694240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\type_caster_pyobject_ptr.h 2025-08-14T21:48:54.7697911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\typing.h 2025-08-14T21:48:54.7705404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\class.h 2025-08-14T21:48:54.7709275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\common.h 2025-08-14T21:48:54.7713395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\cpp_conduit.h 2025-08-14T21:48:54.7717066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\descr.h 2025-08-14T21:48:54.7720710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\exception_translation.h 2025-08-14T21:48:54.7730896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\init.h 2025-08-14T21:48:54.7734955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\internals.h 2025-08-14T21:48:54.7739244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\typeid.h 2025-08-14T21:48:54.7742536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\type_caster_base.h 2025-08-14T21:48:54.7747092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\detail\value_and_holder.h 2025-08-14T21:48:54.7756346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen\common.h 2025-08-14T21:48:54.7760019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen\matrix.h 2025-08-14T21:48:54.7763962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\eigen\tensor.h 2025-08-14T21:48:54.7771947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\pybind11\stl\filesystem.h 2025-08-14T21:48:54.7782231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\custom_class.h 2025-08-14T21:48:54.7786713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\custom_class_detail.h 2025-08-14T21:48:54.7790526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\extension.h 2025-08-14T21:48:54.7794454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\library.h 2025-08-14T21:48:54.7804583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\script.h 2025-08-14T21:48:54.7814079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\copy_utils.h 2025-08-14T21:48:54.7818031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\CudaIPCTypes.h 2025-08-14T21:48:54.7822043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\DataLoader.h 2025-08-14T21:48:54.7826812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Device.h 2025-08-14T21:48:54.7835378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\DeviceAccelerator.h 2025-08-14T21:48:54.7839046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Dtype.h 2025-08-14T21:48:54.7842648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\DynamicTypes.h 2025-08-14T21:48:54.7846434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Event.h 2025-08-14T21:48:54.7850167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Exceptions.h 2025-08-14T21:48:54.7853730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Export.h 2025-08-14T21:48:54.7858130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Generator.h 2025-08-14T21:48:54.7862113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\itt.h 2025-08-14T21:48:54.7865897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\itt_wrapper.h 2025-08-14T21:48:54.7869862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Layout.h 2025-08-14T21:48:54.7873329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\MemoryFormat.h 2025-08-14T21:48:54.7877064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Module.h 2025-08-14T21:48:54.7880866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\PyInterpreter.h 2025-08-14T21:48:54.7884696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\PyInterpreterHooks.h 2025-08-14T21:48:54.7888419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\python_dimname.h 2025-08-14T21:48:54.7892220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\python_headers.h 2025-08-14T21:48:54.7896421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\QScheme.h 2025-08-14T21:48:54.7900414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\serialization.h 2025-08-14T21:48:54.7904298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Size.h 2025-08-14T21:48:54.7908098Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Storage.h 2025-08-14T21:48:54.7915964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\StorageMethods.h 2025-08-14T21:48:54.7919726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\StorageSharing.h 2025-08-14T21:48:54.7923520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Stream.h 2025-08-14T21:48:54.7927324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\THConcat.h 2025-08-14T21:48:54.7931122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\THP.h 2025-08-14T21:48:54.7935375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\TypeInfo.h 2025-08-14T21:48:54.7938304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\Types.h 2025-08-14T21:48:54.7941970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils.h 2025-08-14T21:48:54.7957667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\all.h 2025-08-14T21:48:54.7961530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\arg.h 2025-08-14T21:48:54.7967122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\autograd.h 2025-08-14T21:48:54.7968929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\cuda.h 2025-08-14T21:48:54.7973397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data.h 2025-08-14T21:48:54.7976310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\enum.h 2025-08-14T21:48:54.7981556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\expanding_array.h 2025-08-14T21:48:54.7991794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\fft.h 2025-08-14T21:48:54.7994341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\imethod.h 2025-08-14T21:48:54.7998394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\jit.h 2025-08-14T21:48:54.8001822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\mps.h 2025-08-14T21:48:54.8006078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nested.h 2025-08-14T21:48:54.8009575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn.h 2025-08-14T21:48:54.8013252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim.h 2025-08-14T21:48:54.8016983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\ordered_dict.h 2025-08-14T21:48:54.8020675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\python.h 2025-08-14T21:48:54.8024650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize.h 2025-08-14T21:48:54.8028647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\sparse.h 2025-08-14T21:48:54.8032088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\special.h 2025-08-14T21:48:54.8035844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\torch.h 2025-08-14T21:48:54.8039418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\types.h 2025-08-14T21:48:54.8043425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\utils.h 2025-08-14T21:48:54.8046895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\version.h 2025-08-14T21:48:54.8050471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\xpu.h 2025-08-14T21:48:54.8058380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader.h 2025-08-14T21:48:54.8063140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader_options.h 2025-08-14T21:48:54.8066933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets.h 2025-08-14T21:48:54.8070706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\example.h 2025-08-14T21:48:54.8074443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\iterator.h 2025-08-14T21:48:54.8082049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers.h 2025-08-14T21:48:54.8085797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms.h 2025-08-14T21:48:54.8089500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\worker_exception.h 2025-08-14T21:48:54.8097700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader\base.h 2025-08-14T21:48:54.8101598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader\stateful.h 2025-08-14T21:48:54.8105333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\dataloader\stateless.h 2025-08-14T21:48:54.8113210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\base.h 2025-08-14T21:48:54.8116933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\chunk.h 2025-08-14T21:48:54.8120629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\map.h 2025-08-14T21:48:54.8124297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\mnist.h 2025-08-14T21:48:54.8127988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\shared.h 2025-08-14T21:48:54.8131535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\stateful.h 2025-08-14T21:48:54.8135111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\datasets\tensor.h 2025-08-14T21:48:54.8148835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\detail\data_shuttle.h 2025-08-14T21:48:54.8152651Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\detail\queue.h 2025-08-14T21:48:54.8156232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\detail\sequencers.h 2025-08-14T21:48:54.8163909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\base.h 2025-08-14T21:48:54.8167799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\custom_batch_request.h 2025-08-14T21:48:54.8171866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\distributed.h 2025-08-14T21:48:54.8175686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\random.h 2025-08-14T21:48:54.8179266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\sequential.h 2025-08-14T21:48:54.8187681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\serialize.h 2025-08-14T21:48:54.8191800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\samplers\stream.h 2025-08-14T21:48:54.8199975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\base.h 2025-08-14T21:48:54.8203819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\collate.h 2025-08-14T21:48:54.8207429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\lambda.h 2025-08-14T21:48:54.8211063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\stack.h 2025-08-14T21:48:54.8214689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\data\transforms\tensor.h 2025-08-14T21:48:54.8223254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\detail\static.h 2025-08-14T21:48:54.8227043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\detail\TensorDataContainer.h 2025-08-14T21:48:54.8234954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nativert\ModelRunnerHandle.h 2025-08-14T21:48:54.8242727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\cloneable.h 2025-08-14T21:48:54.8246494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional.h 2025-08-14T21:48:54.8250153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\init.h 2025-08-14T21:48:54.8253675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\module.h 2025-08-14T21:48:54.8257498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules.h 2025-08-14T21:48:54.8265540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options.h 2025-08-14T21:48:54.8269357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\pimpl-inl.h 2025-08-14T21:48:54.8273503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\pimpl.h 2025-08-14T21:48:54.8277099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils.h 2025-08-14T21:48:54.8284449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\activation.h 2025-08-14T21:48:54.8288291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\batchnorm.h 2025-08-14T21:48:54.8292060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\conv.h 2025-08-14T21:48:54.8296240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\distance.h 2025-08-14T21:48:54.8304998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\dropout.h 2025-08-14T21:48:54.8308759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\embedding.h 2025-08-14T21:48:54.8312477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\fold.h 2025-08-14T21:48:54.8316374Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\instancenorm.h 2025-08-14T21:48:54.8320081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\linear.h 2025-08-14T21:48:54.8323944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\loss.h 2025-08-14T21:48:54.8327958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\normalization.h 2025-08-14T21:48:54.8331476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\padding.h 2025-08-14T21:48:54.8335264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\pixelshuffle.h 2025-08-14T21:48:54.8339018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\pooling.h 2025-08-14T21:48:54.8342781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\upsampling.h 2025-08-14T21:48:54.8347008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\functional\vision.h 2025-08-14T21:48:54.8355600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\activation.h 2025-08-14T21:48:54.8359274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\adaptive.h 2025-08-14T21:48:54.8362919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\batchnorm.h 2025-08-14T21:48:54.8366602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\common.h 2025-08-14T21:48:54.8370171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\conv.h 2025-08-14T21:48:54.8378299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\distance.h 2025-08-14T21:48:54.8381987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\dropout.h 2025-08-14T21:48:54.8385529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\embedding.h 2025-08-14T21:48:54.8389230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\fold.h 2025-08-14T21:48:54.8393127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\instancenorm.h 2025-08-14T21:48:54.8396897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\linear.h 2025-08-14T21:48:54.8400688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\loss.h 2025-08-14T21:48:54.8404176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\normalization.h 2025-08-14T21:48:54.8407807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\padding.h 2025-08-14T21:48:54.8411459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\pixelshuffle.h 2025-08-14T21:48:54.8415357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\pooling.h 2025-08-14T21:48:54.8419174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\rnn.h 2025-08-14T21:48:54.8436638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\transformer.h 2025-08-14T21:48:54.8440430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\transformercoder.h 2025-08-14T21:48:54.8444402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\transformerlayer.h 2025-08-14T21:48:54.8448054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\upsampling.h 2025-08-14T21:48:54.8451783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\utils.h 2025-08-14T21:48:54.8455444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\_functions.h 2025-08-14T21:48:54.8463133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\any.h 2025-08-14T21:48:54.8467201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\any_module_holder.h 2025-08-14T21:48:54.8470777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\any_value.h 2025-08-14T21:48:54.8474360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\functional.h 2025-08-14T21:48:54.8483170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\moduledict.h 2025-08-14T21:48:54.8486920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\modulelist.h 2025-08-14T21:48:54.8490787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\named_any.h 2025-08-14T21:48:54.8494647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterdict.h 2025-08-14T21:48:54.8498251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\parameterlist.h 2025-08-14T21:48:54.8501944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\modules\container\sequential.h 2025-08-14T21:48:54.8510839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\activation.h 2025-08-14T21:48:54.8514701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\adaptive.h 2025-08-14T21:48:54.8518502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\batchnorm.h 2025-08-14T21:48:54.8522347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\conv.h 2025-08-14T21:48:54.8525986Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\distance.h 2025-08-14T21:48:54.8534691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\dropout.h 2025-08-14T21:48:54.8538451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\embedding.h 2025-08-14T21:48:54.8542125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\fold.h 2025-08-14T21:48:54.8545773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\instancenorm.h 2025-08-14T21:48:54.8549578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\linear.h 2025-08-14T21:48:54.8553187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\loss.h 2025-08-14T21:48:54.8556860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\normalization.h 2025-08-14T21:48:54.8560501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\padding.h 2025-08-14T21:48:54.8564408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\pixelshuffle.h 2025-08-14T21:48:54.8568173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\pooling.h 2025-08-14T21:48:54.8571693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\rnn.h 2025-08-14T21:48:54.8575319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\transformer.h 2025-08-14T21:48:54.8579080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\transformercoder.h 2025-08-14T21:48:54.8582881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\transformerlayer.h 2025-08-14T21:48:54.8586751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\upsampling.h 2025-08-14T21:48:54.8590683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\options\vision.h 2025-08-14T21:48:54.8598885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\parallel\data_parallel.h 2025-08-14T21:48:54.8606455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils\clip_grad.h 2025-08-14T21:48:54.8610279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils\convert_parameters.h 2025-08-14T21:48:54.8614036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\nn\utils\rnn.h 2025-08-14T21:48:54.8623533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\adagrad.h 2025-08-14T21:48:54.8627298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\adam.h 2025-08-14T21:48:54.8630946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\adamw.h 2025-08-14T21:48:54.8634555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\lbfgs.h 2025-08-14T21:48:54.8638513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\optimizer.h 2025-08-14T21:48:54.8642279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\rmsprop.h 2025-08-14T21:48:54.8651112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\serialize.h 2025-08-14T21:48:54.8655064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\sgd.h 2025-08-14T21:48:54.8662625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\schedulers\lr_scheduler.h 2025-08-14T21:48:54.8666427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\schedulers\reduce_on_plateau_scheduler.h 2025-08-14T21:48:54.8670104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\optim\schedulers\step_lr.h 2025-08-14T21:48:54.8682977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\python\init.h 2025-08-14T21:48:54.8690657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\archive.h 2025-08-14T21:48:54.8694354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\input-archive.h 2025-08-14T21:48:54.8698552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\output-archive.h 2025-08-14T21:48:54.8702302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\api\include\torch\serialize\tensor.h 2025-08-14T21:48:54.8718550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\anomaly_mode.h 2025-08-14T21:48:54.8722720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\autograd.h 2025-08-14T21:48:54.8726943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\autograd_not_implemented_fallback.h 2025-08-14T21:48:54.8731230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\cpp_hook.h 2025-08-14T21:48:54.8740354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\custom_function.h 2025-08-14T21:48:54.8744186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\edge.h 2025-08-14T21:48:54.8748332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\engine.h 2025-08-14T21:48:54.8752149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\forward_grad.h 2025-08-14T21:48:54.8756303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\function.h 2025-08-14T21:48:54.8760382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\FunctionsManual.h 2025-08-14T21:48:54.8764383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\function_hook.h 2025-08-14T21:48:54.8768321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\grad_mode.h 2025-08-14T21:48:54.8772267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\graph_task.h 2025-08-14T21:48:54.8776157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\InferenceMode.h 2025-08-14T21:48:54.8780690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\input_buffer.h 2025-08-14T21:48:54.8784648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\input_metadata.h 2025-08-14T21:48:54.8788562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\jit_decomp_interface.h 2025-08-14T21:48:54.8792435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler.h 2025-08-14T21:48:54.8796277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler_kineto.h 2025-08-14T21:48:54.8800125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler_legacy.h 2025-08-14T21:48:54.8804179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\profiler_python.h 2025-08-14T21:48:54.8808259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_anomaly_mode.h 2025-08-14T21:48:54.8816597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_autograd.h 2025-08-14T21:48:54.8820408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_cpp_function.h 2025-08-14T21:48:54.8825071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_engine.h 2025-08-14T21:48:54.8829271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_enum_tag.h 2025-08-14T21:48:54.8833020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_fft_functions.h 2025-08-14T21:48:54.8837022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_function.h 2025-08-14T21:48:54.8840826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_hook.h 2025-08-14T21:48:54.8845509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_legacy_variable.h 2025-08-14T21:48:54.8849725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_linalg_functions.h 2025-08-14T21:48:54.8859253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_nested_functions.h 2025-08-14T21:48:54.8863073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_nn_functions.h 2025-08-14T21:48:54.8866859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_saved_variable_hooks.h 2025-08-14T21:48:54.8870949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_sparse_functions.h 2025-08-14T21:48:54.8875439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_special_functions.h 2025-08-14T21:48:54.8879413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_torch_functions.h 2025-08-14T21:48:54.8883724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_variable.h 2025-08-14T21:48:54.8887803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\python_variable_indexing.h 2025-08-14T21:48:54.8891826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\record_function_ops.h 2025-08-14T21:48:54.8895781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\saved_variable.h 2025-08-14T21:48:54.8899591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\saved_variable_hooks.h 2025-08-14T21:48:54.8908421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\symbolic.h 2025-08-14T21:48:54.8911991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\variable.h 2025-08-14T21:48:54.8917243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\VariableTypeUtils.h 2025-08-14T21:48:54.8921078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\variable_info.h 2025-08-14T21:48:54.8930812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\accumulate_grad.h 2025-08-14T21:48:54.8934840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\basic_ops.h 2025-08-14T21:48:54.8938609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\comm.h 2025-08-14T21:48:54.8942597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\pybind.h 2025-08-14T21:48:54.8951460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\tensor.h 2025-08-14T21:48:54.8955367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\functions\utils.h 2025-08-14T21:48:54.8963691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\Functions.h 2025-08-14T21:48:54.8970967Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\python_functions.h 2025-08-14T21:48:54.8974984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\python_return_types.h 2025-08-14T21:48:54.8982864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\VariableType.h 2025-08-14T21:48:54.8986894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\variable_factories.h 2025-08-14T21:48:54.8991555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\generated\ViewFuncs.h 2025-08-14T21:48:54.9000990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\error_messages.h 2025-08-14T21:48:54.9004996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\grad_layout_contract.h 2025-08-14T21:48:54.9009182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\lambda_post_hook.h 2025-08-14T21:48:54.9013022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\python_arg_parsing.h 2025-08-14T21:48:54.9021654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\warnings.h 2025-08-14T21:48:54.9025350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\autograd\utils\wrap_outputs.h 2025-08-14T21:48:54.9034760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cpu\Module.h 2025-08-14T21:48:54.9042610Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\comm.h 2025-08-14T21:48:54.9046498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\CUDAPluggableAllocator.h 2025-08-14T21:48:54.9050215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\device_set.h 2025-08-14T21:48:54.9054148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\Event.h 2025-08-14T21:48:54.9057841Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\GdsFile.h 2025-08-14T21:48:54.9066698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\memory_snapshot.h 2025-08-14T21:48:54.9070583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\Module.h 2025-08-14T21:48:54.9074654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\nccl.h 2025-08-14T21:48:54.9078545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\python_comm.h 2025-08-14T21:48:54.9082247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\python_nccl.h 2025-08-14T21:48:54.9086079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\Stream.h 2025-08-14T21:48:54.9090163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\THCP.h 2025-08-14T21:48:54.9094245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\cuda\utils.h 2025-08-14T21:48:54.9106538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\autograd.h 2025-08-14T21:48:54.9110261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\python_autograd.h 2025-08-14T21:48:54.9116396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\utils.h 2025-08-14T21:48:54.9124495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\context\container.h 2025-08-14T21:48:54.9128046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\context\context.h 2025-08-14T21:48:54.9135809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\engine\dist_engine.h 2025-08-14T21:48:54.9148613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\functions\recvrpc_backward.h 2025-08-14T21:48:54.9152517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\functions\sendrpc_backward.h 2025-08-14T21:48:54.9161116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\autograd_metadata.h 2025-08-14T21:48:54.9165004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_req.h 2025-08-14T21:48:54.9168839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\cleanup_autograd_context_resp.h 2025-08-14T21:48:54.9177698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_req.h 2025-08-14T21:48:54.9181791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\propagate_gradients_resp.h 2025-08-14T21:48:54.9185644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_autograd.h 2025-08-14T21:48:54.9189552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_req.h 2025-08-14T21:48:54.9193431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rpc_with_profiling_resp.h 2025-08-14T21:48:54.9197291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_req.h 2025-08-14T21:48:54.9201255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\autograd\rpc_messages\rref_backward_resp.h 2025-08-14T21:48:54.9210648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Backend.hpp 2025-08-14T21:48:54.9214393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Backoff.hpp 2025-08-14T21:48:54.9217992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\c10d.h 2025-08-14T21:48:54.9221554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\comm.hpp 2025-08-14T21:48:54.9225557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\debug.h 2025-08-14T21:48:54.9229291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\default_comm_hooks.hpp 2025-08-14T21:48:54.9238059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\error.h 2025-08-14T21:48:54.9241769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\exception.h 2025-08-14T21:48:54.9245528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FakeProcessGroup.hpp 2025-08-14T21:48:54.9249411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FileStore.hpp 2025-08-14T21:48:54.9253466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FlightRecorder.hpp 2025-08-14T21:48:54.9257332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\FlightRecorderDetail.hpp 2025-08-14T21:48:54.9261007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Functional.hpp 2025-08-14T21:48:54.9264890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\GlooDeviceFactory.hpp 2025-08-14T21:48:54.9268771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\GroupRegistry.hpp 2025-08-14T21:48:54.9272520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\HashStore.hpp 2025-08-14T21:48:54.9276198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\logger.hpp 2025-08-14T21:48:54.9279761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\logging.h 2025-08-14T21:48:54.9283868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\NanCheck.hpp 2025-08-14T21:48:54.9287440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\NCCLUtils.hpp 2025-08-14T21:48:54.9291232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ParamCommsUtils.hpp 2025-08-14T21:48:54.9295089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\PrefixStore.hpp 2025-08-14T21:48:54.9299188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroup.hpp 2025-08-14T21:48:54.9307134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupGloo.hpp 2025-08-14T21:48:54.9311753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupGlooDetail.hpp 2025-08-14T21:48:54.9315862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupMPI.hpp 2025-08-14T21:48:54.9319478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupNCCL.hpp 2025-08-14T21:48:54.9323681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupUCC.hpp 2025-08-14T21:48:54.9327686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\ProcessGroupWrapper.hpp 2025-08-14T21:48:54.9331655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\PyProcessGroup.hpp 2025-08-14T21:48:54.9335382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\python_comm_hook.h 2025-08-14T21:48:54.9339178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\RankLocal.hpp 2025-08-14T21:48:54.9346857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\reducer.hpp 2025-08-14T21:48:54.9350698Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\reducer_timer.hpp 2025-08-14T21:48:54.9354492Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\sequence_num.hpp 2025-08-14T21:48:54.9358525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\socket.h 2025-08-14T21:48:54.9362943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\socket_fmt.h 2025-08-14T21:48:54.9367366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Store.hpp 2025-08-14T21:48:54.9372270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\TCPStore.hpp 2025-08-14T21:48:54.9375934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\TCPStoreBackend.hpp 2025-08-14T21:48:54.9379904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\TraceUtils.h 2025-08-14T21:48:54.9383575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Types.hpp 2025-08-14T21:48:54.9387288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\UCCTracing.hpp 2025-08-14T21:48:54.9391312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\UCCUtils.hpp 2025-08-14T21:48:54.9398805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\UnixSockUtils.hpp 2025-08-14T21:48:54.9402585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Utils.hpp 2025-08-14T21:48:54.9406926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\WinSockUtils.hpp 2025-08-14T21:48:54.9411090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\Work.hpp 2025-08-14T21:48:54.9419192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_collectives\ControlCollectives.hpp 2025-08-14T21:48:54.9423415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_collectives\StoreCollectives.hpp 2025-08-14T21:48:54.9433039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_plane\Handlers.hpp 2025-08-14T21:48:54.9437802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\control_plane\WorkerServer.hpp 2025-08-14T21:48:54.9447137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\cuda\CUDAEventCache.hpp 2025-08-14T21:48:54.9450895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\cuda\StreamBlock.hpp 2025-08-14T21:48:54.9454674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\cuda\utils.hpp 2025-08-14T21:48:54.9463554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\quantization\quantization.h 2025-08-14T21:48:54.9467555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\quantization\quantization_gpu.h 2025-08-14T21:48:54.9471580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\quantization\quantization_utils.h 2025-08-14T21:48:54.9485192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory-inl.h 2025-08-14T21:48:54.9489362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory.hpp 2025-08-14T21:48:54.9493270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryTypes.hpp 2025-08-14T21:48:54.9503696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryUtils.hpp 2025-08-14T21:48:54.9508082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\DMAConnectivity.hpp 2025-08-14T21:48:54.9512213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\intra_node_comm.hpp 2025-08-14T21:48:54.9516923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\c10d\symm_mem\SymmetricMemory.hpp 2025-08-14T21:48:54.9527337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\agent_utils.h 2025-08-14T21:48:54.9531348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\message.h 2025-08-14T21:48:54.9535188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_call.h 2025-08-14T21:48:54.9538953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_functions.h 2025-08-14T21:48:54.9547024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_remote_call.h 2025-08-14T21:48:54.9551042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_resp.h 2025-08-14T21:48:54.9555151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\python_rpc_handler.h 2025-08-14T21:48:54.9559269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\py_rref.h 2025-08-14T21:48:54.9563073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\request_callback.h 2025-08-14T21:48:54.9567538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\request_callback_impl.h 2025-08-14T21:48:54.9571293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\request_callback_no_python.h 2025-08-14T21:48:54.9591744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rpc.h 2025-08-14T21:48:54.9595354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rpc_agent.h 2025-08-14T21:48:54.9599264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rpc_command_base.h 2025-08-14T21:48:54.9603136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rref_context.h 2025-08-14T21:48:54.9607215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rref_impl.h 2025-08-14T21:48:54.9611597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\rref_proto.h 2025-08-14T21:48:54.9616168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\script_call.h 2025-08-14T21:48:54.9620142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\script_remote_call.h 2025-08-14T21:48:54.9624497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\script_resp.h 2025-08-14T21:48:54.9632879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\tensorpipe_agent.h 2025-08-14T21:48:54.9637170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\tensorpipe_utils.h 2025-08-14T21:48:54.9641477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\torchscript_functions.h 2025-08-14T21:48:54.9645950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\types.h 2025-08-14T21:48:54.9649975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\unpickled_python_call.h 2025-08-14T21:48:54.9653854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\unpickled_python_remote_call.h 2025-08-14T21:48:54.9657927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\utils.h 2025-08-14T21:48:54.9665821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\metrics\RpcMetricsHandler.h 2025-08-14T21:48:54.9673724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\profiler\remote_profiler_manager.h 2025-08-14T21:48:54.9677661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\profiler\server_process_global_profiler.h 2025-08-14T21:48:54.9686108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\testing\faulty_tensorpipe_agent.h 2025-08-14T21:48:54.9689896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\distributed\rpc\testing\testing.h 2025-08-14T21:48:54.9699284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cache_entry.h 2025-08-14T21:48:54.9703281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\compiled_autograd.h 2025-08-14T21:48:54.9707404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cpp_shim.h 2025-08-14T21:48:54.9711055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cpython_defs.h 2025-08-14T21:48:54.9719215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\cpython_includes.h 2025-08-14T21:48:54.9723121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\debug_macros.h 2025-08-14T21:48:54.9727271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\eval_frame.h 2025-08-14T21:48:54.9731028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\eval_frame_cpp.h 2025-08-14T21:48:54.9734717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\extra_state.h 2025-08-14T21:48:54.9738556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\framelocals_mapping.h 2025-08-14T21:48:54.9742228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\guards.h 2025-08-14T21:48:54.9745826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\init.h 2025-08-14T21:48:54.9749525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\python_compiled_autograd.h 2025-08-14T21:48:54.9753545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\dynamo\utils.h 2025-08-14T21:48:54.9761517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\example_upgraders.h 2025-08-14T21:48:54.9765517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\pt2_archive_constants.h 2025-08-14T21:48:54.9769200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\pybind.h 2025-08-14T21:48:54.9772600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\export\upgrader.h 2025-08-14T21:48:54.9780692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\functorch\init.h 2025-08-14T21:48:54.9788484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\fx\node.h 2025-08-14T21:48:54.9796732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\array_ref_impl.h 2025-08-14T21:48:54.9800458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_prefix.h 2025-08-14T21:48:54.9804439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\inductor_ops.h 2025-08-14T21:48:54.9808193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\static_cuda_launcher.h 2025-08-14T21:48:54.9820233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_eager\kernel_holder.h 2025-08-14T21:48:54.9824030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_eager\kernel_meta_info.h 2025-08-14T21:48:54.9831735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\array_ref.h 2025-08-14T21:48:54.9836012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\common.h 2025-08-14T21:48:54.9839649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\cpu.h 2025-08-14T21:48:54.9843210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\cuda.h 2025-08-14T21:48:54.9846784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\mps.h 2025-08-14T21:48:54.9854829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_include\xpu.h 2025-08-14T21:48:54.9862637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_package\model_package_loader.h 2025-08-14T21:48:54.9866375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_package\pybind.h 2025-08-14T21:48:54.9874209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner.h 2025-08-14T21:48:54.9878285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cpu.h 2025-08-14T21:48:54.9882042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_cuda.h 2025-08-14T21:48:54.9889954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_mps.h 2025-08-14T21:48:54.9893743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_xpu.h 2025-08-14T21:48:54.9897568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runner\pybind.h 2025-08-14T21:48:54.9905804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\arrayref_tensor.h 2025-08-14T21:48:54.9909968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\constant_type.h 2025-08-14T21:48:54.9913902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\device_utils.h 2025-08-14T21:48:54.9922135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\interface.h 2025-08-14T21:48:54.9926155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\mini_array_ref.h 2025-08-14T21:48:54.9929734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\model.h 2025-08-14T21:48:54.9933582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\model_base.h 2025-08-14T21:48:54.9937525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\model_container.h 2025-08-14T21:48:54.9941551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\scalar_to_tensor.h 2025-08-14T21:48:54.9945482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\sycl_runtime_wrappers.h 2025-08-14T21:48:54.9949565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\thread_local.h 2025-08-14T21:48:54.9953505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\utils.h 2025-08-14T21:48:54.9957108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\utils_cuda.h 2025-08-14T21:48:54.9961369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_runtime\utils_xpu.h 2025-08-14T21:48:54.9970678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\mkldnn_tensor.h 2025-08-14T21:48:54.9974553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\oss_proxy_executor.h 2025-08-14T21:48:54.9978438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\proxy_executor.h 2025-08-14T21:48:54.9986919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\tensor_converter.h 2025-08-14T21:48:54.9991327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\utils.h 2025-08-14T21:48:54.9998704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\macros.h 2025-08-14T21:48:55.0002441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim.h 2025-08-14T21:48:55.0006654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_cpu.h 2025-08-14T21:48:55.0010548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_deprecated.h 2025-08-14T21:48:55.0014202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_mps.h 2025-08-14T21:48:55.0017969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\c\shim_xpu.h 2025-08-14T21:48:55.0030190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_aten.h 2025-08-14T21:48:55.0034650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cpu.h 2025-08-14T21:48:55.0039016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_cuda.h 2025-08-14T21:48:55.0047782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_mps.h 2025-08-14T21:48:55.0051763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_xpu.h 2025-08-14T21:48:55.0060670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\array_ref.h 2025-08-14T21:48:55.0064747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\common.h 2025-08-14T21:48:55.0068565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\cpu.h 2025-08-14T21:48:55.0072559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\cuda.h 2025-08-14T21:48:55.0076264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\mps.h 2025-08-14T21:48:55.0084287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\xpu.h 2025-08-14T21:48:55.0092017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cpu.h 2025-08-14T21:48:55.0095732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\cuda.h 2025-08-14T21:48:55.0099531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\mps.h 2025-08-14T21:48:55.0103749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\xpu.h 2025-08-14T21:48:55.0112940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\instruction_counter\Module.h 2025-08-14T21:48:55.0122046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\jit_log.h 2025-08-14T21:48:55.0126149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\jit_opt_limit.h 2025-08-14T21:48:55.0130458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\resource_guard.h 2025-08-14T21:48:55.0138626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\compilation_unit.h 2025-08-14T21:48:55.0142682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\function_impl.h 2025-08-14T21:48:55.0146892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\method.h 2025-08-14T21:48:55.0151204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\module.h 2025-08-14T21:48:55.0155174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\api\object.h 2025-08-14T21:48:55.0172849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend.h 2025-08-14T21:48:55.0178406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_debug_handler.h 2025-08-14T21:48:55.0182231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_debug_info.h 2025-08-14T21:48:55.0185971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_detail.h 2025-08-14T21:48:55.0194115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_exception.h 2025-08-14T21:48:55.0198056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_init.h 2025-08-14T21:48:55.0201844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_interface.h 2025-08-14T21:48:55.0206053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_preprocess.h 2025-08-14T21:48:55.0210104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\backend_resolver.h 2025-08-14T21:48:55.0221576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\cpp\context.h 2025-08-14T21:48:55.0229632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLCompiler.h 2025-08-14T21:48:55.0233389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLExecutor.h 2025-08-14T21:48:55.0237174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLFeatureProvider.h 2025-08-14T21:48:55.0245820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLModelWrapper.h 2025-08-14T21:48:55.0249902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\coreml\objc\PTMCoreMLTensorSpec.h 2025-08-14T21:48:55.0259416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\xnnpack_graph_builder.h 2025-08-14T21:48:55.0266758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\compiler\xnn_compiler.h 2025-08-14T21:48:55.0274767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\executor\xnn_executor.h 2025-08-14T21:48:55.0282808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\backends\xnnpack\serialization\serializer.h 2025-08-14T21:48:55.0295289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\cuda\interface.h 2025-08-14T21:48:55.0303168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\arg_spec.h 2025-08-14T21:48:55.0306868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\codegen.h 2025-08-14T21:48:55.0310542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\compiler.h 2025-08-14T21:48:55.0314291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\executor.h 2025-08-14T21:48:55.0317838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\fallback.h 2025-08-14T21:48:55.0321432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\fused_kernel.h 2025-08-14T21:48:55.0330150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\interface.h 2025-08-14T21:48:55.0333915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\kernel_cache.h 2025-08-14T21:48:55.0337772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\kernel_spec.h 2025-08-14T21:48:55.0341471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\partition_desc.h 2025-08-14T21:48:55.0345265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\tensor_desc.h 2025-08-14T21:48:55.0349117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\tensor_info.h 2025-08-14T21:48:55.0356578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cpu\fused_kernel.h 2025-08-14T21:48:55.0360723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cpu\resource_strings.h 2025-08-14T21:48:55.0364463Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cpu\temp_file.h 2025-08-14T21:48:55.0372438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cuda\fused_kernel.h 2025-08-14T21:48:55.0376183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\fuser\cuda\resource_strings.h 2025-08-14T21:48:55.0384376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\decompose_silu.h 2025-08-14T21:48:55.0388340Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\defer_size_check.h 2025-08-14T21:48:55.0391940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\graph_fuser.h 2025-08-14T21:48:55.0395775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\graph_helper.h 2025-08-14T21:48:55.0404902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\guard_shape.h 2025-08-14T21:48:55.0408822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\interface.h 2025-08-14T21:48:55.0412593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\kernel.h 2025-08-14T21:48:55.0416361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\layout_propagation.h 2025-08-14T21:48:55.0420156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\LlgaTensorImpl.h 2025-08-14T21:48:55.0423920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\operator.h 2025-08-14T21:48:55.0427899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\codegen\onednn\prepare_binary.h 2025-08-14T21:48:55.0436706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\cuda\cuda.h 2025-08-14T21:48:55.0444328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\builtin_functions.h 2025-08-14T21:48:55.0448057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\canonicalize_modified_loop.h 2025-08-14T21:48:55.0451748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\concrete_module_type.h 2025-08-14T21:48:55.0460230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\convert_to_ssa.h 2025-08-14T21:48:55.0464054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\edit_distance.h 2025-08-14T21:48:55.0467936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\error_report.h 2025-08-14T21:48:55.0472310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\exit_transforms.h 2025-08-14T21:48:55.0476054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\function_schema_parser.h 2025-08-14T21:48:55.0480510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\inline_loop_condition.h 2025-08-14T21:48:55.0484203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\ir_emitter.h 2025-08-14T21:48:55.0488135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\lexer.h 2025-08-14T21:48:55.0491739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\mini_environment.h 2025-08-14T21:48:55.0495464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\name_mangler.h 2025-08-14T21:48:55.0499176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\parser.h 2025-08-14T21:48:55.0503212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\parser_constants.h 2025-08-14T21:48:55.0507150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\parse_string_literal.h 2025-08-14T21:48:55.0510823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\resolver.h 2025-08-14T21:48:55.0514700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\schema_matching.h 2025-08-14T21:48:55.0519510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\schema_type_parser.h 2025-08-14T21:48:55.0525787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\script_type_parser.h 2025-08-14T21:48:55.0535484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\source_range.h 2025-08-14T21:48:55.0539242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\source_ref.h 2025-08-14T21:48:55.0542876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\strtod.h 2025-08-14T21:48:55.0546697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\sugared_value.h 2025-08-14T21:48:55.0550675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\tracer.h 2025-08-14T21:48:55.0554299Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\tree.h 2025-08-14T21:48:55.0558094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\tree_views.h 2025-08-14T21:48:55.0562075Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\frontend\versioned_symbols.h 2025-08-14T21:48:55.0570647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\alias_analysis.h 2025-08-14T21:48:55.0574456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\attributes.h 2025-08-14T21:48:55.0578015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\constants.h 2025-08-14T21:48:55.0581870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\graph_node_list.h 2025-08-14T21:48:55.0590482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\graph_utils.h 2025-08-14T21:48:55.0594225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\ir.h 2025-08-14T21:48:55.0598514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\irparser.h 2025-08-14T21:48:55.0602936Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\ir_views.h 2025-08-14T21:48:55.0606566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\named_value.h 2025-08-14T21:48:55.0610302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\node_hashing.h 2025-08-14T21:48:55.0614207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\scope.h 2025-08-14T21:48:55.0618147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\subgraph_matcher.h 2025-08-14T21:48:55.0622214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\ir\type_hashing.h 2025-08-14T21:48:55.0630952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\code.h 2025-08-14T21:48:55.0634926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\debug_info.h 2025-08-14T21:48:55.0639569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\file_format.h 2025-08-14T21:48:55.0643146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\flatbuffer_loader.h 2025-08-14T21:48:55.0651940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\frame.h 2025-08-14T21:48:55.0655664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\function.h 2025-08-14T21:48:55.0659226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\import.h 2025-08-14T21:48:55.0663041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\import_data.h 2025-08-14T21:48:55.0667279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\import_export_common.h 2025-08-14T21:48:55.0671255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\interpreter.h 2025-08-14T21:48:55.0674994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\method.h 2025-08-14T21:48:55.0679104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\module.h 2025-08-14T21:48:55.0683110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\observer.h 2025-08-14T21:48:55.0686721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\parse_bytecode.h 2025-08-14T21:48:55.0690776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\parse_operators.h 2025-08-14T21:48:55.0694848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\prim_ops_registery.h 2025-08-14T21:48:55.0698619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\profiler_edge.h 2025-08-14T21:48:55.0702355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\promoted_prim_ops.h 2025-08-14T21:48:55.0720654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\quantization.h 2025-08-14T21:48:55.0724734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\register_ops_common_utils.h 2025-08-14T21:48:55.0729069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\type_parser.h 2025-08-14T21:48:55.0732892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\upgrader_mobile.h 2025-08-14T21:48:55.0774943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\backport.h 2025-08-14T21:48:55.0775920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\backport_manager.h 2025-08-14T21:48:55.0776925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\model_compatibility.h 2025-08-14T21:48:55.0777815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\compatibility\runtime_compatibility.h 2025-08-14T21:48:55.0778680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\BuildFeatureTracer.h 2025-08-14T21:48:55.0781355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\CustomClassTracer.h 2025-08-14T21:48:55.0783106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\KernelDTypeTracer.h 2025-08-14T21:48:55.0809583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\MobileModelRunner.h 2025-08-14T21:48:55.0810542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\OperatorCallTracer.h 2025-08-14T21:48:55.0813386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\TensorUtils.h 2025-08-14T21:48:55.0814203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\model_tracer\TracerRunner.h 2025-08-14T21:48:55.0814979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\nnc\aot_compiler.h 2025-08-14T21:48:55.0816445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\nnc\context.h 2025-08-14T21:48:55.0820379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\nnc\registry.h 2025-08-14T21:48:55.0828472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\export_data.h 2025-08-14T21:48:55.0832662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\random.h 2025-08-14T21:48:55.0836283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\sequential.h 2025-08-14T21:48:55.0845153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\mobile\train\optim\sgd.h 2025-08-14T21:48:55.0853402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\upgraders.h 2025-08-14T21:48:55.0857911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\upgraders_entry.h 2025-08-14T21:48:55.0861312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\utils.h 2025-08-14T21:48:55.0865141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\operator_upgraders\version_map.h 2025-08-14T21:48:55.0878771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\add_if_then_else.h 2025-08-14T21:48:55.0882966Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\annotate_warns.h 2025-08-14T21:48:55.0886417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\autocast.h 2025-08-14T21:48:55.0890154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\bailout_graph.h 2025-08-14T21:48:55.0898175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\batch_mm.h 2025-08-14T21:48:55.0903510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\canonicalize.h 2025-08-14T21:48:55.0907266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\canonicalize_graph_fuser_ops.h 2025-08-14T21:48:55.0911556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\check_strict_fusion.h 2025-08-14T21:48:55.0915424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\clear_profiling.h 2025-08-14T21:48:55.0919096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\clear_undefinedness.h 2025-08-14T21:48:55.0922995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\common_subexpression_elimination.h 2025-08-14T21:48:55.0926736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\concat_opt.h 2025-08-14T21:48:55.0930904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\constant_pooling.h 2025-08-14T21:48:55.0935847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\constant_propagation.h 2025-08-14T21:48:55.0939190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\create_autodiff_subgraphs.h 2025-08-14T21:48:55.0943295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\create_functional_graphs.h 2025-08-14T21:48:55.0948338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\dead_code_elimination.h 2025-08-14T21:48:55.0951738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\decompose_ops.h 2025-08-14T21:48:55.0956381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\device_type_analysis.h 2025-08-14T21:48:55.0966994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\dtype_analysis.h 2025-08-14T21:48:55.0969188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\eliminate_no_ops.h 2025-08-14T21:48:55.0973612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\erase_number_types.h 2025-08-14T21:48:55.0977301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fixup_trace_scope_blocks.h 2025-08-14T21:48:55.0981235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fold_conv_bn.h 2025-08-14T21:48:55.0986420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fold_linear_bn.h 2025-08-14T21:48:55.0989335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\freeze_module.h 2025-08-14T21:48:55.0993562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_concat_linear.h 2025-08-14T21:48:55.0997622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_conv_add_relu_fusion.h 2025-08-14T21:48:55.1006635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_conv_folding.h 2025-08-14T21:48:55.1011554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_graph_optimizations.h 2025-08-14T21:48:55.1015137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_linear_folding.h 2025-08-14T21:48:55.1020514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_linear_transpose.h 2025-08-14T21:48:55.1024302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\frozen_ops_to_mkldnn.h 2025-08-14T21:48:55.1028361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fuse_linear.h 2025-08-14T21:48:55.1032499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\fuse_relu.h 2025-08-14T21:48:55.1036388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\graph_fuser.h 2025-08-14T21:48:55.1040464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\graph_rewrite_helper.h 2025-08-14T21:48:55.1049735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\guard_elimination.h 2025-08-14T21:48:55.1053939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\hoist_conv_packed_params.h 2025-08-14T21:48:55.1057955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inliner.h 2025-08-14T21:48:55.1061954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inline_autodiff_subgraphs.h 2025-08-14T21:48:55.1065983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inline_forked_closures.h 2025-08-14T21:48:55.1069845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inline_fork_wait.h 2025-08-14T21:48:55.1073878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\inplace_check.h 2025-08-14T21:48:55.1078074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\insert_guards.h 2025-08-14T21:48:55.1082203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\integer_value_refinement.h 2025-08-14T21:48:55.1090578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lift_closures.h 2025-08-14T21:48:55.1094703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\liveness.h 2025-08-14T21:48:55.1098363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\loop_unrolling.h 2025-08-14T21:48:55.1102445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lower_grad_of.h 2025-08-14T21:48:55.1106649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lower_graph.h 2025-08-14T21:48:55.1110625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\lower_tuples.h 2025-08-14T21:48:55.1114705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\metal_rewrite.h 2025-08-14T21:48:55.1118659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\mkldnn_rewrite.h 2025-08-14T21:48:55.1122801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\mobile_optimizer_type.h 2025-08-14T21:48:55.1126865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\normalize_ops.h 2025-08-14T21:48:55.1138030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onednn_graph_fuser.h 2025-08-14T21:48:55.1141875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx.h 2025-08-14T21:48:55.1146137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\pass_manager.h 2025-08-14T21:48:55.1150218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole.h 2025-08-14T21:48:55.1153991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_alias_sensitive.h 2025-08-14T21:48:55.1158086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_dict_idioms.h 2025-08-14T21:48:55.1162693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_list_idioms.h 2025-08-14T21:48:55.1166848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\peephole_non_tensor.h 2025-08-14T21:48:55.1171142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\prepack_folding.h 2025-08-14T21:48:55.1175046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\refine_tuple_types.h 2025-08-14T21:48:55.1179096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_dropout.h 2025-08-14T21:48:55.1198856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_exceptions.h 2025-08-14T21:48:55.1202750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_expands.h 2025-08-14T21:48:55.1206816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_inplace_ops.h 2025-08-14T21:48:55.1210993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_mutation.h 2025-08-14T21:48:55.1214926Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\remove_redundant_profiles.h 2025-08-14T21:48:55.1219163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\replacement_of_old_operators.h 2025-08-14T21:48:55.1223569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\requires_grad_analysis.h 2025-08-14T21:48:55.1227835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\restore_mutation.h 2025-08-14T21:48:55.1231779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\shape_analysis.h 2025-08-14T21:48:55.1240177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\specialize_autogradzero.h 2025-08-14T21:48:55.1244500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\subgraph_rewrite.h 2025-08-14T21:48:55.1248456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\symbolic_shape_analysis.h 2025-08-14T21:48:55.1252430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\symbolic_shape_cache.h 2025-08-14T21:48:55.1256383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\symbolic_shape_runtime_fusion.h 2025-08-14T21:48:55.1260273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\tensorexpr_fuser.h 2025-08-14T21:48:55.1264559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\update_differentiable_graph_requires_grad.h 2025-08-14T21:48:55.1270290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\value_refinement_utils.h 2025-08-14T21:48:55.1276047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\variadic_ops.h 2025-08-14T21:48:55.1280575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\vulkan_rewrite.h 2025-08-14T21:48:55.1284780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\xnnpack_rewrite.h 2025-08-14T21:48:55.1293759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\dbr_quantization\remove_redundant_aliases.h 2025-08-14T21:48:55.1303215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\cast_all_constant_to_floating.h 2025-08-14T21:48:55.1307385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\constant_fold.h 2025-08-14T21:48:55.1311290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\constant_map.h 2025-08-14T21:48:55.1315713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\deduplicate_initializers.h 2025-08-14T21:48:55.1324477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\eliminate_unused_items.h 2025-08-14T21:48:55.1328655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\eval_peephole.h 2025-08-14T21:48:55.1332629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\fixup_onnx_controlflow.h 2025-08-14T21:48:55.1336947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\function_extraction.h 2025-08-14T21:48:55.1340663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\function_substitution.h 2025-08-14T21:48:55.1344600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\helper.h 2025-08-14T21:48:55.1348605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\list_model_parameters.h 2025-08-14T21:48:55.1352884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\naming.h 2025-08-14T21:48:55.1356853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\onnx_log.h 2025-08-14T21:48:55.1360908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\peephole.h 2025-08-14T21:48:55.1364870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\prepare_division_for_onnx.h 2025-08-14T21:48:55.1368816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\preprocess_for_onnx.h 2025-08-14T21:48:55.1372568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\remove_inplace_ops_for_onnx.h 2025-08-14T21:48:55.1376517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\scalar_type_analysis.h 2025-08-14T21:48:55.1381356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\shape_type_inference.h 2025-08-14T21:48:55.1384812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\unpack_quantized_weights.h 2025-08-14T21:48:55.1400502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\autograd_function_process.h 2025-08-14T21:48:55.1402468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\common.h 2025-08-14T21:48:55.1406733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_conversion.h 2025-08-14T21:48:55.1415016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion\pattern_encapsulation.h 2025-08-14T21:48:55.1425495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\dedup_module_uses.h 2025-08-14T21:48:55.1429317Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\finalize.h 2025-08-14T21:48:55.1433329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\fusion_passes.h 2025-08-14T21:48:55.1438081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\helper.h 2025-08-14T21:48:55.1445557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\insert_observers.h 2025-08-14T21:48:55.1450887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\insert_quant_dequant.h 2025-08-14T21:48:55.1453767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\quantization_patterns.h 2025-08-14T21:48:55.1458609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\quantization_type.h 2025-08-14T21:48:55.1462564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\quantization\register_packed_params.h 2025-08-14T21:48:55.1471706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\check_alias_annotation.h 2025-08-14T21:48:55.1475654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\memory_dag.h 2025-08-14T21:48:55.1479472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\optimization_utils.h 2025-08-14T21:48:55.1487514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\op_registry.h 2025-08-14T21:48:55.1491445Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\passes\utils\subgraph_utils.h 2025-08-14T21:48:55.1500593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\init.h 2025-08-14T21:48:55.1504472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\module_python.h 2025-08-14T21:48:55.1508867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\pybind.h 2025-08-14T21:48:55.1512631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\pybind_utils.h 2025-08-14T21:48:55.1517018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_arg_flatten.h 2025-08-14T21:48:55.1525558Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_custom_class.h 2025-08-14T21:48:55.1529780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_dict.h 2025-08-14T21:48:55.1533988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_ir.h 2025-08-14T21:48:55.1538021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_ivalue.h 2025-08-14T21:48:55.1542012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_list.h 2025-08-14T21:48:55.1546156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_sugared_value.h 2025-08-14T21:48:55.1550320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_tracer.h 2025-08-14T21:48:55.1554274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\python_tree_views.h 2025-08-14T21:48:55.1559162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\script_init.h 2025-08-14T21:48:55.1562414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\update_graph_executor_opt.h 2025-08-14T21:48:55.1566380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\python\utf8_decoding_ignore.h 2025-08-14T21:48:55.1575357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\argument_spec.h 2025-08-14T21:48:55.1579269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\autodiff.h 2025-08-14T21:48:55.1583209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\calculate_necessary_args.h 2025-08-14T21:48:55.1587092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\custom_operator.h 2025-08-14T21:48:55.1596028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\decomposition_registry.h 2025-08-14T21:48:55.1600154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\decomposition_registry_util.h 2025-08-14T21:48:55.1604262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\exception_message.h 2025-08-14T21:48:55.1608634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\graph_executor.h 2025-08-14T21:48:55.1612509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\graph_executor_impl.h 2025-08-14T21:48:55.1616380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\graph_iterator.h 2025-08-14T21:48:55.1620496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\instruction.h 2025-08-14T21:48:55.1624849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter.h 2025-08-14T21:48:55.1633423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\jit_exception.h 2025-08-14T21:48:55.1634162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\jit_trace.h 2025-08-14T21:48:55.1640210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\logging.h 2025-08-14T21:48:55.1641531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\operator.h 2025-08-14T21:48:55.1647305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\operator_options.h 2025-08-14T21:48:55.1649506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\print_handler.h 2025-08-14T21:48:55.1654356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\profiling_graph_executor_impl.h 2025-08-14T21:48:55.1658061Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\profiling_record.h 2025-08-14T21:48:55.1667173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\register_ops_utils.h 2025-08-14T21:48:55.1671225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\script_profile.h 2025-08-14T21:48:55.1675330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\serialized_shape_function_registry.h 2025-08-14T21:48:55.1679181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\shape_function_registry.h 2025-08-14T21:48:55.1683367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\simple_graph_executor_impl.h 2025-08-14T21:48:55.1687371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\slice_indices_adjust.h 2025-08-14T21:48:55.1691613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\symbolic_script.h 2025-08-14T21:48:55.1695555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\symbolic_shape_registry.h 2025-08-14T21:48:55.1701391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\symbolic_shape_registry_util.h 2025-08-14T21:48:55.1710394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\vararg_functions.h 2025-08-14T21:48:55.1714223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\variable_tensor_list.h 2025-08-14T21:48:55.1722442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\can_emit_inline.h 2025-08-14T21:48:55.1726355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\code_impl.h 2025-08-14T21:48:55.1730669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\frame.h 2025-08-14T21:48:55.1734452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\interpreter\preprocess_graph.h 2025-08-14T21:48:55.1747159Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\fusion.h 2025-08-14T21:48:55.1751023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\impl.h 2025-08-14T21:48:55.1755142Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\init.h 2025-08-14T21:48:55.1759107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\memory_planner.h 2025-08-14T21:48:55.1762729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\ops.h 2025-08-14T21:48:55.1767440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\passes.h 2025-08-14T21:48:55.1777507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\ProcessedNodeInputs.h 2025-08-14T21:48:55.1782503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\processed_node_wrapper.h 2025-08-14T21:48:55.1785644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\static_method.h 2025-08-14T21:48:55.1789518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\runtime\static\te_wrapper.h 2025-08-14T21:48:55.1799030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\callstack_debug_info_serialization.h 2025-08-14T21:48:55.1803164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\export.h 2025-08-14T21:48:55.1807211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\export_bytecode.h 2025-08-14T21:48:55.1815672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\flatbuffer_serializer.h 2025-08-14T21:48:55.1819950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\flatbuffer_serializer_jit.h 2025-08-14T21:48:55.1824477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import.h 2025-08-14T21:48:55.1828643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_export_constants.h 2025-08-14T21:48:55.1832602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_export_functions.h 2025-08-14T21:48:55.1836465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_export_helpers.h 2025-08-14T21:48:55.1840623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_read.h 2025-08-14T21:48:55.1844503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\import_source.h 2025-08-14T21:48:55.1848693Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\mobile_bytecode_generated.h 2025-08-14T21:48:55.1853447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\onnx.h 2025-08-14T21:48:55.1857240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\pickle.h 2025-08-14T21:48:55.1860941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\pickler.h 2025-08-14T21:48:55.1864794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\pickler_helper.h 2025-08-14T21:48:55.1868942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\python_print.h 2025-08-14T21:48:55.1872863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\source_range_serialization.h 2025-08-14T21:48:55.1876729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\source_range_serialization_impl.h 2025-08-14T21:48:55.1880813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\storage_context.h 2025-08-14T21:48:55.1889164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\type_name_uniquer.h 2025-08-14T21:48:55.1893239Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\serialization\unpickler.h 2025-08-14T21:48:55.1902205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\analysis.h 2025-08-14T21:48:55.1905970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\block_codegen.h 2025-08-14T21:48:55.1910175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\bounds_inference.h 2025-08-14T21:48:55.1932028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\bounds_overlap.h 2025-08-14T21:48:55.1942454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\codegen.h 2025-08-14T21:48:55.1946822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cpp_codegen.h 2025-08-14T21:48:55.1950368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cpp_intrinsics.h 2025-08-14T21:48:55.1954550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cuda_codegen.h 2025-08-14T21:48:55.1959475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\cuda_random.h 2025-08-14T21:48:55.1962745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\eval.h 2025-08-14T21:48:55.1966658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\exceptions.h 2025-08-14T21:48:55.1971954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\expr.h 2025-08-14T21:48:55.1974663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\external_functions.h 2025-08-14T21:48:55.1978901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\external_functions_core.h 2025-08-14T21:48:55.1984687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\external_functions_registry.h 2025-08-14T21:48:55.1987101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\fwd_decls.h 2025-08-14T21:48:55.1991256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\graph_opt.h 2025-08-14T21:48:55.1997130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\half_support.h 2025-08-14T21:48:55.1999684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\hash_provider.h 2025-08-14T21:48:55.2003583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\intrinsic_symbols.h 2025-08-14T21:48:55.2007466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir.h 2025-08-14T21:48:55.2016589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_cloner.h 2025-08-14T21:48:55.2020384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_mutator.h 2025-08-14T21:48:55.2024554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_printer.h 2025-08-14T21:48:55.2028848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_simplifier.h 2025-08-14T21:48:55.2032522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_verifier.h 2025-08-14T21:48:55.2036732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\ir_visitor.h 2025-08-14T21:48:55.2040747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\kernel.h 2025-08-14T21:48:55.2044546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\llvm_codegen.h 2025-08-14T21:48:55.2048722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\llvm_jit.h 2025-08-14T21:48:55.2052404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\loopnest.h 2025-08-14T21:48:55.2056442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\loopnest_randomization.h 2025-08-14T21:48:55.2064875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\lowerings.h 2025-08-14T21:48:55.2069494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\mem_dependency_checker.h 2025-08-14T21:48:55.2073669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\reduction.h 2025-08-14T21:48:55.2077539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\registerizer.h 2025-08-14T21:48:55.2081534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\stmt.h 2025-08-14T21:48:55.2085528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\tensor.h 2025-08-14T21:48:55.2089354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\tensorexpr_init.h 2025-08-14T21:48:55.2093763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\types.h 2025-08-14T21:48:55.2097294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\unique_name_manager.h 2025-08-14T21:48:55.2101351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\var_substitutor.h 2025-08-14T21:48:55.2110542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\conv2d.h 2025-08-14T21:48:55.2114974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\matmul.h 2025-08-14T21:48:55.2119109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\misc.h 2025-08-14T21:48:55.2123087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\norm.h 2025-08-14T21:48:55.2126968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\operators.h 2025-08-14T21:48:55.2137970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\pointwise.h 2025-08-14T21:48:55.2142655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\quantization.h 2025-08-14T21:48:55.2147066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\reduction.h 2025-08-14T21:48:55.2151398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\tensorexpr\operators\softmax.h 2025-08-14T21:48:55.2160870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\testing\catch_utils.hpp 2025-08-14T21:48:55.2165020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\testing\file_check.h 2025-08-14T21:48:55.2169721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\jit\testing\hooks_for_testing.h 2025-08-14T21:48:55.2183962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\backend_data.h 2025-08-14T21:48:55.2188255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\backend_device.h 2025-08-14T21:48:55.2193089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\backend_interface.h 2025-08-14T21:48:55.2197346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\backend\lowering_context.h 2025-08-14T21:48:55.2210171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\cache.h 2025-08-14T21:48:55.2214679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\config.h 2025-08-14T21:48:55.2221156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\debug_util.h 2025-08-14T21:48:55.2222486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\dynamic_ir.h 2025-08-14T21:48:55.2228557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\hash.h 2025-08-14T21:48:55.2234806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\helpers.h 2025-08-14T21:48:55.2240636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir.h 2025-08-14T21:48:55.2242396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_builder.h 2025-08-14T21:48:55.2246177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_dump_util.h 2025-08-14T21:48:55.2250225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_metadata.h 2025-08-14T21:48:55.2253984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ir_util.h 2025-08-14T21:48:55.2257931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\lazy_graph_executor.h 2025-08-14T21:48:55.2261555Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\metrics.h 2025-08-14T21:48:55.2265389Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\multi_wait.h 2025-08-14T21:48:55.2269370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\permutation_util.h 2025-08-14T21:48:55.2273059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\shape.h 2025-08-14T21:48:55.2276900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\shape_inference.h 2025-08-14T21:48:55.2281124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\tensor.h 2025-08-14T21:48:55.2285005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\tensor_impl.h 2025-08-14T21:48:55.2288727Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\tensor_util.h 2025-08-14T21:48:55.2292869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\thread_pool.h 2025-08-14T21:48:55.2296824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\trie.h 2025-08-14T21:48:55.2300516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\unique.h 2025-08-14T21:48:55.2304326Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\util.h 2025-08-14T21:48:55.2317488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\internal_ops\ltc_ops.h 2025-08-14T21:48:55.2325765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ops\arithmetic_ir_ops.h 2025-08-14T21:48:55.2329426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\core\ops\utils.h 2025-08-14T21:48:55.2339123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\generated\LazyIr.h 2025-08-14T21:48:55.2344223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\generated\LazyNativeFunctions.h 2025-08-14T21:48:55.2349147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\generated\LazyNonNativeIr.h 2025-08-14T21:48:55.2357490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\python\init.h 2025-08-14T21:48:55.2361183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\python\python_util.h 2025-08-14T21:48:55.2373742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\config.h 2025-08-14T21:48:55.2377468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\dynamic_ir.h 2025-08-14T21:48:55.2381288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ir_builder.h 2025-08-14T21:48:55.2385608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\tensor_aten_ops.h 2025-08-14T21:48:55.2394993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_autograd_functions.h 2025-08-14T21:48:55.2398919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_backend_impl.h 2025-08-14T21:48:55.2403008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_eager_fallback.h 2025-08-14T21:48:55.2406787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_lowering_context.h 2025-08-14T21:48:55.2410736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_node.h 2025-08-14T21:48:55.2414418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ts_node_lowering.h 2025-08-14T21:48:55.2422292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ops\device_data.h 2025-08-14T21:48:55.2426156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ops\generic.h 2025-08-14T21:48:55.2430000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\lazy\ts_backend\ops\to_copy.h 2025-08-14T21:48:55.2439134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\monitor\counters.h 2025-08-14T21:48:55.2443278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\monitor\events.h 2025-08-14T21:48:55.2446883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\monitor\python_init.h 2025-08-14T21:48:55.2455235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\mps\Module.h 2025-08-14T21:48:55.2462774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\mtia\Module.h 2025-08-14T21:48:55.2470517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\mtia\profiler\MTIAMemoryProfiler.h 2025-08-14T21:48:55.2478916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\multiprocessing\init.h 2025-08-14T21:48:55.2487578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\onnx\back_compat.h 2025-08-14T21:48:55.2493064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\onnx\init.h 2025-08-14T21:48:55.2495059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\onnx\onnx.h 2025-08-14T21:48:55.2503566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\api.h 2025-08-14T21:48:55.2507987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\collection.h 2025-08-14T21:48:55.2512269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\combined_traceback.h 2025-08-14T21:48:55.2516433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\containers.h 2025-08-14T21:48:55.2524594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\data_flow.h 2025-08-14T21:48:55.2528570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\events.h 2025-08-14T21:48:55.2533543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\kineto_client_interface.h 2025-08-14T21:48:55.2537634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\kineto_shim.h 2025-08-14T21:48:55.2541629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\perf-inl.h 2025-08-14T21:48:55.2545458Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\perf.h 2025-08-14T21:48:55.2549631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\util.h 2025-08-14T21:48:55.2557336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\orchestration\observer.h 2025-08-14T21:48:55.2561439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\orchestration\python_tracer.h 2025-08-14T21:48:55.2565522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\orchestration\vulkan.h 2025-08-14T21:48:55.2575617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\python\combined_traceback.h 2025-08-14T21:48:55.2577935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\python\init.h 2025-08-14T21:48:55.2581845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\python\pybind.h 2025-08-14T21:48:55.2590207Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\execution_trace_observer.h 2025-08-14T21:48:55.2594385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\itt_observer.h 2025-08-14T21:48:55.2598037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\nvtx_observer.h 2025-08-14T21:48:55.2607035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\standalone\privateuse1_observer.h 2025-08-14T21:48:55.2614880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\stubs\base.h 2025-08-14T21:48:55.2623106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\action.h 2025-08-14T21:48:55.2626962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\communicate.h 2025-08-14T21:48:55.2643350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\debug_info.h 2025-08-14T21:48:55.2643665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\dwarf_enums.h 2025-08-14T21:48:55.2644022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\dwarf_symbolize_enums.h 2025-08-14T21:48:55.2650391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\eh_frame_hdr.h 2025-08-14T21:48:55.2651953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\fast_symbolizer.h 2025-08-14T21:48:55.2657307Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\fde.h 2025-08-14T21:48:55.2659984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\lexer.h 2025-08-14T21:48:55.2664421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\line_number_program.h 2025-08-14T21:48:55.2668289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\mem_file.h 2025-08-14T21:48:55.2672108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\range_table.h 2025-08-14T21:48:55.2676353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\sections.h 2025-08-14T21:48:55.2679920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\unwind.h 2025-08-14T21:48:55.2683788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\unwinder.h 2025-08-14T21:48:55.2687654Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\profiler\unwind\unwind_error.h 2025-08-14T21:48:55.2703091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\accelerator.h 2025-08-14T21:48:55.2707248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\library.h 2025-08-14T21:48:55.2711777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\ops.h 2025-08-14T21:48:55.2715738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\stable\tensor.h 2025-08-14T21:48:55.2723691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\tensor\python_tensor.h 2025-08-14T21:48:55.2733494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\byte_order.h 2025-08-14T21:48:55.2738488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\cpp_stacktraces.h 2025-08-14T21:48:55.2742675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\cuda_enabled.h 2025-08-14T21:48:55.2747832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\device_lazy_init.h 2025-08-14T21:48:55.2757636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\disable_torch_function.h 2025-08-14T21:48:55.2762169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\generated_serialization_types.h 2025-08-14T21:48:55.2768255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\init.h 2025-08-14T21:48:55.2772169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\invalid_arguments.h 2025-08-14T21:48:55.2776155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\nested.h 2025-08-14T21:48:55.2780306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\numpy_stub.h 2025-08-14T21:48:55.2784632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\object_ptr.h 2025-08-14T21:48:55.2789004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\out_types.h 2025-08-14T21:48:55.2792874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pybind.h 2025-08-14T21:48:55.2797022Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pycfunction_helpers.h 2025-08-14T21:48:55.2801078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pyobject_preservation.h 2025-08-14T21:48:55.2805018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\pythoncapi_compat.h 2025-08-14T21:48:55.2809378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_arg_parser.h 2025-08-14T21:48:55.2813551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_compat.h 2025-08-14T21:48:55.2817601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_dispatch.h 2025-08-14T21:48:55.2821548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_numbers.h 2025-08-14T21:48:55.2829920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_raii.h 2025-08-14T21:48:55.2833995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_scalars.h 2025-08-14T21:48:55.2837987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_strings.h 2025-08-14T21:48:55.2842001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_stub.h 2025-08-14T21:48:55.2846015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_symnode.h 2025-08-14T21:48:55.2850222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_torch_function_mode.h 2025-08-14T21:48:55.2854263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\python_tuples.h 2025-08-14T21:48:55.2858202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\schema_info.h 2025-08-14T21:48:55.2862833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\six.h 2025-08-14T21:48:55.2866510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\structseq.h 2025-08-14T21:48:55.2874686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_apply.h 2025-08-14T21:48:55.2878785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_dtypes.h 2025-08-14T21:48:55.2882809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_flatten.h 2025-08-14T21:48:55.2887141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_layouts.h 2025-08-14T21:48:55.2890976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_list.h 2025-08-14T21:48:55.2895392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_memoryformats.h 2025-08-14T21:48:55.2899320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_new.h 2025-08-14T21:48:55.2903294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_numpy.h 2025-08-14T21:48:55.2907179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_qschemes.h 2025-08-14T21:48:55.2915236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\tensor_types.h 2025-08-14T21:48:55.2919991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\throughput_benchmark-inl.h 2025-08-14T21:48:55.2923832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\throughput_benchmark.h 2025-08-14T21:48:55.2927678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\torch_dispatch_mode.h 2025-08-14T21:48:55.2931578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\variadic.h 2025-08-14T21:48:55.2935143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\utils\verbose.h 2025-08-14T21:48:55.2944650Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\xpu\Event.h 2025-08-14T21:48:55.2948365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\xpu\Module.h 2025-08-14T21:48:55.2952048Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\csrc\xpu\Stream.h 2025-08-14T21:48:55.2966052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\core\ScalarType.h 2025-08-14T21:48:55.2977945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\cpu\vec\intrinsics.h 2025-08-14T21:48:55.2982178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\cpu\vec\vec_half.h 2025-08-14T21:48:55.2989741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\cpu\vec\vec256\missing_vld1_neon.h 2025-08-14T21:48:55.2993749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\cpu\vec\vec256\missing_vst1_neon.h 2025-08-14T21:48:55.3002884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\macros\cmake_macros.h 2025-08-14T21:48:55.3007300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\macros\Export.h 2025-08-14T21:48:55.3010894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\macros\Macros.h 2025-08-14T21:48:55.3033249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\BFloat16.h 2025-08-14T21:48:55.3033565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\bits.h 2025-08-14T21:48:55.3034753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\bit_cast.h 2025-08-14T21:48:55.3035037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\complex.h 2025-08-14T21:48:55.3036876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Exception.h 2025-08-14T21:48:55.3040999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float4_e2m1fn_x2.h 2025-08-14T21:48:55.3049862Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e4m3fn.h 2025-08-14T21:48:55.3054457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e4m3fnuz.h 2025-08-14T21:48:55.3058709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e5m2.h 2025-08-14T21:48:55.3062737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e5m2fnuz.h 2025-08-14T21:48:55.3066604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_e8m0fnu.h 2025-08-14T21:48:55.3070942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Float8_fnuz_cvt.h 2025-08-14T21:48:55.3075046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\floating_point_utils.h 2025-08-14T21:48:55.3094960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\Half.h 2025-08-14T21:48:55.3098907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\qint32.h 2025-08-14T21:48:55.3102784Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\qint8.h 2025-08-14T21:48:55.3106719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\quint2x4.h 2025-08-14T21:48:55.3110778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\quint4x2.h 2025-08-14T21:48:55.3115910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\quint8.h 2025-08-14T21:48:55.3119455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\shim_utils.h 2025-08-14T21:48:55.3123772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\include\torch\headeronly\util\TypeSafeSignMath.h 2025-08-14T21:48:55.3136859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\annotations.py 2025-08-14T21:48:55.3141163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\frontend.py 2025-08-14T21:48:55.3145575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\generate_bytecode.py 2025-08-14T21:48:55.3150012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\quantized.py 2025-08-14T21:48:55.3159692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\supported_ops.py 2025-08-14T21:48:55.3163834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\unsupported_tensor_ops.py 2025-08-14T21:48:55.3168985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_async.py 2025-08-14T21:48:55.3173036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_await.py 2025-08-14T21:48:55.3177866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_builtins.py 2025-08-14T21:48:55.3181631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_check.py 2025-08-14T21:48:55.3186460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_dataclass_impls.py 2025-08-14T21:48:55.3190821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_decompositions.py 2025-08-14T21:48:55.3194476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_decomposition_utils.py 2025-08-14T21:48:55.3198609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_freeze.py 2025-08-14T21:48:55.3202523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_fuser.py 2025-08-14T21:48:55.3206262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_ir_utils.py 2025-08-14T21:48:55.3210392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_logging.py 2025-08-14T21:48:55.3214359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_monkeytype_config.py 2025-08-14T21:48:55.3218094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_pickle.py 2025-08-14T21:48:55.3222104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_recursive.py 2025-08-14T21:48:55.3226235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_script.py 2025-08-14T21:48:55.3230230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_script.pyi 2025-08-14T21:48:55.3234081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_serialization.py 2025-08-14T21:48:55.3237728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_shape_functions.py 2025-08-14T21:48:55.3245964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_state.py 2025-08-14T21:48:55.3250260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_trace.py 2025-08-14T21:48:55.3254390Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__init__.py 2025-08-14T21:48:55.3261786Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\mobile\__init__.py 2025-08-14T21:48:55.3269984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\mobile\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:55.3278578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\_property_propagation.py 2025-08-14T21:48:55.3282454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\__init__.py 2025-08-14T21:48:55.3289407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\__pycache__\_property_propagation.cpython-39.pyc 2025-08-14T21:48:55.3293459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\_passes\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:55.3302244Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\annotations.cpython-39.pyc 2025-08-14T21:48:55.3306413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\frontend.cpython-39.pyc 2025-08-14T21:48:55.3310643Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\generate_bytecode.cpython-39.pyc 2025-08-14T21:48:55.3320675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\quantized.cpython-39.pyc 2025-08-14T21:48:55.3324617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\supported_ops.cpython-39.pyc 2025-08-14T21:48:55.3328284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\unsupported_tensor_ops.cpython-39.pyc 2025-08-14T21:48:55.3332188Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_async.cpython-39.pyc 2025-08-14T21:48:55.3336181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_await.cpython-39.pyc 2025-08-14T21:48:55.3340134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_builtins.cpython-39.pyc 2025-08-14T21:48:55.3343975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_check.cpython-39.pyc 2025-08-14T21:48:55.3348173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_dataclass_impls.cpython-39.pyc 2025-08-14T21:48:55.3352085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_decompositions.cpython-39.pyc 2025-08-14T21:48:55.3355941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_decomposition_utils.cpython-39.pyc 2025-08-14T21:48:55.3359674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_freeze.cpython-39.pyc 2025-08-14T21:48:55.3363738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_fuser.cpython-39.pyc 2025-08-14T21:48:55.3367917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_ir_utils.cpython-39.pyc 2025-08-14T21:48:55.3372323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_logging.cpython-39.pyc 2025-08-14T21:48:55.3380751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_monkeytype_config.cpython-39.pyc 2025-08-14T21:48:55.3384702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_pickle.cpython-39.pyc 2025-08-14T21:48:55.3389481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_recursive.cpython-39.pyc 2025-08-14T21:48:55.3393974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_script.cpython-39.pyc 2025-08-14T21:48:55.3398501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_serialization.cpython-39.pyc 2025-08-14T21:48:55.3402705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_shape_functions.cpython-39.pyc 2025-08-14T21:48:55.3406621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_state.cpython-39.pyc 2025-08-14T21:48:55.3410757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\_trace.cpython-39.pyc 2025-08-14T21:48:55.3420110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\jit\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:55.3430728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\aoti_custom_ops.dll 2025-08-14T21:48:55.3436158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\aoti_custom_ops.lib 2025-08-14T21:48:55.3440372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\backend_with_compiler.dll 2025-08-14T21:48:55.3565956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\backend_with_compiler.lib 2025-08-14T21:48:55.3570078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\c10.dll 2025-08-14T21:48:55.3579559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\c10.lib 2025-08-14T21:48:55.3587853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\cpuinfo.lib 2025-08-14T21:48:55.3592480Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\dnnl.lib 2025-08-14T21:48:55.7325900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\fmt.lib 2025-08-14T21:48:55.7339591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\jitbackend_test.dll 2025-08-14T21:48:55.7346740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\jitbackend_test.lib 2025-08-14T21:48:55.7353231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\kineto.lib 2025-08-14T21:48:55.7474616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libittnotify.lib 2025-08-14T21:48:55.7483373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libprotobuf-lite.lib 2025-08-14T21:48:55.7521216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libprotobuf.lib 2025-08-14T21:48:55.7786995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libprotoc.lib 2025-08-14T21:48:55.7998349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\microkernels-prod.lib 2025-08-14T21:48:55.8018213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\pthreadpool.lib 2025-08-14T21:48:55.8025617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\shm.dll 2025-08-14T21:48:55.8031497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\shm.lib 2025-08-14T21:48:55.8036147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\sleef.lib 2025-08-14T21:48:55.8089683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch.dll 2025-08-14T21:48:55.8093137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch.lib 2025-08-14T21:48:55.8097733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torchbind_test.dll 2025-08-14T21:48:55.9460197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torchbind_test.lib 2025-08-14T21:48:55.9463835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_cpu.dll 2025-08-14T21:48:56.0752453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_cpu.lib 2025-08-14T21:48:56.0905488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_global_deps.dll 2025-08-14T21:48:56.0909136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_python.dll 2025-08-14T21:48:56.0997840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\torch_python.lib 2025-08-14T21:48:56.1002918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\XNNPACK.lib 2025-08-14T21:48:56.1022830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\_C.lib 2025-08-14T21:48:56.1029395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\alloc_info.h 2025-08-14T21:48:56.1033036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\err.h 2025-08-14T21:48:56.1036738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\libshm.h 2025-08-14T21:48:56.1041968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm\socket.h 2025-08-14T21:48:56.1048442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\lib\libshm_windows\libshm.h 2025-08-14T21:48:56.1057057Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\linalg\__init__.py 2025-08-14T21:48:56.1067343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\linalg\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.1075611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\_docs.py 2025-08-14T21:48:56.1079980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\_ops.py 2025-08-14T21:48:56.1083393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__init__.py 2025-08-14T21:48:56.1092575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\binary.py 2025-08-14T21:48:56.1095423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\core.py 2025-08-14T21:48:56.1099101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\creation.py 2025-08-14T21:48:56.1102660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\passthrough.py 2025-08-14T21:48:56.1107027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\reductions.py 2025-08-14T21:48:56.1123900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\unary.py 2025-08-14T21:48:56.1125570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\_ops_refs.py 2025-08-14T21:48:56.1130237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__init__.py 2025-08-14T21:48:56.1137095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\binary.cpython-39.pyc 2025-08-14T21:48:56.1142230Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\core.cpython-39.pyc 2025-08-14T21:48:56.1144732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\creation.cpython-39.pyc 2025-08-14T21:48:56.1162470Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\passthrough.cpython-39.pyc 2025-08-14T21:48:56.1164713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\reductions.cpython-39.pyc 2025-08-14T21:48:56.1168977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\unary.cpython-39.pyc 2025-08-14T21:48:56.1172366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\_ops_refs.cpython-39.pyc 2025-08-14T21:48:56.1176134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\maskedtensor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.1196222Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__pycache__\_docs.cpython-39.pyc 2025-08-14T21:48:56.1230916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__pycache__\_ops.cpython-39.pyc 2025-08-14T21:48:56.1232044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\masked\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.1233074Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\monitor\__init__.py 2025-08-14T21:48:56.1237723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\monitor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.1248165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\event.py 2025-08-14T21:48:56.1252125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\profiler.py 2025-08-14T21:48:56.1256228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__init__.py 2025-08-14T21:48:56.1264148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__pycache__\event.cpython-39.pyc 2025-08-14T21:48:56.1268078Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__pycache__\profiler.cpython-39.pyc 2025-08-14T21:48:56.1273564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mps\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.1290551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\memory.py 2025-08-14T21:48:56.1294018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\_utils.py 2025-08-14T21:48:56.1297507Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__init__.py 2025-08-14T21:48:56.1305228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__pycache__\memory.cpython-39.pyc 2025-08-14T21:48:56.1309540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:56.1313161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\mtia\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.1331084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\pool.py 2025-08-14T21:48:56.1334543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\queue.py 2025-08-14T21:48:56.1338446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\reductions.py 2025-08-14T21:48:56.1342031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\spawn.py 2025-08-14T21:48:56.1345554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\_atfork.py 2025-08-14T21:48:56.1361592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__init__.py 2025-08-14T21:48:56.1369114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\pool.cpython-39.pyc 2025-08-14T21:48:56.1373194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\queue.cpython-39.pyc 2025-08-14T21:48:56.1377574Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\reductions.cpython-39.pyc 2025-08-14T21:48:56.1391369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\spawn.cpython-39.pyc 2025-08-14T21:48:56.1395003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\_atfork.cpython-39.pyc 2025-08-14T21:48:56.1398954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\multiprocessing\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.1408750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\__init__.py 2025-08-14T21:48:56.1416152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\nested_int.py 2025-08-14T21:48:56.1419604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\nested_tensor.py 2025-08-14T21:48:56.1423453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\ops.py 2025-08-14T21:48:56.1428564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\sdpa.py 2025-08-14T21:48:56.1441373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__init__.py 2025-08-14T21:48:56.1448088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\nested_int.cpython-39.pyc 2025-08-14T21:48:56.1453913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\nested_tensor.cpython-39.pyc 2025-08-14T21:48:56.1455920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\ops.cpython-39.pyc 2025-08-14T21:48:56.1470447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\sdpa.cpython-39.pyc 2025-08-14T21:48:56.1474572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\_internal\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.1482853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nested\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.1492447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\common_types.py 2025-08-14T21:48:56.1498085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\cpp.py 2025-08-14T21:48:56.1500697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\functional.py 2025-08-14T21:48:56.1505687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\functional.pyi 2025-08-14T21:48:56.1519402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\grad.py 2025-08-14T21:48:56.1523344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\init.py 2025-08-14T21:48:56.1526827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parameter.py 2025-08-14T21:48:56.1530925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parameter.pyi 2025-08-14T21:48:56.1535889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\_reduction.py 2025-08-14T21:48:56.1538883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__init__.py 2025-08-14T21:48:56.1548586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\bias.py 2025-08-14T21:48:56.1550756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\flex_attention.py 2025-08-14T21:48:56.1554990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\_utils.py 2025-08-14T21:48:56.1558345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__init__.py 2025-08-14T21:48:56.1576155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\_paged_attention.py 2025-08-14T21:48:56.1580095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\__init__.py 2025-08-14T21:48:56.1588024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\__pycache__\_paged_attention.cpython-39.pyc 2025-08-14T21:48:56.1592715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\experimental\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.1600123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\bias.cpython-39.pyc 2025-08-14T21:48:56.1604155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\flex_attention.cpython-39.pyc 2025-08-14T21:48:56.1608158Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:56.1621742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\attention\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.1630246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\thnn.py 2025-08-14T21:48:56.1633766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\__init__.py 2025-08-14T21:48:56.1640205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\__pycache__\thnn.cpython-39.pyc 2025-08-14T21:48:56.1644234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\backends\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.1652999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\__init__.py 2025-08-14T21:48:56.1660510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\fused.py 2025-08-14T21:48:56.1664014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\__init__.py 2025-08-14T21:48:56.1671544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\__pycache__\fused.cpython-39.pyc 2025-08-14T21:48:56.1675720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.1683824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\__init__.py 2025-08-14T21:48:56.1691809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\conv_fused.py 2025-08-14T21:48:56.1696353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\linear_fused.py 2025-08-14T21:48:56.1700318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\linear_relu.py 2025-08-14T21:48:56.1704453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__init__.py 2025-08-14T21:48:56.1723214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\conv_fused.cpython-39.pyc 2025-08-14T21:48:56.1727646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\linear_fused.cpython-39.pyc 2025-08-14T21:48:56.1731788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-14T21:48:56.1745783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.1754894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\qat\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.1765420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\__init__.py 2025-08-14T21:48:56.1774864Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\__init__.py 2025-08-14T21:48:56.1817433Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\linear_relu.py 2025-08-14T21:48:56.1821250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\__init__.py 2025-08-14T21:48:56.1828974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-14T21:48:56.1832979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.1841672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.1848764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\bn_relu.py 2025-08-14T21:48:56.1852395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\conv_relu.py 2025-08-14T21:48:56.1865228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\linear_relu.py 2025-08-14T21:48:56.1866082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__init__.py 2025-08-14T21:48:56.1871998Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\bn_relu.cpython-39.pyc 2025-08-14T21:48:56.1875679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\conv_relu.cpython-39.pyc 2025-08-14T21:48:56.1879476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\linear_relu.cpython-39.pyc 2025-08-14T21:48:56.1893539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.1901668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.1920869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\intrinsic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.1929371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\activation.py 2025-08-14T21:48:56.1933210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\adaptive.py 2025-08-14T21:48:56.1936665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\batchnorm.py 2025-08-14T21:48:56.1940309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\channelshuffle.py 2025-08-14T21:48:56.1953893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\container.py 2025-08-14T21:48:56.1957985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\conv.py 2025-08-14T21:48:56.1961738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\distance.py 2025-08-14T21:48:56.1965436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\dropout.py 2025-08-14T21:48:56.1969081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\flatten.py 2025-08-14T21:48:56.1972584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\fold.py 2025-08-14T21:48:56.1976041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\instancenorm.py 2025-08-14T21:48:56.1979622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\lazy.py 2025-08-14T21:48:56.1983150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\linear.py 2025-08-14T21:48:56.1986561Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\loss.py 2025-08-14T21:48:56.1990589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\module.py 2025-08-14T21:48:56.1994984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\normalization.py 2025-08-14T21:48:56.1999478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\padding.py 2025-08-14T21:48:56.2002551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\pixelshuffle.py 2025-08-14T21:48:56.2006501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\pooling.py 2025-08-14T21:48:56.2012003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\rnn.py 2025-08-14T21:48:56.2014512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\sparse.py 2025-08-14T21:48:56.2018395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\transformer.py 2025-08-14T21:48:56.2022175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\upsampling.py 2025-08-14T21:48:56.2025990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\utils.py 2025-08-14T21:48:56.2031286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\_functions.py 2025-08-14T21:48:56.2033416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__init__.py 2025-08-14T21:48:56.2043781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\activation.cpython-39.pyc 2025-08-14T21:48:56.2046132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\adaptive.cpython-39.pyc 2025-08-14T21:48:56.2050370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\batchnorm.cpython-39.pyc 2025-08-14T21:48:56.2063968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\channelshuffle.cpython-39.pyc 2025-08-14T21:48:56.2069253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\container.cpython-39.pyc 2025-08-14T21:48:56.2071876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:48:56.2076014Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\distance.cpython-39.pyc 2025-08-14T21:48:56.2081845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\dropout.cpython-39.pyc 2025-08-14T21:48:56.2084280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\flatten.cpython-39.pyc 2025-08-14T21:48:56.2088238Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\fold.cpython-39.pyc 2025-08-14T21:48:56.2091888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\instancenorm.cpython-39.pyc 2025-08-14T21:48:56.2096240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\lazy.cpython-39.pyc 2025-08-14T21:48:56.2100852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:56.2104277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\loss.cpython-39.pyc 2025-08-14T21:48:56.2108767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\module.cpython-39.pyc 2025-08-14T21:48:56.2113575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\normalization.cpython-39.pyc 2025-08-14T21:48:56.2117254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\padding.cpython-39.pyc 2025-08-14T21:48:56.2133120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\pixelshuffle.cpython-39.pyc 2025-08-14T21:48:56.2135751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\pooling.cpython-39.pyc 2025-08-14T21:48:56.2139829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:48:56.2144876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\sparse.cpython-39.pyc 2025-08-14T21:48:56.2147743Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\transformer.cpython-39.pyc 2025-08-14T21:48:56.2151848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\upsampling.cpython-39.pyc 2025-08-14T21:48:56.2156829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:56.2159782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\_functions.cpython-39.pyc 2025-08-14T21:48:56.2164377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.5988227Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\comm.py 2025-08-14T21:48:56.5991533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\data_parallel.py 2025-08-14T21:48:56.5995345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\distributed.py 2025-08-14T21:48:56.5999999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\parallel_apply.py 2025-08-14T21:48:56.6014003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\replicate.py 2025-08-14T21:48:56.6017337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\scatter_gather.py 2025-08-14T21:48:56.6021313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\_functions.py 2025-08-14T21:48:56.6024979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__init__.py 2025-08-14T21:48:56.6033099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\comm.cpython-39.pyc 2025-08-14T21:48:56.6037168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\data_parallel.cpython-39.pyc 2025-08-14T21:48:56.6041256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\distributed.cpython-39.pyc 2025-08-14T21:48:56.6055908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\parallel_apply.cpython-39.pyc 2025-08-14T21:48:56.6060104Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\replicate.cpython-39.pyc 2025-08-14T21:48:56.6063863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\scatter_gather.cpython-39.pyc 2025-08-14T21:48:56.6067747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\_functions.cpython-39.pyc 2025-08-14T21:48:56.6071726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\parallel\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.6081702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\__init__.py 2025-08-14T21:48:56.6089952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\__init__.py 2025-08-14T21:48:56.6097212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\linear.py 2025-08-14T21:48:56.6100818Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\__init__.py 2025-08-14T21:48:56.6108265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:56.6112118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.6120284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.6129224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\conv.py 2025-08-14T21:48:56.6132912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\embedding_ops.py 2025-08-14T21:48:56.6136673Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\linear.py 2025-08-14T21:48:56.6140924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__init__.py 2025-08-14T21:48:56.6218592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:48:56.6222952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-08-14T21:48:56.6227213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:56.6241482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.6250602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\qat\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.6260803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\__init__.py 2025-08-14T21:48:56.6268426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\activation.py 2025-08-14T21:48:56.6272114Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\rnn.py 2025-08-14T21:48:56.6276322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__init__.py 2025-08-14T21:48:56.6296924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__pycache__\activation.cpython-39.pyc 2025-08-14T21:48:56.6300791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:48:56.6305028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.6399486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantizable\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.6408695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\functional.py 2025-08-14T21:48:56.6412598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\__init__.py 2025-08-14T21:48:56.6420274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\__init__.py 2025-08-14T21:48:56.6427597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\conv.py 2025-08-14T21:48:56.6430987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\linear.py 2025-08-14T21:48:56.6434573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\rnn.py 2025-08-14T21:48:56.6438122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__init__.py 2025-08-14T21:48:56.6445493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:48:56.6449294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:56.6453270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:48:56.6466976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.6475285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\dynamic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.6483409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\activation.py 2025-08-14T21:48:56.6487306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\batchnorm.py 2025-08-14T21:48:56.6492662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\conv.py 2025-08-14T21:48:56.6494515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\dropout.py 2025-08-14T21:48:56.6499185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\embedding_ops.py 2025-08-14T21:48:56.6512024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\functional_modules.py 2025-08-14T21:48:56.6516165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\linear.py 2025-08-14T21:48:56.6520138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\normalization.py 2025-08-14T21:48:56.6523826Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\rnn.py 2025-08-14T21:48:56.6527772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\utils.py 2025-08-14T21:48:56.6531165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__init__.py 2025-08-14T21:48:56.6539919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\activation.cpython-39.pyc 2025-08-14T21:48:56.6544408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\batchnorm.cpython-39.pyc 2025-08-14T21:48:56.6549141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:48:56.6562767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\dropout.cpython-39.pyc 2025-08-14T21:48:56.6567147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\embedding_ops.cpython-39.pyc 2025-08-14T21:48:56.6571883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\functional_modules.cpython-39.pyc 2025-08-14T21:48:56.6576247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:56.6580157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\normalization.cpython-39.pyc 2025-08-14T21:48:56.6584534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:48:56.6588886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:56.6594073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.6612670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\__init__.py 2025-08-14T21:48:56.6619915Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\conv.py 2025-08-14T21:48:56.6623800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\linear.py 2025-08-14T21:48:56.6627911Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\rnn.py 2025-08-14T21:48:56.6631603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\sparse.py 2025-08-14T21:48:56.6635231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\utils.py 2025-08-14T21:48:56.6638900Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__init__.py 2025-08-14T21:48:56.6655702Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\conv.cpython-39.pyc 2025-08-14T21:48:56.6659621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\linear.cpython-39.pyc 2025-08-14T21:48:56.6663356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:48:56.6676407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\sparse.cpython-39.pyc 2025-08-14T21:48:56.6680167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:56.6684353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\modules\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.6693141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\_reference\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.6701570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\__pycache__\functional.cpython-39.pyc 2025-08-14T21:48:56.6705970Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\quantized\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.6714923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\clip_grad.py 2025-08-14T21:48:56.6718737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\convert_parameters.py 2025-08-14T21:48:56.6722430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\fusion.py 2025-08-14T21:48:56.6726524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\init.py 2025-08-14T21:48:56.6730040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\memory_format.py 2025-08-14T21:48:56.6742576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\parametrizations.py 2025-08-14T21:48:56.6746854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\parametrize.py 2025-08-14T21:48:56.6752208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\prune.py 2025-08-14T21:48:56.6755904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\rnn.py 2025-08-14T21:48:56.6759624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\spectral_norm.py 2025-08-14T21:48:56.6763334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\stateless.py 2025-08-14T21:48:56.6766898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\weight_norm.py 2025-08-14T21:48:56.6770680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_deprecation_utils.py 2025-08-14T21:48:56.6774598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_named_member_accessor.py 2025-08-14T21:48:56.6778217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_per_sample_grad.py 2025-08-14T21:48:56.6782425Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__init__.py 2025-08-14T21:48:56.6791204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\conv_expanded_weights.py 2025-08-14T21:48:56.6795004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\conv_utils.py 2025-08-14T21:48:56.6798850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\embedding_expanded_weights.py 2025-08-14T21:48:56.6812992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\expanded_weights_impl.py 2025-08-14T21:48:56.6816714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\expanded_weights_utils.py 2025-08-14T21:48:56.6820523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\group_norm_expanded_weights.py 2025-08-14T21:48:56.6825903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\instance_norm_expanded_weights.py 2025-08-14T21:48:56.6829895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\layer_norm_expanded_weights.py 2025-08-14T21:48:56.6833670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\linear_expanded_weights.py 2025-08-14T21:48:56.6837418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__init__.py 2025-08-14T21:48:56.6845566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\conv_expanded_weights.cpython-39.pyc 2025-08-14T21:48:56.6849469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\conv_utils.cpython-39.pyc 2025-08-14T21:48:56.6853819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\embedding_expanded_weights.cpython-39.pyc 2025-08-14T21:48:56.6867814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\expanded_weights_impl.cpython-39.pyc 2025-08-14T21:48:56.6872175Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\expanded_weights_utils.cpython-39.pyc 2025-08-14T21:48:56.6876731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\group_norm_expanded_weights.cpython-39.pyc 2025-08-14T21:48:56.6881029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\instance_norm_expanded_weights.cpython-39.pyc 2025-08-14T21:48:56.6885413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\layer_norm_expanded_weights.cpython-39.pyc 2025-08-14T21:48:56.6889973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\linear_expanded_weights.cpython-39.pyc 2025-08-14T21:48:56.6894131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\_expanded_weights\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.6903236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\clip_grad.cpython-39.pyc 2025-08-14T21:48:56.6907327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\convert_parameters.cpython-39.pyc 2025-08-14T21:48:56.6911373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\fusion.cpython-39.pyc 2025-08-14T21:48:56.6925198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\init.cpython-39.pyc 2025-08-14T21:48:56.6930576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\memory_format.cpython-39.pyc 2025-08-14T21:48:56.6935889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\parametrizations.cpython-39.pyc 2025-08-14T21:48:56.6938999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\parametrize.cpython-39.pyc 2025-08-14T21:48:56.6943223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\prune.cpython-39.pyc 2025-08-14T21:48:56.6948491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\rnn.cpython-39.pyc 2025-08-14T21:48:56.6952224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\spectral_norm.cpython-39.pyc 2025-08-14T21:48:56.6956301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\stateless.cpython-39.pyc 2025-08-14T21:48:56.6961105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\weight_norm.cpython-39.pyc 2025-08-14T21:48:56.6964221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\_deprecation_utils.cpython-39.pyc 2025-08-14T21:48:56.6968534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\_named_member_accessor.cpython-39.pyc 2025-08-14T21:48:56.6973701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\_per_sample_grad.cpython-39.pyc 2025-08-14T21:48:56.6976522Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\utils\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.6986345Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\common_types.cpython-39.pyc 2025-08-14T21:48:56.6992534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\cpp.cpython-39.pyc 2025-08-14T21:48:56.6995065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\functional.cpython-39.pyc 2025-08-14T21:48:56.7011548Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\grad.cpython-39.pyc 2025-08-14T21:48:56.7014316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\init.cpython-39.pyc 2025-08-14T21:48:56.7053150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\parameter.cpython-39.pyc 2025-08-14T21:48:56.7056852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\_reduction.cpython-39.pyc 2025-08-14T21:48:56.7061465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\nn\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.7070642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\numa\binding.py 2025-08-14T21:48:56.7074388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\numa\__init__.py 2025-08-14T21:48:56.7081279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\numa\__pycache__\binding.cpython-39.pyc 2025-08-14T21:48:56.7084821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\numa\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.7094008Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\errors.py 2025-08-14T21:48:56.7097714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\operators.py 2025-08-14T21:48:56.7101434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_helper.py 2025-08-14T21:48:56.7105332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset10.py 2025-08-14T21:48:56.7114506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset11.py 2025-08-14T21:48:56.7118516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset12.py 2025-08-14T21:48:56.7122856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset13.py 2025-08-14T21:48:56.7126906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset14.py 2025-08-14T21:48:56.7130925Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset15.py 2025-08-14T21:48:56.7134811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset16.py 2025-08-14T21:48:56.7138763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset17.py 2025-08-14T21:48:56.7142556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset18.py 2025-08-14T21:48:56.7146274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset19.py 2025-08-14T21:48:56.7150102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset20.py 2025-08-14T21:48:56.7154294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset7.py 2025-08-14T21:48:56.7158502Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset8.py 2025-08-14T21:48:56.7162335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\symbolic_opset9.py 2025-08-14T21:48:56.7167289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\utils.py 2025-08-14T21:48:56.7171500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\verification.py 2025-08-14T21:48:56.7175876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_constants.py 2025-08-14T21:48:56.7189771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_experimental.py 2025-08-14T21:48:56.7193438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_flags.py 2025-08-14T21:48:56.7197291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_globals.py 2025-08-14T21:48:56.7201380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_onnx_supported_ops.py 2025-08-14T21:48:56.7205331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_type_utils.py 2025-08-14T21:48:56.7209163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__init__.py 2025-08-14T21:48:56.7217157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\_dtype_mappings.py 2025-08-14T21:48:56.7221797Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\_impl.py 2025-08-14T21:48:56.7225518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\_symbolic_impl.py 2025-08-14T21:48:56.7229294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__init__.py 2025-08-14T21:48:56.7247203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\_dtype_mappings.cpython-39.pyc 2025-08-14T21:48:56.7251072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\_impl.cpython-39.pyc 2025-08-14T21:48:56.7254756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\_symbolic_impl.cpython-39.pyc 2025-08-14T21:48:56.7268265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\ops\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.7277328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\jit_utils.py 2025-08-14T21:48:56.7281080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\onnx_proto_utils.py 2025-08-14T21:48:56.7284680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\registration.py 2025-08-14T21:48:56.7297750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\_exporter_legacy.py 2025-08-14T21:48:56.7302180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\_lazy_import.py 2025-08-14T21:48:56.7305860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__init__.py 2025-08-14T21:48:56.7313706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_analysis.py 2025-08-14T21:48:56.7317987Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_building.py 2025-08-14T21:48:56.7321785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_capture_strategies.py 2025-08-14T21:48:56.7325754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_compat.py 2025-08-14T21:48:56.7338920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_constants.py 2025-08-14T21:48:56.7342592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_core.py 2025-08-14T21:48:56.7346440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_decomp.py 2025-08-14T21:48:56.7350410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_dispatching.py 2025-08-14T21:48:56.7354056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_dynamic_shapes.py 2025-08-14T21:48:56.7357640Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_errors.py 2025-08-14T21:48:56.7361156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_flags.py 2025-08-14T21:48:56.7364666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_fx_passes.py 2025-08-14T21:48:56.7368286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_ir_passes.py 2025-08-14T21:48:56.7372031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_isolated.py 2025-08-14T21:48:56.7375759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_onnx_program.py 2025-08-14T21:48:56.7380023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_registration.py 2025-08-14T21:48:56.7384696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_reporting.py 2025-08-14T21:48:56.7387748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_schemas.py 2025-08-14T21:48:56.7391511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_tensors.py 2025-08-14T21:48:56.7395072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_testing.py 2025-08-14T21:48:56.7398681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_type_casting.py 2025-08-14T21:48:56.7402754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_verification.py 2025-08-14T21:48:56.7406428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__init__.py 2025-08-14T21:48:56.7423963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\_tensor_typing.py 2025-08-14T21:48:56.7428102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\_torchlib_registry.py 2025-08-14T21:48:56.7431811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__init__.py 2025-08-14T21:48:56.7448039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\core.py 2025-08-14T21:48:56.7451662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\hop.py 2025-08-14T21:48:56.7455164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\nn.py 2025-08-14T21:48:56.7458756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\symbolic.py 2025-08-14T21:48:56.7462291Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\symops.py 2025-08-14T21:48:56.7465764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__init__.py 2025-08-14T21:48:56.7483292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\core.cpython-39.pyc 2025-08-14T21:48:56.7487312Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\hop.cpython-39.pyc 2025-08-14T21:48:56.7491068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\nn.cpython-39.pyc 2025-08-14T21:48:56.7505484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\symbolic.cpython-39.pyc 2025-08-14T21:48:56.7509398Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\symops.cpython-39.pyc 2025-08-14T21:48:56.7513190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\ops\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.7521597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__pycache__\_tensor_typing.cpython-39.pyc 2025-08-14T21:48:56.7525761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__pycache__\_torchlib_registry.cpython-39.pyc 2025-08-14T21:48:56.7529416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\_torchlib\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.7631079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_analysis.cpython-39.pyc 2025-08-14T21:48:56.7631923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_building.cpython-39.pyc 2025-08-14T21:48:56.7632798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_capture_strategies.cpython-39.pyc 2025-08-14T21:48:56.7633639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_compat.cpython-39.pyc 2025-08-14T21:48:56.7634450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_constants.cpython-39.pyc 2025-08-14T21:48:56.7637846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_core.cpython-39.pyc 2025-08-14T21:48:56.7638641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_decomp.cpython-39.pyc 2025-08-14T21:48:56.7639471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_dispatching.cpython-39.pyc 2025-08-14T21:48:56.7640318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_dynamic_shapes.cpython-39.pyc 2025-08-14T21:48:56.7641153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_errors.cpython-39.pyc 2025-08-14T21:48:56.7644434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_flags.cpython-39.pyc 2025-08-14T21:48:56.7645259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_fx_passes.cpython-39.pyc 2025-08-14T21:48:56.7646097Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_ir_passes.cpython-39.pyc 2025-08-14T21:48:56.7646922Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_isolated.cpython-39.pyc 2025-08-14T21:48:56.7647756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_onnx_program.cpython-39.pyc 2025-08-14T21:48:56.7648716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_registration.cpython-39.pyc 2025-08-14T21:48:56.7652089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_reporting.cpython-39.pyc 2025-08-14T21:48:56.7652933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_schemas.cpython-39.pyc 2025-08-14T21:48:56.7653742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_tensors.cpython-39.pyc 2025-08-14T21:48:56.7654539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_testing.cpython-39.pyc 2025-08-14T21:48:56.7655372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_type_casting.cpython-39.pyc 2025-08-14T21:48:56.7657287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\_verification.cpython-39.pyc 2025-08-14T21:48:56.7663476Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\exporter\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.7670539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\patcher.py 2025-08-14T21:48:56.7674094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\serialization.py 2025-08-14T21:48:56.7677608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\type_utils.py 2025-08-14T21:48:56.7681758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\_pass.py 2025-08-14T21:48:56.7685249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__init__.py 2025-08-14T21:48:56.7702598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\type_promotion.py 2025-08-14T21:48:56.7707210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\_utils.py 2025-08-14T21:48:56.7710193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__init__.py 2025-08-14T21:48:56.7717503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__pycache__\type_promotion.cpython-39.pyc 2025-08-14T21:48:56.7721293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:56.7726446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\passes\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.7751395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\patcher.cpython-39.pyc 2025-08-14T21:48:56.7752217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\serialization.cpython-39.pyc 2025-08-14T21:48:56.7753051Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\type_utils.cpython-39.pyc 2025-08-14T21:48:56.7767437Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\_pass.cpython-39.pyc 2025-08-14T21:48:56.7771218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\fx\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.7780261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\jit_utils.cpython-39.pyc 2025-08-14T21:48:56.7784157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\onnx_proto_utils.cpython-39.pyc 2025-08-14T21:48:56.7787952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\registration.cpython-39.pyc 2025-08-14T21:48:56.7801110Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\_exporter_legacy.cpython-39.pyc 2025-08-14T21:48:56.7805095Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\_lazy_import.cpython-39.pyc 2025-08-14T21:48:56.7808977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\_internal\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.7820058Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\errors.cpython-39.pyc 2025-08-14T21:48:56.7823865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\operators.cpython-39.pyc 2025-08-14T21:48:56.7827774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_helper.cpython-39.pyc 2025-08-14T21:48:56.7841010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset10.cpython-39.pyc 2025-08-14T21:48:56.7844793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset11.cpython-39.pyc 2025-08-14T21:48:56.7848657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset12.cpython-39.pyc 2025-08-14T21:48:56.7852401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset13.cpython-39.pyc 2025-08-14T21:48:56.7856469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset14.cpython-39.pyc 2025-08-14T21:48:56.7860466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset15.cpython-39.pyc 2025-08-14T21:48:56.7865629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset16.cpython-39.pyc 2025-08-14T21:48:56.7868371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset17.cpython-39.pyc 2025-08-14T21:48:56.7872169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset18.cpython-39.pyc 2025-08-14T21:48:56.7875955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset19.cpython-39.pyc 2025-08-14T21:48:56.7879990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset20.cpython-39.pyc 2025-08-14T21:48:56.7884012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset7.cpython-39.pyc 2025-08-14T21:48:56.7888316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset8.cpython-39.pyc 2025-08-14T21:48:56.7901385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\symbolic_opset9.cpython-39.pyc 2025-08-14T21:48:56.7906120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:56.7910212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\verification.cpython-39.pyc 2025-08-14T21:48:56.7914165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_constants.cpython-39.pyc 2025-08-14T21:48:56.7918231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_experimental.cpython-39.pyc 2025-08-14T21:48:56.7922047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_flags.cpython-39.pyc 2025-08-14T21:48:56.7925809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_globals.cpython-39.pyc 2025-08-14T21:48:56.7930337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_onnx_supported_ops.cpython-39.pyc 2025-08-14T21:48:56.7934208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\_type_utils.cpython-39.pyc 2025-08-14T21:48:56.7938186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\onnx\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.7958755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adadelta.py 2025-08-14T21:48:56.7962518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adagrad.py 2025-08-14T21:48:56.7966012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adam.py 2025-08-14T21:48:56.7969633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adamax.py 2025-08-14T21:48:56.7973086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\adamw.py 2025-08-14T21:48:56.7977541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\asgd.py 2025-08-14T21:48:56.7981321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\lbfgs.py 2025-08-14T21:48:56.7995118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\lr_scheduler.py 2025-08-14T21:48:56.7999099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\nadam.py 2025-08-14T21:48:56.8002938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\optimizer.py 2025-08-14T21:48:56.8006901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\radam.py 2025-08-14T21:48:56.8010541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\rmsprop.py 2025-08-14T21:48:56.8014154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\rprop.py 2025-08-14T21:48:56.8017692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\sgd.py 2025-08-14T21:48:56.8021269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\sparse_adam.py 2025-08-14T21:48:56.8024875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\swa_utils.py 2025-08-14T21:48:56.8028509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_adafactor.py 2025-08-14T21:48:56.8032961Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_functional.py 2025-08-14T21:48:56.8037386Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__init__.py 2025-08-14T21:48:56.8045776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_multi_tensor\__init__.py 2025-08-14T21:48:56.8049930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_multi_tensor\__init__.pyi 2025-08-14T21:48:56.8057259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\_multi_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.8065450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adadelta.cpython-39.pyc 2025-08-14T21:48:56.8069215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adagrad.cpython-39.pyc 2025-08-14T21:48:56.8072935Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adam.cpython-39.pyc 2025-08-14T21:48:56.8183840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adamax.cpython-39.pyc 2025-08-14T21:48:56.8187630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\adamw.cpython-39.pyc 2025-08-14T21:48:56.8191306Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\asgd.cpython-39.pyc 2025-08-14T21:48:56.8195407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\lbfgs.cpython-39.pyc 2025-08-14T21:48:56.8199573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\lr_scheduler.cpython-39.pyc 2025-08-14T21:48:56.8203512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\nadam.cpython-39.pyc 2025-08-14T21:48:56.8207355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\optimizer.cpython-39.pyc 2025-08-14T21:48:56.8211302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\radam.cpython-39.pyc 2025-08-14T21:48:56.8215303Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\rmsprop.cpython-39.pyc 2025-08-14T21:48:56.8219053Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\rprop.cpython-39.pyc 2025-08-14T21:48:56.8222872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\sgd.cpython-39.pyc 2025-08-14T21:48:56.8226723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\sparse_adam.cpython-39.pyc 2025-08-14T21:48:56.8230567Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\swa_utils.cpython-39.pyc 2025-08-14T21:48:56.8234409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\_adafactor.cpython-39.pyc 2025-08-14T21:48:56.8250681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\_functional.cpython-39.pyc 2025-08-14T21:48:56.8254532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\optim\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.8265079Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\file_structure_representation.py 2025-08-14T21:48:56.8269131Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\find_file_dependencies.py 2025-08-14T21:48:56.8273680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\glob_group.py 2025-08-14T21:48:56.8289323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\importer.py 2025-08-14T21:48:56.8293674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\package_exporter.py 2025-08-14T21:48:56.8297942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\package_importer.py 2025-08-14T21:48:56.8301652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_digraph.py 2025-08-14T21:48:56.8305557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_directory_reader.py 2025-08-14T21:48:56.8309825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_importlib.py 2025-08-14T21:48:56.8313824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_mangling.py 2025-08-14T21:48:56.8318128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_mock.py 2025-08-14T21:48:56.8322380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_package_pickler.py 2025-08-14T21:48:56.8326629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_package_unpickler.py 2025-08-14T21:48:56.8330704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\_stdlib.py 2025-08-14T21:48:56.8334828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__init__.py 2025-08-14T21:48:56.8342779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\find_first_use_of_broken_modules.py 2025-08-14T21:48:56.8346631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\is_from_package.py 2025-08-14T21:48:56.8350810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\trace_dependencies.py 2025-08-14T21:48:56.8366249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__init__.py 2025-08-14T21:48:56.8374591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\find_first_use_of_broken_modules.cpython-39.pyc 2025-08-14T21:48:56.8378715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\is_from_package.cpython-39.pyc 2025-08-14T21:48:56.8382521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\trace_dependencies.cpython-39.pyc 2025-08-14T21:48:56.8398313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\analyze\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.8408539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\file_structure_representation.cpython-39.pyc 2025-08-14T21:48:56.8412432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\find_file_dependencies.cpython-39.pyc 2025-08-14T21:48:56.8416070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\glob_group.cpython-39.pyc 2025-08-14T21:48:56.8431153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\importer.cpython-39.pyc 2025-08-14T21:48:56.8435360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\package_exporter.cpython-39.pyc 2025-08-14T21:48:56.8475536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\package_importer.cpython-39.pyc 2025-08-14T21:48:56.8480108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_digraph.cpython-39.pyc 2025-08-14T21:48:56.8485430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_directory_reader.cpython-39.pyc 2025-08-14T21:48:56.8488450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_importlib.cpython-39.pyc 2025-08-14T21:48:56.8492950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_mangling.cpython-39.pyc 2025-08-14T21:48:56.8498287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_mock.cpython-39.pyc 2025-08-14T21:48:56.8501552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_package_pickler.cpython-39.pyc 2025-08-14T21:48:56.8505756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_package_unpickler.cpython-39.pyc 2025-08-14T21:48:56.8510869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\_stdlib.cpython-39.pyc 2025-08-14T21:48:56.8514177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\package\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.8523827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\itt.py 2025-08-14T21:48:56.8527128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\profiler.py 2025-08-14T21:48:56.8531320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\python_tracer.py 2025-08-14T21:48:56.8535127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\_memory_profiler.py 2025-08-14T21:48:56.8538812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\_pattern_matcher.py 2025-08-14T21:48:56.8548717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\_utils.py 2025-08-14T21:48:56.8552394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__init__.py 2025-08-14T21:48:56.8561337Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\itt.cpython-39.pyc 2025-08-14T21:48:56.8565120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\profiler.cpython-39.pyc 2025-08-14T21:48:56.8569017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\python_tracer.cpython-39.pyc 2025-08-14T21:48:56.8586422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\_memory_profiler.cpython-39.pyc 2025-08-14T21:48:56.8588697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\_pattern_matcher.cpython-39.pyc 2025-08-14T21:48:56.8592949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:56.8596530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\profiler\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.8605428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fake_quantize.py 2025-08-14T21:48:56.8609305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fuser_method_mappings.py 2025-08-14T21:48:56.8613320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fuse_modules.py 2025-08-14T21:48:56.8630684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\observer.py 2025-08-14T21:48:56.8632863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\qconfig.py 2025-08-14T21:48:56.8637652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantization_mappings.py 2025-08-14T21:48:56.8643382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantize.py 2025-08-14T21:48:56.8645646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantize_fx.py 2025-08-14T21:48:56.8649916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quantize_jit.py 2025-08-14T21:48:56.8653380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\quant_type.py 2025-08-14T21:48:56.8657185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\stubs.py 2025-08-14T21:48:56.8662300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\utils.py 2025-08-14T21:48:56.8664738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\_numeric_suite.py 2025-08-14T21:48:56.8668809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\_numeric_suite_fx.py 2025-08-14T21:48:56.8672772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\_quantized_conversions.py 2025-08-14T21:48:56.8676772Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__init__.py 2025-08-14T21:48:56.8684508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\convert.py 2025-08-14T21:48:56.8688498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\fuse.py 2025-08-14T21:48:56.8693687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\fusion_patterns.py 2025-08-14T21:48:56.8695898Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\graph_module.py 2025-08-14T21:48:56.8700310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\match_utils.py 2025-08-14T21:48:56.8715571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\pattern_utils.py 2025-08-14T21:48:56.8719696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\prepare.py 2025-08-14T21:48:56.8723285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\quantization_patterns.py 2025-08-14T21:48:56.8727172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\quantization_types.py 2025-08-14T21:48:56.8731215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\utils.py 2025-08-14T21:48:56.8734679Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\_equalize.py 2025-08-14T21:48:56.8738766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__init__.py 2025-08-14T21:48:56.8747422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\convert.cpython-39.pyc 2025-08-14T21:48:56.8751360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\fuse.cpython-39.pyc 2025-08-14T21:48:56.8755596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\fusion_patterns.cpython-39.pyc 2025-08-14T21:48:56.8770994Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\graph_module.cpython-39.pyc 2025-08-14T21:48:56.8774968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\match_utils.cpython-39.pyc 2025-08-14T21:48:56.8778842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\pattern_utils.cpython-39.pyc 2025-08-14T21:48:56.8783825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\prepare.cpython-39.pyc 2025-08-14T21:48:56.8787947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\quantization_patterns.cpython-39.pyc 2025-08-14T21:48:56.8791750Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\quantization_types.cpython-39.pyc 2025-08-14T21:48:56.8795667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:56.8799474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\_equalize.cpython-39.pyc 2025-08-14T21:48:56.8803371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\fx\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.8812424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\fake_quantize.cpython-39.pyc 2025-08-14T21:48:56.8820350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\fuser_method_mappings.cpython-39.pyc 2025-08-14T21:48:56.8824407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\fuse_modules.cpython-39.pyc 2025-08-14T21:48:56.8840569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\observer.cpython-39.pyc 2025-08-14T21:48:56.8844735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\qconfig.cpython-39.pyc 2025-08-14T21:48:56.8849004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantization_mappings.cpython-39.pyc 2025-08-14T21:48:56.8853221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantize.cpython-39.pyc 2025-08-14T21:48:56.8857564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantize_fx.cpython-39.pyc 2025-08-14T21:48:56.8862473Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quantize_jit.cpython-39.pyc 2025-08-14T21:48:56.8866871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\quant_type.cpython-39.pyc 2025-08-14T21:48:56.8871484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\stubs.cpython-39.pyc 2025-08-14T21:48:56.8875956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:56.8880395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\_numeric_suite.cpython-39.pyc 2025-08-14T21:48:56.8884346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\_numeric_suite_fx.cpython-39.pyc 2025-08-14T21:48:56.8888773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\_quantized_conversions.cpython-39.pyc 2025-08-14T21:48:56.8892560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\quantization\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.8921601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\ATen\ATenConfig.cmake 2025-08-14T21:48:56.8929455Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Caffe2Config.cmake 2025-08-14T21:48:56.8933243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Caffe2Targets-release.cmake 2025-08-14T21:48:56.8937406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Caffe2Targets.cmake 2025-08-14T21:48:56.8952669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindCUDAToolkit.cmake 2025-08-14T21:48:56.8957138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindCUDSS.cmake 2025-08-14T21:48:56.8961309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindCUSPARSELT.cmake 2025-08-14T21:48:56.8965496Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\FindSYCLToolkit.cmake 2025-08-14T21:48:56.8973991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDA.cmake 2025-08-14T21:48:56.8977899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDNN.cmake 2025-08-14T21:48:56.8996521Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\CMakeInitializeConfigs.cmake 2025-08-14T21:48:56.9000612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA.cmake 2025-08-14T21:48:56.9004854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindPackageMessage.cmake 2025-08-14T21:48:56.9022876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\make2cmake.cmake 2025-08-14T21:48:56.9026804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\parse_cubin.cmake 2025-08-14T21:48:56.9030751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\run_nvcc.cmake 2025-08-14T21:48:56.9044746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA\select_compute_arch.cmake 2025-08-14T21:48:56.9053231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\cuda.cmake 2025-08-14T21:48:56.9057185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\gflags.cmake 2025-08-14T21:48:56.9061115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\glog.cmake 2025-08-14T21:48:56.9064607Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\LoadHIP.cmake 2025-08-14T21:48:56.9079329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\mkl.cmake 2025-08-14T21:48:56.9083183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\mkldnn.cmake 2025-08-14T21:48:56.9087100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\protobuf.cmake 2025-08-14T21:48:56.9091257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\utils.cmake 2025-08-14T21:48:56.9095171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Caffe2\public\xpu.cmake 2025-08-14T21:48:56.9103170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Torch\TorchConfig.cmake 2025-08-14T21:48:56.9107064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\share\cmake\Torch\TorchConfigVersion.cmake 2025-08-14T21:48:56.9116551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\__init__.py 2025-08-14T21:48:56.9123646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\windows.py 2025-08-14T21:48:56.9127313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\__init__.py 2025-08-14T21:48:56.9134559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\__pycache__\windows.cpython-39.pyc 2025-08-14T21:48:56.9138267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\windows\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.9146417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\signal\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.9176835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\semi_structured.py 2025-08-14T21:48:56.9180696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_semi_structured_conversions.py 2025-08-14T21:48:56.9185456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_semi_structured_ops.py 2025-08-14T21:48:56.9199775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_triton_ops.py 2025-08-14T21:48:56.9204109Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\_triton_ops_meta.py 2025-08-14T21:48:56.9210533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__init__.py 2025-08-14T21:48:56.9218440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\semi_structured.cpython-39.pyc 2025-08-14T21:48:56.9222609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_semi_structured_conversions.cpython-39.pyc 2025-08-14T21:48:56.9228199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_semi_structured_ops.cpython-39.pyc 2025-08-14T21:48:56.9310318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_triton_ops.cpython-39.pyc 2025-08-14T21:48:56.9311062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\_triton_ops_meta.cpython-39.pyc 2025-08-14T21:48:56.9311759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\sparse\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.9312367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\special\__init__.py 2025-08-14T21:48:56.9312933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\special\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:56.9313657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\apply_utils_test.exe 2025-08-14T21:48:56.9314154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\atest.exe 2025-08-14T21:48:56.9317456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\backend_fallback_test.exe 2025-08-14T21:48:56.9317980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\basic.exe 2025-08-14T21:48:56.9319662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\broadcast_test.exe 2025-08-14T21:48:56.9326076Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_accumulate_test.exe 2025-08-14T21:48:56.9331865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_AllocatorConfig_test.exe 2025-08-14T21:48:56.9337356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ArrayRef_test.exe 2025-08-14T21:48:56.9343434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_bfloat16_test.exe 2025-08-14T21:48:56.9348524Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Bitset_test.exe 2025-08-14T21:48:56.9353953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_bit_cast_test.exe 2025-08-14T21:48:56.9360686Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_CompileTimeFunctionPointer_test.exe 2025-08-14T21:48:56.9364634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_complex_math_test.exe 2025-08-14T21:48:56.9370021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_complex_test.exe 2025-08-14T21:48:56.9375431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ConstexprCrc_test.exe 2025-08-14T21:48:56.9380963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_cow_test.exe 2025-08-14T21:48:56.9386632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_DeadlockDetection_test.exe 2025-08-14T21:48:56.9392383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_DeviceGuard_test.exe 2025-08-14T21:48:56.9407656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Device_test.exe 2025-08-14T21:48:56.9412822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_DispatchKeySet_test.exe 2025-08-14T21:48:56.9418472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Enumerate_test.exe 2025-08-14T21:48:56.9423633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_error_test.exe 2025-08-14T21:48:56.9439185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_exception_test.exe 2025-08-14T21:48:56.9439865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_flags_test.exe 2025-08-14T21:48:56.9440415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_generic_math_test.exe 2025-08-14T21:48:56.9445223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Half_test.exe 2025-08-14T21:48:56.9450785Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_InlineDeviceGuard_test.exe 2025-08-14T21:48:56.9467071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_InlineStreamGuard_test.exe 2025-08-14T21:48:56.9473635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_IntrusiveList_test.exe 2025-08-14T21:48:56.9478929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_intrusive_ptr_benchmark.exe 2025-08-14T21:48:56.9483771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_intrusive_ptr_test.exe 2025-08-14T21:48:56.9493680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_irange_test.exe 2025-08-14T21:48:56.9499509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_lazy_test.exe 2025-08-14T21:48:56.9504763Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_LeftRight_test.exe 2025-08-14T21:48:56.9510219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_logging_test.exe 2025-08-14T21:48:56.9526111Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Metaprogramming_test.exe 2025-08-14T21:48:56.9531284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_NetworkFlow_test.exe 2025-08-14T21:48:56.9536618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_optional_test.exe 2025-08-14T21:48:56.9542749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ordered_preserving_dict_test.exe 2025-08-14T21:48:56.9549834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_registry_test.exe 2025-08-14T21:48:56.9556069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Scalar_test.exe 2025-08-14T21:48:56.9562172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Semaphore_test.exe 2025-08-14T21:48:56.9565647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_SizesAndStrides_test.exe 2025-08-14T21:48:56.9571190Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_small_vector_test.exe 2025-08-14T21:48:56.9590550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ssize_test.exe 2025-08-14T21:48:56.9595950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_StreamGuard_test.exe 2025-08-14T21:48:56.9601348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_string_util_test.exe 2025-08-14T21:48:56.9608125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_string_view_test.exe 2025-08-14T21:48:56.9613704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_SymInt_test.exe 2025-08-14T21:48:56.9619446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_Synchronized_test.exe 2025-08-14T21:48:56.9625553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_tempfile_test.exe 2025-08-14T21:48:56.9631820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_ThreadLocal_test.exe 2025-08-14T21:48:56.9657064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_typeid_test.exe 2025-08-14T21:48:56.9663261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_TypeIndex_test.exe 2025-08-14T21:48:56.9669617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_TypeList_test.exe 2025-08-14T21:48:56.9675631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\c10_TypeTraits_test.exe 2025-08-14T21:48:56.9679956Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\CppSignature_test.exe 2025-08-14T21:48:56.9687438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_allocator_test.exe 2025-08-14T21:48:56.9692070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_generator_test.exe 2025-08-14T21:48:56.9698199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_profiling_allocator_test.exe 2025-08-14T21:48:56.9704220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\cpu_rng_test.exe 2025-08-14T21:48:56.9721622Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\Dict_test.exe 2025-08-14T21:48:56.9728647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\Dimname_test.exe 2025-08-14T21:48:56.9734392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\dlconvertor_test.exe 2025-08-14T21:48:56.9774981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\extension_backend_test.exe 2025-08-14T21:48:56.9775534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\half_test.exe 2025-08-14T21:48:56.9776034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\IListRef_test.exe 2025-08-14T21:48:56.9776586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\inline_container_test.exe 2025-08-14T21:48:56.9777133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\ivalue_test.exe 2025-08-14T21:48:56.9777792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\KernelFunction_test.exe 2025-08-14T21:48:56.9792752Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_function_legacy_test.exe 2025-08-14T21:48:56.9801063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_function_test.exe 2025-08-14T21:48:56.9808777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_lambda_legacy_test.exe 2025-08-14T21:48:56.9816639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_lambda_test.exe 2025-08-14T21:48:56.9825232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\kernel_stackbased_test.exe 2025-08-14T21:48:56.9830043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\lazy_tensor_test.exe 2025-08-14T21:48:56.9835477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\legacy_vmap_test.exe 2025-08-14T21:48:56.9842637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\List_test.exe 2025-08-14T21:48:56.9852346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\make_boxed_from_unboxed_functor_test.exe 2025-08-14T21:48:56.9857799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\math_kernel_test.exe 2025-08-14T21:48:56.9863894Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\MaybeOwned_test.exe 2025-08-14T21:48:56.9870264Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\memory_format_test.exe 2025-08-14T21:48:56.9875881Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\memory_overlapping_test.exe 2025-08-14T21:48:56.9881899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\mobile_memory_cleanup.exe 2025-08-14T21:48:56.9887461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\NamedTensor_test.exe 2025-08-14T21:48:56.9893653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\native_test.exe 2025-08-14T21:48:56.9911205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\operators_test.exe 2025-08-14T21:48:56.9916988Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\operator_name_test.exe 2025-08-14T21:48:56.9921919Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\op_allowlist_test.exe 2025-08-14T21:48:56.9927266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\op_registration_test.exe 2025-08-14T21:48:56.9944256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\packedtensoraccessor_test.exe 2025-08-14T21:48:56.9949932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\pow_test.exe 2025-08-14T21:48:56.9956700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\quantized_test.exe 2025-08-14T21:48:56.9962514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\reduce_ops_test.exe 2025-08-14T21:48:56.9967959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\reportMemoryUsage_test.exe 2025-08-14T21:48:56.9973559Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\scalar_tensor_test.exe 2025-08-14T21:48:56.9979741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\scalar_test.exe 2025-08-14T21:48:56.9985736Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\StorageUtils_test.exe 2025-08-14T21:48:56.9991391Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\stride_properties_test.exe 2025-08-14T21:48:56.9996751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\tensor_iterator_test.exe 2025-08-14T21:48:57.0003255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\test_parallel.exe 2025-08-14T21:48:57.0008685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\thread_init_test.exe 2025-08-14T21:48:57.0014059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\type_ptr_test.exe 2025-08-14T21:48:57.0053631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\type_test.exe 2025-08-14T21:48:57.0064214Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\undefined_tensor_test.exe 2025-08-14T21:48:57.0070144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\verify_api_visibility.exe 2025-08-14T21:48:57.0076255Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\weakref_test.exe 2025-08-14T21:48:57.0081923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\wrapdim_test.exe 2025-08-14T21:48:57.0088218Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\test\xla_tensor_test.exe 2025-08-14T21:48:57.0103814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_comparison.py 2025-08-14T21:48:57.0108194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_creation.py 2025-08-14T21:48:57.0112877Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_utils.py 2025-08-14T21:48:57.0115748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__init__.py 2025-08-14T21:48:57.0135535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\autocast_test_lists.py 2025-08-14T21:48:57.0139696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\autograd_function_db.py 2025-08-14T21:48:57.0144002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\check_kernel_launches.py 2025-08-14T21:48:57.0158382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_cuda.py 2025-08-14T21:48:57.0163541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_device_type.py 2025-08-14T21:48:57.0166562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_distributed.py 2025-08-14T21:48:57.0170811Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_dist_composable.py 2025-08-14T21:48:57.0176087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_dtype.py 2025-08-14T21:48:57.0179605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_fsdp.py 2025-08-14T21:48:57.0183792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_jit.py 2025-08-14T21:48:57.0188662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_methods_invocations.py 2025-08-14T21:48:57.0198009Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_mkldnn.py 2025-08-14T21:48:57.0202459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_modules.py 2025-08-14T21:48:57.0208019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_mps.py 2025-08-14T21:48:57.0211286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_nn.py 2025-08-14T21:48:57.0216115Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_optimizers.py 2025-08-14T21:48:57.0220602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_pruning.py 2025-08-14T21:48:57.0224430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_quantization.py 2025-08-14T21:48:57.0294451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_quantized.py 2025-08-14T21:48:57.0295101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_subclass.py 2025-08-14T21:48:57.0295713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\common_utils.py 2025-08-14T21:48:57.0296354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\composite_compliance.py 2025-08-14T21:48:57.0296990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\custom_op_db.py 2025-08-14T21:48:57.0297599Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\custom_tensor.py 2025-08-14T21:48:57.0298183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\dist_utils.py 2025-08-14T21:48:57.0298906Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\dynamo_test_failures.py 2025-08-14T21:48:57.0299641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\fake_config_module.py 2025-08-14T21:48:57.0300396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\fake_config_module2.py 2025-08-14T21:48:57.0301056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\fake_config_module3.py 2025-08-14T21:48:57.0301660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\hop_db.py 2025-08-14T21:48:57.0304846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\hypothesis_utils.py 2025-08-14T21:48:57.0308931Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\inductor_utils.py 2025-08-14T21:48:57.0315388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\jit_metaprogramming_utils.py 2025-08-14T21:48:57.0318120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\jit_utils.py 2025-08-14T21:48:57.0322084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\logging_tensor.py 2025-08-14T21:48:57.0327274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\logging_utils.py 2025-08-14T21:48:57.0330126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\quantization_torch_package_models.py 2025-08-14T21:48:57.0333834Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\static_module.py 2025-08-14T21:48:57.0337551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\subclasses.py 2025-08-14T21:48:57.0352954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\torchbind_impls.py 2025-08-14T21:48:57.0356762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\triton_utils.py 2025-08-14T21:48:57.0360683Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\two_tensor.py 2025-08-14T21:48:57.0364514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__init__.py 2025-08-14T21:48:57.0372742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\codegen\__init__.py 2025-08-14T21:48:57.0381166Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\codegen\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.0389642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\network1.py 2025-08-14T21:48:57.0393233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\network2.py 2025-08-14T21:48:57.0397333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__init__.py 2025-08-14T21:48:57.0405338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__pycache__\network1.cpython-39.pyc 2025-08-14T21:48:57.0409193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__pycache__\network2.cpython-39.pyc 2025-08-14T21:48:57.0412937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\data\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.0432217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\checkpoint_utils.py 2025-08-14T21:48:57.0436080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\common_state_dict.py 2025-08-14T21:48:57.0440401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\ddp_under_dist_autograd_test.py 2025-08-14T21:48:57.0454856Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\distributed_test.py 2025-08-14T21:48:57.0460687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\distributed_utils.py 2025-08-14T21:48:57.0464514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\fake_pg.py 2025-08-14T21:48:57.0468397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\multi_threaded_pg.py 2025-08-14T21:48:57.0472310Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc_utils.py 2025-08-14T21:48:57.0476118Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__init__.py 2025-08-14T21:48:57.0483117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\__init__.py 2025-08-14T21:48:57.0489301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\remote_module_test.py 2025-08-14T21:48:57.0493050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\__init__.py 2025-08-14T21:48:57.0499824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\__pycache__\remote_module_test.cpython-39.pyc 2025-08-14T21:48:57.0503781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\api\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.0511843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\nn\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.0520263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\dist_autograd_test.py 2025-08-14T21:48:57.0525018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\dist_optimizer_test.py 2025-08-14T21:48:57.0528562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\faulty_agent_rpc_test.py 2025-08-14T21:48:57.0543132Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\faulty_rpc_agent_test_fixture.py 2025-08-14T21:48:57.0547129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\rpc_agent_test_fixture.py 2025-08-14T21:48:57.0551006Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\rpc_test.py 2025-08-14T21:48:57.0556534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\tensorpipe_rpc_agent_test_fixture.py 2025-08-14T21:48:57.0559709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__init__.py 2025-08-14T21:48:57.0566495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\parameter_server_test.py 2025-08-14T21:48:57.0570888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\reinforcement_learning_rpc_test.py 2025-08-14T21:48:57.0575198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__init__.py 2025-08-14T21:48:57.0591850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__pycache__\parameter_server_test.cpython-39.pyc 2025-08-14T21:48:57.0596154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__pycache__\reinforcement_learning_rpc_test.cpython-39.pyc 2025-08-14T21:48:57.0600360Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\examples\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.0619056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\dist_autograd_test.py 2025-08-14T21:48:57.0622495Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\rpc_test.py 2025-08-14T21:48:57.0626836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\rpc_test_faulty.py 2025-08-14T21:48:57.0630870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__init__.py 2025-08-14T21:48:57.0647779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\dist_autograd_test.cpython-39.pyc 2025-08-14T21:48:57.0651870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\rpc_test.cpython-39.pyc 2025-08-14T21:48:57.0656044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\rpc_test_faulty.cpython-39.pyc 2025-08-14T21:48:57.0669941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\jit\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.0678767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\dist_autograd_test.cpython-39.pyc 2025-08-14T21:48:57.0683257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\dist_optimizer_test.cpython-39.pyc 2025-08-14T21:48:57.0687892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\faulty_agent_rpc_test.cpython-39.pyc 2025-08-14T21:48:57.0701596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\faulty_rpc_agent_test_fixture.cpython-39.pyc 2025-08-14T21:48:57.0705957Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\rpc_agent_test_fixture.cpython-39.pyc 2025-08-14T21:48:57.0709753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\rpc_test.cpython-39.pyc 2025-08-14T21:48:57.0715004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\tensorpipe_rpc_agent_test_fixture.cpython-39.pyc 2025-08-14T21:48:57.0719192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\rpc\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.0728148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\test_common.py 2025-08-14T21:48:57.0732263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\__init__.py 2025-08-14T21:48:57.0739744Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\_test_ops_common.py 2025-08-14T21:48:57.0744682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\_test_st_common.py 2025-08-14T21:48:57.0749562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__init__.py 2025-08-14T21:48:57.0768806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__pycache__\_test_ops_common.cpython-39.pyc 2025-08-14T21:48:57.0773143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__pycache__\_test_st_common.cpython-39.pyc 2025-08-14T21:48:57.0777468Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\sharded_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.0807462Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\__pycache__\test_common.cpython-39.pyc 2025-08-14T21:48:57.0811519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_shard\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.0820447Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\common_dtensor.py 2025-08-14T21:48:57.0823984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\__init__.py 2025-08-14T21:48:57.0830718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\__pycache__\common_dtensor.cpython-39.pyc 2025-08-14T21:48:57.0834888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\_tensor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.0842963Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\checkpoint_utils.cpython-39.pyc 2025-08-14T21:48:57.0846879Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\common_state_dict.cpython-39.pyc 2025-08-14T21:48:57.0851120Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\ddp_under_dist_autograd_test.cpython-39.pyc 2025-08-14T21:48:57.0864958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\distributed_test.cpython-39.pyc 2025-08-14T21:48:57.0870689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\distributed_utils.cpython-39.pyc 2025-08-14T21:48:57.0875212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\fake_pg.cpython-39.pyc 2025-08-14T21:48:57.0879813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\multi_threaded_pg.cpython-39.pyc 2025-08-14T21:48:57.0884405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\rpc_utils.cpython-39.pyc 2025-08-14T21:48:57.0889782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\distributed\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.0899878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\annotated_fn_args.py 2025-08-14T21:48:57.0906333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\__init__.py 2025-08-14T21:48:57.0913311Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\__pycache__\annotated_fn_args.cpython-39.pyc 2025-08-14T21:48:57.0917747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\generated\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.0926223Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\core.py 2025-08-14T21:48:57.0930564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\refs.py 2025-08-14T21:48:57.0934064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\utils.py 2025-08-14T21:48:57.0937800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__init__.py 2025-08-14T21:48:57.0945444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\fft.py 2025-08-14T21:48:57.0949617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\linalg.py 2025-08-14T21:48:57.0954016Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\nested.py 2025-08-14T21:48:57.0957950Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\signal.py 2025-08-14T21:48:57.0961905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\sparse.py 2025-08-14T21:48:57.0965501Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\special.py 2025-08-14T21:48:57.0980632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\_masked.py 2025-08-14T21:48:57.0984497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__init__.py 2025-08-14T21:48:57.0992829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\fft.cpython-39.pyc 2025-08-14T21:48:57.0996825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\linalg.cpython-39.pyc 2025-08-14T21:48:57.1000909Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\nested.cpython-39.pyc 2025-08-14T21:48:57.1015798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\signal.cpython-39.pyc 2025-08-14T21:48:57.1020085Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\sparse.cpython-39.pyc 2025-08-14T21:48:57.1024135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\special.cpython-39.pyc 2025-08-14T21:48:57.1028314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\_masked.cpython-39.pyc 2025-08-14T21:48:57.1032456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\definitions\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.1052018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\core.cpython-39.pyc 2025-08-14T21:48:57.1056413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\refs.cpython-39.pyc 2025-08-14T21:48:57.1060242Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:57.1074499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\opinfo\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.1082889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\aot_autograd.py 2025-08-14T21:48:57.1086929Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\autograd_registration.py 2025-08-14T21:48:57.1090580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\fake_tensor.py 2025-08-14T21:48:57.1094431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\generate_tests.py 2025-08-14T21:48:57.1108757Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\make_fx.py 2025-08-14T21:48:57.1112590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__init__.py 2025-08-14T21:48:57.1120448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\aot_autograd.cpython-39.pyc 2025-08-14T21:48:57.1124499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\autograd_registration.cpython-39.pyc 2025-08-14T21:48:57.1128331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\fake_tensor.cpython-39.pyc 2025-08-14T21:48:57.1141780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\generate_tests.cpython-39.pyc 2025-08-14T21:48:57.1145626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\make_fx.cpython-39.pyc 2025-08-14T21:48:57.1149855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\optests\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.1158441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\future_div.py 2025-08-14T21:48:57.1162276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\no_future_div.py 2025-08-14T21:48:57.1166747Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__init__.py 2025-08-14T21:48:57.1183547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__pycache__\future_div.cpython-39.pyc 2025-08-14T21:48:57.1187615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__pycache__\no_future_div.cpython-39.pyc 2025-08-14T21:48:57.1191722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\test_module\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.1231814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\autocast_test_lists.cpython-39.pyc 2025-08-14T21:48:57.1236124Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\autograd_function_db.cpython-39.pyc 2025-08-14T21:48:57.1240660Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\check_kernel_launches.cpython-39.pyc 2025-08-14T21:48:57.1256208Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_cuda.cpython-39.pyc 2025-08-14T21:48:57.1261235Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_device_type.cpython-39.pyc 2025-08-14T21:48:57.1265981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_distributed.cpython-39.pyc 2025-08-14T21:48:57.1270648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_dist_composable.cpython-39.pyc 2025-08-14T21:48:57.1275280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_dtype.cpython-39.pyc 2025-08-14T21:48:57.1279538Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_fsdp.cpython-39.pyc 2025-08-14T21:48:57.1283941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_jit.cpython-39.pyc 2025-08-14T21:48:57.1288379Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_methods_invocations.cpython-39.pyc 2025-08-14T21:48:57.1295851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_mkldnn.cpython-39.pyc 2025-08-14T21:48:57.1300516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_modules.cpython-39.pyc 2025-08-14T21:48:57.1305533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_mps.cpython-39.pyc 2025-08-14T21:48:57.1310045Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_nn.cpython-39.pyc 2025-08-14T21:48:57.1315106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_optimizers.cpython-39.pyc 2025-08-14T21:48:57.1330072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_pruning.cpython-39.pyc 2025-08-14T21:48:57.1334156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_quantization.cpython-39.pyc 2025-08-14T21:48:57.1338767Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_quantized.cpython-39.pyc 2025-08-14T21:48:57.1342623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_subclass.cpython-39.pyc 2025-08-14T21:48:57.1347286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\common_utils.cpython-39.pyc 2025-08-14T21:48:57.1352569Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\composite_compliance.cpython-39.pyc 2025-08-14T21:48:57.1356394Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\custom_op_db.cpython-39.pyc 2025-08-14T21:48:57.1360274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\custom_tensor.cpython-39.pyc 2025-08-14T21:48:57.1364056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\dist_utils.cpython-39.pyc 2025-08-14T21:48:57.1368286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\dynamo_test_failures.cpython-39.pyc 2025-08-14T21:48:57.1372195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\fake_config_module.cpython-39.pyc 2025-08-14T21:48:57.1386261Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\fake_config_module2.cpython-39.pyc 2025-08-14T21:48:57.1390280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\fake_config_module3.cpython-39.pyc 2025-08-14T21:48:57.1394210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\hop_db.cpython-39.pyc 2025-08-14T21:48:57.1398275Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\hypothesis_utils.cpython-39.pyc 2025-08-14T21:48:57.1402346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\inductor_utils.cpython-39.pyc 2025-08-14T21:48:57.1406106Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\jit_metaprogramming_utils.cpython-39.pyc 2025-08-14T21:48:57.1410408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\jit_utils.cpython-39.pyc 2025-08-14T21:48:57.1414429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\logging_tensor.cpython-39.pyc 2025-08-14T21:48:57.1437979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\logging_utils.cpython-39.pyc 2025-08-14T21:48:57.1441893Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\quantization_torch_package_models.cpython-39.pyc 2025-08-14T21:48:57.1445710Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\static_module.cpython-39.pyc 2025-08-14T21:48:57.1449730Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\subclasses.cpython-39.pyc 2025-08-14T21:48:57.1454273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\torchbind_impls.cpython-39.pyc 2025-08-14T21:48:57.1458315Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\triton_utils.cpython-39.pyc 2025-08-14T21:48:57.1462309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\two_tensor.cpython-39.pyc 2025-08-14T21:48:57.1467082Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\_internal\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.1488116Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\_comparison.cpython-39.pyc 2025-08-14T21:48:57.1492199Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\_creation.cpython-39.pyc 2025-08-14T21:48:57.1530081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:57.1538204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\testing\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.1547697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\backend_registration.py 2025-08-14T21:48:57.1551372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bundled_inputs.py 2025-08-14T21:48:57.1558064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\checkpoint.py 2025-08-14T21:48:57.1564457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\collect_env.py 2025-08-14T21:48:57.1578980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\cpp_backtrace.py 2025-08-14T21:48:57.1581706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\cpp_extension.py 2025-08-14T21:48:57.1586520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\deterministic.py 2025-08-14T21:48:57.1592293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\dlpack.py 2025-08-14T21:48:57.1594647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\file_baton.py 2025-08-14T21:48:57.1598972Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\flop_counter.py 2025-08-14T21:48:57.1602234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hooks.py 2025-08-14T21:48:57.1606015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\mkldnn.py 2025-08-14T21:48:57.1611351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\mobile_optimizer.py 2025-08-14T21:48:57.1613396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_zoo.py 2025-08-14T21:48:57.1617780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\module_tracker.py 2025-08-14T21:48:57.1621021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\show_pickle.py 2025-08-14T21:48:57.1625047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\throughput_benchmark.py 2025-08-14T21:48:57.1630209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\weak.py 2025-08-14T21:48:57.1632872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_appending_byte_serializer.py 2025-08-14T21:48:57.1637413Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_backport_slots.py 2025-08-14T21:48:57.1642773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_config_module.py 2025-08-14T21:48:57.1655572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_config_typing.pyi 2025-08-14T21:48:57.1659393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_content_store.py 2025-08-14T21:48:57.1663399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_contextlib.py 2025-08-14T21:48:57.1667948Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_cpp_embed_headers.py 2025-08-14T21:48:57.1671059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_cpp_extension_versioner.py 2025-08-14T21:48:57.1674938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_cxx_pytree.py 2025-08-14T21:48:57.1679749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_device.py 2025-08-14T21:48:57.1682585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_dtype_abbrs.py 2025-08-14T21:48:57.1687146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_exposed_in.py 2025-08-14T21:48:57.1690064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_filelock.py 2025-08-14T21:48:57.1705914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_foreach_utils.py 2025-08-14T21:48:57.1708867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_functools.py 2025-08-14T21:48:57.1712652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_get_clean_triton.py 2025-08-14T21:48:57.1716234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_helion.py 2025-08-14T21:48:57.1719943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_import_utils.py 2025-08-14T21:48:57.1724714Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_mode_utils.py 2025-08-14T21:48:57.1727486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_ordered_set.py 2025-08-14T21:48:57.1731286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_python_dispatch.py 2025-08-14T21:48:57.1735005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_pytree.py 2025-08-14T21:48:57.1738977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_stats.py 2025-08-14T21:48:57.1772990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_thunk.py 2025-08-14T21:48:57.1773494Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_traceback.py 2025-08-14T21:48:57.1773974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_triton.py 2025-08-14T21:48:57.1774581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_typing_utils.py 2025-08-14T21:48:57.1775059Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_zip.py 2025-08-14T21:48:57.1775532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__init__.py 2025-08-14T21:48:57.1781237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\backcompat\__init__.py 2025-08-14T21:48:57.1789503Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\backcompat\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.1798302Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\__init__.py 2025-08-14T21:48:57.1805741Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\compare.py 2025-08-14T21:48:57.1809751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\fuzzer.py 2025-08-14T21:48:57.1814320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\op_benchmark.py 2025-08-14T21:48:57.1818040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\simple_timeit.py 2025-08-14T21:48:57.1822666Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\spectral_ops_fuzz_test.py 2025-08-14T21:48:57.1836896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__init__.py 2025-08-14T21:48:57.1843812Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\compare.cpython-39.pyc 2025-08-14T21:48:57.1849697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\fuzzer.cpython-39.pyc 2025-08-14T21:48:57.1851764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\op_benchmark.cpython-39.pyc 2025-08-14T21:48:57.1865541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\simple_timeit.cpython-39.pyc 2025-08-14T21:48:57.1869628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\spectral_ops_fuzz_test.cpython-39.pyc 2025-08-14T21:48:57.1873194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\examples\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.1881953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\binary.py 2025-08-14T21:48:57.1885565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\sparse_binary.py 2025-08-14T21:48:57.1889604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\sparse_unary.py 2025-08-14T21:48:57.1893225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\spectral.py 2025-08-14T21:48:57.1907351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\unary.py 2025-08-14T21:48:57.1912220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__init__.py 2025-08-14T21:48:57.1919642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\binary.cpython-39.pyc 2025-08-14T21:48:57.1924895Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\sparse_binary.cpython-39.pyc 2025-08-14T21:48:57.1927648Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\sparse_unary.cpython-39.pyc 2025-08-14T21:48:57.1943432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\spectral.cpython-39.pyc 2025-08-14T21:48:57.1945593Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\unary.cpython-39.pyc 2025-08-14T21:48:57.1950232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\op_fuzzers\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.1958934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\common.py 2025-08-14T21:48:57.1962916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\compare.py 2025-08-14T21:48:57.1966392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\compile.py 2025-08-14T21:48:57.1971378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\cpp_jit.py 2025-08-14T21:48:57.1975377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\fuzzer.py 2025-08-14T21:48:57.1978847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\sparse_fuzzer.py 2025-08-14T21:48:57.1994080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\timeit_template.cpp 2025-08-14T21:48:57.1996130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\timer.py 2025-08-14T21:48:57.2000424Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\_stubs.py 2025-08-14T21:48:57.2003649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__init__.py 2025-08-14T21:48:57.2010602Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\callgrind.h 2025-08-14T21:48:57.2014688Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\compat_bindings.cpp 2025-08-14T21:48:57.2019435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\timer_callgrind_template.cpp 2025-08-14T21:48:57.2033005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\timer_interface.py 2025-08-14T21:48:57.2038102Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\valgrind.h 2025-08-14T21:48:57.2044364Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\__init__.py 2025-08-14T21:48:57.2050782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\__pycache__\timer_interface.cpython-39.pyc 2025-08-14T21:48:57.2056443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\valgrind_wrapper\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.2063680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\common.cpython-39.pyc 2025-08-14T21:48:57.2067044Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\compare.cpython-39.pyc 2025-08-14T21:48:57.2071030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\compile.cpython-39.pyc 2025-08-14T21:48:57.2085314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\cpp_jit.cpython-39.pyc 2025-08-14T21:48:57.2089642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\fuzzer.cpython-39.pyc 2025-08-14T21:48:57.2094739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\sparse_fuzzer.cpython-39.pyc 2025-08-14T21:48:57.2097467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\timer.cpython-39.pyc 2025-08-14T21:48:57.2101342Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\_stubs.cpython-39.pyc 2025-08-14T21:48:57.2105824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\utils\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.2124454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\benchmark\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.2133367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__init__.py 2025-08-14T21:48:57.2135897Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__main__.py 2025-08-14T21:48:57.2143251Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.2147890Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\bottleneck\__pycache__\__main__.cpython-39.pyc 2025-08-14T21:48:57.2157629Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\backward_compatibility.py 2025-08-14T21:48:57.2159724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\dataloader.py 2025-08-14T21:48:57.2164201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\dataset.py 2025-08-14T21:48:57.2167475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\distributed.py 2025-08-14T21:48:57.2180703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\graph.py 2025-08-14T21:48:57.2184581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\graph_settings.py 2025-08-14T21:48:57.2189228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\sampler.py 2025-08-14T21:48:57.2192179Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__init__.py 2025-08-14T21:48:57.2201783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\datapipe.py 2025-08-14T21:48:57.2204133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\datapipe.pyi 2025-08-14T21:48:57.2208184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\gen_pyi.py 2025-08-14T21:48:57.2211520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\_decorator.py 2025-08-14T21:48:57.2215491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\_hook_iterator.py 2025-08-14T21:48:57.2229932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\_typing.py 2025-08-14T21:48:57.2233753Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__init__.py 2025-08-14T21:48:57.2241770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\dataframes.py 2025-08-14T21:48:57.2246215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\dataframe_wrapper.py 2025-08-14T21:48:57.2249535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\datapipes.py 2025-08-14T21:48:57.2263838Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\structures.py 2025-08-14T21:48:57.2267977Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__init__.py 2025-08-14T21:48:57.2276724Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\dataframes.cpython-39.pyc 2025-08-14T21:48:57.2280765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\dataframe_wrapper.cpython-39.pyc 2025-08-14T21:48:57.2286635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\datapipes.cpython-39.pyc 2025-08-14T21:48:57.2298368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\structures.cpython-39.pyc 2025-08-14T21:48:57.2303638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\dataframe\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.2310614Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\callable.py 2025-08-14T21:48:57.2314387Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\combinatorics.py 2025-08-14T21:48:57.2317989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\combining.py 2025-08-14T21:48:57.2321621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\filelister.py 2025-08-14T21:48:57.2335371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\fileopener.py 2025-08-14T21:48:57.2339206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\grouping.py 2025-08-14T21:48:57.2343080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\routeddecoder.py 2025-08-14T21:48:57.2346783Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\selecting.py 2025-08-14T21:48:57.2350526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\sharding.py 2025-08-14T21:48:57.2354066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\streamreader.py 2025-08-14T21:48:57.2357746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\utils.py 2025-08-14T21:48:57.2361247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__init__.py 2025-08-14T21:48:57.2368941Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\callable.cpython-39.pyc 2025-08-14T21:48:57.2372907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\combinatorics.cpython-39.pyc 2025-08-14T21:48:57.2376839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\combining.cpython-39.pyc 2025-08-14T21:48:57.2390878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\filelister.cpython-39.pyc 2025-08-14T21:48:57.2394705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\fileopener.cpython-39.pyc 2025-08-14T21:48:57.2398472Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\grouping.cpython-39.pyc 2025-08-14T21:48:57.2402628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\routeddecoder.cpython-39.pyc 2025-08-14T21:48:57.2406446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\selecting.cpython-39.pyc 2025-08-14T21:48:57.2410540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\sharding.cpython-39.pyc 2025-08-14T21:48:57.2414997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\streamreader.cpython-39.pyc 2025-08-14T21:48:57.2418853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:57.2422632Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\iter\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.2431183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\callable.py 2025-08-14T21:48:57.2435013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\combinatorics.py 2025-08-14T21:48:57.2438563Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\combining.py 2025-08-14T21:48:57.2442314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\grouping.py 2025-08-14T21:48:57.2445907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\utils.py 2025-08-14T21:48:57.2459685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__init__.py 2025-08-14T21:48:57.2467661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\callable.cpython-39.pyc 2025-08-14T21:48:57.2471519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\combinatorics.cpython-39.pyc 2025-08-14T21:48:57.2475171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\combining.cpython-39.pyc 2025-08-14T21:48:57.2488751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\grouping.cpython-39.pyc 2025-08-14T21:48:57.2492665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:57.2496478Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\map\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.2504914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\common.py 2025-08-14T21:48:57.2508635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\decoder.py 2025-08-14T21:48:57.2512146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\snapshot.py 2025-08-14T21:48:57.2515685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__init__.py 2025-08-14T21:48:57.2522122Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\common.cpython-39.pyc 2025-08-14T21:48:57.2526323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\decoder.cpython-39.pyc 2025-08-14T21:48:57.2530271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\snapshot.cpython-39.pyc 2025-08-14T21:48:57.2543748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\utils\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.2552370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\datapipe.cpython-39.pyc 2025-08-14T21:48:57.2556203Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\gen_pyi.cpython-39.pyc 2025-08-14T21:48:57.2560070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\_decorator.cpython-39.pyc 2025-08-14T21:48:57.2574333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\_hook_iterator.cpython-39.pyc 2025-08-14T21:48:57.2578154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\_typing.cpython-39.pyc 2025-08-14T21:48:57.2581860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\datapipes\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.2590485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\collate.py 2025-08-14T21:48:57.2594033Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\fetch.py 2025-08-14T21:48:57.2597645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\pin_memory.py 2025-08-14T21:48:57.2601172Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\signal_handling.py 2025-08-14T21:48:57.2604711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\worker.py 2025-08-14T21:48:57.2618021Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__init__.py 2025-08-14T21:48:57.2626330Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\collate.cpython-39.pyc 2025-08-14T21:48:57.2630002Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\fetch.cpython-39.pyc 2025-08-14T21:48:57.2633765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\pin_memory.cpython-39.pyc 2025-08-14T21:48:57.2647332Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\signal_handling.cpython-39.pyc 2025-08-14T21:48:57.2651335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\worker.cpython-39.pyc 2025-08-14T21:48:57.2654960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\_utils\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.2663412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\backward_compatibility.cpython-39.pyc 2025-08-14T21:48:57.2668978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\dataloader.cpython-39.pyc 2025-08-14T21:48:57.2672971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\dataset.cpython-39.pyc 2025-08-14T21:48:57.2686603Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\distributed.cpython-39.pyc 2025-08-14T21:48:57.2690336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\graph.cpython-39.pyc 2025-08-14T21:48:57.2694305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\graph_settings.cpython-39.pyc 2025-08-14T21:48:57.2698663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\sampler.cpython-39.pyc 2025-08-14T21:48:57.2702327Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\data\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.2710885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\constants.py 2025-08-14T21:48:57.2714598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\cuda_to_hip_mappings.py 2025-08-14T21:48:57.2720170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\hipify_python.py 2025-08-14T21:48:57.2724273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\version.py 2025-08-14T21:48:57.2737756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__init__.py 2025-08-14T21:48:57.2745542Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\constants.cpython-39.pyc 2025-08-14T21:48:57.2750030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\cuda_to_hip_mappings.cpython-39.pyc 2025-08-14T21:48:57.2757446Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\hipify_python.cpython-39.pyc 2025-08-14T21:48:57.2771738Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\version.cpython-39.pyc 2025-08-14T21:48:57.2776112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\hipify\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.2785346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\log_extract.py 2025-08-14T21:48:57.2789756Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\__init__.py 2025-08-14T21:48:57.2798385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\__pycache__\log_extract.cpython-39.pyc 2025-08-14T21:48:57.2802553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\jit\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.2811993Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\code.js 2025-08-14T21:48:57.2816126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\htm.mjs 2025-08-14T21:48:57.2821105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\preact.mjs 2025-08-14T21:48:57.2824777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\skeleton.html 2025-08-14T21:48:57.2828570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__init__.py 2025-08-14T21:48:57.2876461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__main__.py 2025-08-14T21:48:57.2883764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.2887487Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\model_dump\__pycache__\__main__.cpython-39.pyc 2025-08-14T21:48:57.2895616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\config.py 2025-08-14T21:48:57.2902282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\__init__.py 2025-08-14T21:48:57.2907616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\__pycache__\config.cpython-39.pyc 2025-08-14T21:48:57.2911594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\serialization\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.2919975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\summary.py 2025-08-14T21:48:57.2923672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\writer.py 2025-08-14T21:48:57.2927378Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_convert_np.py 2025-08-14T21:48:57.2930996Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_embedding.py 2025-08-14T21:48:57.3086219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_onnx_graph.py 2025-08-14T21:48:57.3089873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_proto_graph.py 2025-08-14T21:48:57.3093552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_pytorch_graph.py 2025-08-14T21:48:57.3097467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\_utils.py 2025-08-14T21:48:57.3100971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__init__.py 2025-08-14T21:48:57.3109028Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\summary.cpython-39.pyc 2025-08-14T21:48:57.3113204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\writer.cpython-39.pyc 2025-08-14T21:48:57.3117883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_convert_np.cpython-39.pyc 2025-08-14T21:48:57.3129573Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_embedding.cpython-39.pyc 2025-08-14T21:48:57.3133167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_onnx_graph.cpython-39.pyc 2025-08-14T21:48:57.3137293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_proto_graph.cpython-39.pyc 2025-08-14T21:48:57.3141105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_pytorch_graph.cpython-39.pyc 2025-08-14T21:48:57.3144954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:57.3148952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\tensorboard\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.3157798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\_cycles.py 2025-08-14T21:48:57.3161518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\__init__.py 2025-08-14T21:48:57.3168140Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\__pycache__\_cycles.cpython-39.pyc 2025-08-14T21:48:57.3172065Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\viz\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.3181285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\cli_function_profiler.py 2025-08-14T21:48:57.3185112Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\__init__.py 2025-08-14T21:48:57.3192004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\__pycache__\cli_function_profiler.cpython-39.pyc 2025-08-14T21:48:57.3195677Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_strobelight\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.3204237Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\functions.py 2025-08-14T21:48:57.3207997Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\interp.py 2025-08-14T21:48:57.3211740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\numbers.py 2025-08-14T21:48:57.3215257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\printers.py 2025-08-14T21:48:57.3218800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\reference.py 2025-08-14T21:48:57.3234697Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\singleton_int.py 2025-08-14T21:48:57.3238605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\solve.py 2025-08-14T21:48:57.3242202Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\symbol.py 2025-08-14T21:48:57.3245973Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\value_ranges.py 2025-08-14T21:48:57.3250867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__init__.py 2025-08-14T21:48:57.3257701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\functions.cpython-39.pyc 2025-08-14T21:48:57.3264615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\interp.cpython-39.pyc 2025-08-14T21:48:57.3265719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\numbers.cpython-39.pyc 2025-08-14T21:48:57.3281953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\printers.cpython-39.pyc 2025-08-14T21:48:57.3310636Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\reference.cpython-39.pyc 2025-08-14T21:48:57.3311414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\singleton_int.cpython-39.pyc 2025-08-14T21:48:57.3312144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\solve.cpython-39.pyc 2025-08-14T21:48:57.3312859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\symbol.cpython-39.pyc 2025-08-14T21:48:57.3313601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\value_ranges.cpython-39.pyc 2025-08-14T21:48:57.3314333Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\_sympy\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.3318619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\backend_registration.cpython-39.pyc 2025-08-14T21:48:57.3324536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\bundled_inputs.cpython-39.pyc 2025-08-14T21:48:57.3326689Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\checkpoint.cpython-39.pyc 2025-08-14T21:48:57.3343498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\collect_env.cpython-39.pyc 2025-08-14T21:48:57.3346761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\cpp_backtrace.cpython-39.pyc 2025-08-14T21:48:57.3350592Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\cpp_extension.cpython-39.pyc 2025-08-14T21:48:57.3355304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\deterministic.cpython-39.pyc 2025-08-14T21:48:57.3360443Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\dlpack.cpython-39.pyc 2025-08-14T21:48:57.3363167Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\file_baton.cpython-39.pyc 2025-08-14T21:48:57.3367156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\flop_counter.cpython-39.pyc 2025-08-14T21:48:57.3370912Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\hooks.cpython-39.pyc 2025-08-14T21:48:57.3391805Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\mkldnn.cpython-39.pyc 2025-08-14T21:48:57.3393068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\mobile_optimizer.cpython-39.pyc 2025-08-14T21:48:57.3393982Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\model_zoo.cpython-39.pyc 2025-08-14T21:48:57.3394699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\module_tracker.cpython-39.pyc 2025-08-14T21:48:57.3395408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\show_pickle.cpython-39.pyc 2025-08-14T21:48:57.3400531Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\throughput_benchmark.cpython-39.pyc 2025-08-14T21:48:57.3418381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\weak.cpython-39.pyc 2025-08-14T21:48:57.3423439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_appending_byte_serializer.cpython-39.pyc 2025-08-14T21:48:57.3428840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_backport_slots.cpython-39.pyc 2025-08-14T21:48:57.3434088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_config_module.cpython-39.pyc 2025-08-14T21:48:57.3440258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_content_store.cpython-39.pyc 2025-08-14T21:48:57.3444606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_contextlib.cpython-39.pyc 2025-08-14T21:48:57.3449402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_cpp_embed_headers.cpython-39.pyc 2025-08-14T21:48:57.3465519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_cpp_extension_versioner.cpython-39.pyc 2025-08-14T21:48:57.3469301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_cxx_pytree.cpython-39.pyc 2025-08-14T21:48:57.3473380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_device.cpython-39.pyc 2025-08-14T21:48:57.3477277Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_dtype_abbrs.cpython-39.pyc 2025-08-14T21:48:57.3481265Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_exposed_in.cpython-39.pyc 2025-08-14T21:48:57.3485047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_filelock.cpython-39.pyc 2025-08-14T21:48:57.3489093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_foreach_utils.cpython-39.pyc 2025-08-14T21:48:57.3492933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_functools.cpython-39.pyc 2025-08-14T21:48:57.3496836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_get_clean_triton.cpython-39.pyc 2025-08-14T21:48:57.3512690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_helion.cpython-39.pyc 2025-08-14T21:48:57.3516556Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_import_utils.cpython-39.pyc 2025-08-14T21:48:57.3520343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_mode_utils.cpython-39.pyc 2025-08-14T21:48:57.3524247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_ordered_set.cpython-39.pyc 2025-08-14T21:48:57.3528262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_python_dispatch.cpython-39.pyc 2025-08-14T21:48:57.3532241Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_pytree.cpython-39.pyc 2025-08-14T21:48:57.3536354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_stats.cpython-39.pyc 2025-08-14T21:48:57.3540229Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_thunk.cpython-39.pyc 2025-08-14T21:48:57.3565623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_traceback.cpython-39.pyc 2025-08-14T21:48:57.3569368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_triton.cpython-39.pyc 2025-08-14T21:48:57.3575313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_typing_utils.cpython-39.pyc 2025-08-14T21:48:57.3577565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\_zip.cpython-39.pyc 2025-08-14T21:48:57.3581979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\utils\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.3594270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\memory.py 2025-08-14T21:48:57.3596817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\random.py 2025-08-14T21:48:57.3600624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\streams.py 2025-08-14T21:48:57.3603913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\_gpu_trace.py 2025-08-14T21:48:57.3607642Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\_utils.py 2025-08-14T21:48:57.3612904Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__init__.py 2025-08-14T21:48:57.3632042Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\memory.cpython-39.pyc 2025-08-14T21:48:57.3634320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\random.cpython-39.pyc 2025-08-14T21:48:57.3638422Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\streams.cpython-39.pyc 2025-08-14T21:48:57.3653560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\_gpu_trace.cpython-39.pyc 2025-08-14T21:48:57.3657535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:48:57.3663087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\xpu\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.3669969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_awaits\__init__.py 2025-08-14T21:48:57.3677401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_awaits\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.3685582Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_aoti.pyi 2025-08-14T21:48:57.3689290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_autograd.pyi 2025-08-14T21:48:57.3694465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_cpu.pyi 2025-08-14T21:48:57.3697585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_cudnn.pyi 2025-08-14T21:48:57.3701498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_cusparselt.pyi 2025-08-14T21:48:57.3716825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_autograd.pyi 2025-08-14T21:48:57.3720902Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_c10d.pyi 2025-08-14T21:48:57.3724682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_rpc.pyi 2025-08-14T21:48:57.3728543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_distributed_rpc_testing.pyi 2025-08-14T21:48:57.3732489Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_functions.pyi 2025-08-14T21:48:57.3736165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_functorch.pyi 2025-08-14T21:48:57.3740126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_instruction_counter.pyi 2025-08-14T21:48:57.3743875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_itt.pyi 2025-08-14T21:48:57.3747685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_jit_tree_views.pyi 2025-08-14T21:48:57.3751448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_lazy.pyi 2025-08-14T21:48:57.3755034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_lazy_ts_backend.pyi 2025-08-14T21:48:57.3758823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_monitor.pyi 2025-08-14T21:48:57.3764814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_nn.pyi 2025-08-14T21:48:57.3766192Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_nvtx.pyi 2025-08-14T21:48:57.3849780Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_onnx.pyi 2025-08-14T21:48:57.3850281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_profiler.pyi 2025-08-14T21:48:57.3850792Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_VariableFunctions.pyi 2025-08-14T21:48:57.3851404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_verbose.pyi 2025-08-14T21:48:57.3851887Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\__init__.pyi 2025-08-14T21:48:57.3852405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\compiled_autograd.pyi 2025-08-14T21:48:57.3852991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\eval_frame.pyi 2025-08-14T21:48:57.3853511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\guards.pyi 2025-08-14T21:48:57.3854126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_dynamo\__init__.pyi 2025-08-14T21:48:57.3854704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_export\pt2_archive_constants.pyi 2025-08-14T21:48:57.3855368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C\_export\__init__.pyi 2025-08-14T21:48:57.3855990Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\autograd.py 2025-08-14T21:48:57.3857169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\impl.py 2025-08-14T21:48:57.3860745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__init__.py 2025-08-14T21:48:57.3867534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__pycache__\autograd.cpython-39.pyc 2025-08-14T21:48:57.3872093Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__pycache__\impl.cpython-39.pyc 2025-08-14T21:48:57.3875873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_custom_op\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.3894873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_C_flatbuffer\__init__.pyi 2025-08-14T21:48:57.3902892Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\decompositions.py 2025-08-14T21:48:57.3907575Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\decompositions_for_jvp.py 2025-08-14T21:48:57.3911338Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\decompositions_for_rng.py 2025-08-14T21:48:57.3926883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__init__.py 2025-08-14T21:48:57.3934096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\decompositions.cpython-39.pyc 2025-08-14T21:48:57.3938579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\decompositions_for_jvp.cpython-39.pyc 2025-08-14T21:48:57.3942365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\decompositions_for_rng.cpython-39.pyc 2025-08-14T21:48:57.3957088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_decomp\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.3965113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\python.py 2025-08-14T21:48:57.3968695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\__init__.py 2025-08-14T21:48:57.3975914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\__pycache__\python.cpython-39.pyc 2025-08-14T21:48:57.3980040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dispatch\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.3989134Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\bytecode_analysis.py 2025-08-14T21:48:57.3992940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\bytecode_transformation.py 2025-08-14T21:48:57.3996816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\cache_size.py 2025-08-14T21:48:57.4011373Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\callback.py 2025-08-14T21:48:57.4014846Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\codegen.py 2025-08-14T21:48:57.4018668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\code_context.py 2025-08-14T21:48:57.4022590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\compiled_autograd.py 2025-08-14T21:48:57.4026641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\comptime.py 2025-08-14T21:48:57.4030260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\config.py 2025-08-14T21:48:57.4033908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\convert_frame.py 2025-08-14T21:48:57.4037875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\create_parameter_op.py 2025-08-14T21:48:57.4041647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\current_scope_id.py 2025-08-14T21:48:57.4045292Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\debug_utils.py 2025-08-14T21:48:57.4049023Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\decorators.py 2025-08-14T21:48:57.4053160Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\device_interface.py 2025-08-14T21:48:57.4057099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\distributed.py 2025-08-14T21:48:57.4060764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\eval_frame.py 2025-08-14T21:48:57.4064726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\exc.py 2025-08-14T21:48:57.4068440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\external_utils.py 2025-08-14T21:48:57.4072148Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\funcname_cache.py 2025-08-14T21:48:57.4075975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_break_hints.py 2025-08-14T21:48:57.4089917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_break_registry.json 2025-08-14T21:48:57.4094452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_deduplication.py 2025-08-14T21:48:57.4099295Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_region_tracker.py 2025-08-14T21:48:57.4103091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\graph_utils.py 2025-08-14T21:48:57.4107258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\guards.py 2025-08-14T21:48:57.4111576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\hooks.py 2025-08-14T21:48:57.4115185Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\logging.py 2025-08-14T21:48:57.4119615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\metrics_context.py 2025-08-14T21:48:57.4123313Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\mutation_guard.py 2025-08-14T21:48:57.4127197Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\output_graph.py 2025-08-14T21:48:57.4131396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\package.py 2025-08-14T21:48:57.4145630Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\pgo.py 2025-08-14T21:48:57.4149509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\precompile_context.py 2025-08-14T21:48:57.4153543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\profiler.py 2025-08-14T21:48:57.4157094Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\replay_record.py 2025-08-14T21:48:57.4160751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\resume_execution.py 2025-08-14T21:48:57.4164370Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\side_effects.py 2025-08-14T21:48:57.4168169Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\source.py 2025-08-14T21:48:57.4171883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\symbolic_convert.py 2025-08-14T21:48:57.4176314Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\tensor_version_op.py 2025-08-14T21:48:57.4180165Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\testing.py 2025-08-14T21:48:57.4183705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\test_case.py 2025-08-14T21:48:57.4187827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\test_dont_skip_tracing_functions.py 2025-08-14T21:48:57.4202427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\test_minifier_common.py 2025-08-14T21:48:57.4206419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\trace_rules.py 2025-08-14T21:48:57.4210983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\types.py 2025-08-14T21:48:57.4214595Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\utils.py 2025-08-14T21:48:57.4219273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\_trace_wrapped_higher_order_op.py 2025-08-14T21:48:57.4224628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__init__.py 2025-08-14T21:48:57.4231325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\common.py 2025-08-14T21:48:57.4234914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\cudagraphs.py 2025-08-14T21:48:57.4238586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\debugging.py 2025-08-14T21:48:57.4243191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\distributed.py 2025-08-14T21:48:57.4256464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\inductor.py 2025-08-14T21:48:57.4260011Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\onnxrt.py 2025-08-14T21:48:57.4263659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\registry.py 2025-08-14T21:48:57.4338800Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\tensorrt.py 2025-08-14T21:48:57.4339376Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\torchxla.py 2025-08-14T21:48:57.4339920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\tvm.py 2025-08-14T21:48:57.4340464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__init__.py 2025-08-14T21:48:57.4341113Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\common.cpython-39.pyc 2025-08-14T21:48:57.4341874Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\cudagraphs.cpython-39.pyc 2025-08-14T21:48:57.4342735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\debugging.cpython-39.pyc 2025-08-14T21:48:57.4343609Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\distributed.cpython-39.pyc 2025-08-14T21:48:57.4349552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\inductor.cpython-39.pyc 2025-08-14T21:48:57.4353645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\onnxrt.cpython-39.pyc 2025-08-14T21:48:57.4359612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\registry.cpython-39.pyc 2025-08-14T21:48:57.4361518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\tensorrt.cpython-39.pyc 2025-08-14T21:48:57.4365154Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\torchxla.cpython-39.pyc 2025-08-14T21:48:57.4371562Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\tvm.cpython-39.pyc 2025-08-14T21:48:57.4373283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\backends\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.4382625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\builtins.py 2025-08-14T21:48:57.4388469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\functools.py 2025-08-14T21:48:57.4391081Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\fx.py 2025-08-14T21:48:57.4394684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\itertools.py 2025-08-14T21:48:57.4403099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\loader.py 2025-08-14T21:48:57.4406801Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\operator.py 2025-08-14T21:48:57.4410288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\os.py 2025-08-14T21:48:57.4413916Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\pytree.py 2025-08-14T21:48:57.4418350Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\struct.py 2025-08-14T21:48:57.4421842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\sys.py 2025-08-14T21:48:57.4426444Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\tensor.py 2025-08-14T21:48:57.4429583Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__init__.py 2025-08-14T21:48:57.4437694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\builtins.cpython-39.pyc 2025-08-14T21:48:57.4441474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\functools.cpython-39.pyc 2025-08-14T21:48:57.4445322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\fx.cpython-39.pyc 2025-08-14T21:48:57.4459765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\itertools.cpython-39.pyc 2025-08-14T21:48:57.4463471Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\loader.cpython-39.pyc 2025-08-14T21:48:57.4467943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\operator.cpython-39.pyc 2025-08-14T21:48:57.4471706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\os.cpython-39.pyc 2025-08-14T21:48:57.4475721Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\pytree.cpython-39.pyc 2025-08-14T21:48:57.4480256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\struct.cpython-39.pyc 2025-08-14T21:48:57.4483285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\sys.cpython-39.pyc 2025-08-14T21:48:57.4487178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\tensor.cpython-39.pyc 2025-08-14T21:48:57.4492517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\polyfills\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.4500133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\after_aot.py 2025-08-14T21:48:57.4505103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\after_dynamo.py 2025-08-14T21:48:57.4508073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\aoti.py 2025-08-14T21:48:57.4511822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__init__.py 2025-08-14T21:48:57.4530206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\after_aot.cpython-39.pyc 2025-08-14T21:48:57.4533068Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\after_dynamo.cpython-39.pyc 2025-08-14T21:48:57.4537038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\aoti.cpython-39.pyc 2025-08-14T21:48:57.4551430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\repro\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.4561690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\base.py 2025-08-14T21:48:57.4563921Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\builder.py 2025-08-14T21:48:57.4568969Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\builtin.py 2025-08-14T21:48:57.4574392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\constant.py 2025-08-14T21:48:57.4576886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\ctx_manager.py 2025-08-14T21:48:57.4592946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\dicts.py 2025-08-14T21:48:57.4595357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\distributed.py 2025-08-14T21:48:57.4599525Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\functions.py 2025-08-14T21:48:57.4603270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\higher_order_ops.py 2025-08-14T21:48:57.4607968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\iter.py 2025-08-14T21:48:57.4611968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\lazy.py 2025-08-14T21:48:57.4615322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\lists.py 2025-08-14T21:48:57.4619276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\misc.py 2025-08-14T21:48:57.4624272Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\nn_module.py 2025-08-14T21:48:57.4627409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\optimizer.py 2025-08-14T21:48:57.4631383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\script_object.py 2025-08-14T21:48:57.4635882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\sdpa.py 2025-08-14T21:48:57.4638618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\tensor.py 2025-08-14T21:48:57.4643528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\torch.py 2025-08-14T21:48:57.4646840Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\torch_function.py 2025-08-14T21:48:57.4650833Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\user_defined.py 2025-08-14T21:48:57.4655459Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__init__.py 2025-08-14T21:48:57.4665949Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\base.cpython-39.pyc 2025-08-14T21:48:57.4669809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\builder.cpython-39.pyc 2025-08-14T21:48:57.4674209Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\builtin.cpython-39.pyc 2025-08-14T21:48:57.4689625Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\constant.cpython-39.pyc 2025-08-14T21:48:57.4693737Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\ctx_manager.cpython-39.pyc 2025-08-14T21:48:57.4698417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\dicts.cpython-39.pyc 2025-08-14T21:48:57.4701944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\distributed.cpython-39.pyc 2025-08-14T21:48:57.4705824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\functions.cpython-39.pyc 2025-08-14T21:48:57.4710268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\higher_order_ops.cpython-39.pyc 2025-08-14T21:48:57.4716701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\iter.cpython-39.pyc 2025-08-14T21:48:57.4718917Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\lazy.cpython-39.pyc 2025-08-14T21:48:57.4723349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\lists.cpython-39.pyc 2025-08-14T21:48:57.4726868Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\misc.cpython-39.pyc 2025-08-14T21:48:57.4731157Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\nn_module.cpython-39.pyc 2025-08-14T21:48:57.4735694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\optimizer.cpython-39.pyc 2025-08-14T21:48:57.4738672Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\script_object.cpython-39.pyc 2025-08-14T21:48:57.4742732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\sdpa.cpython-39.pyc 2025-08-14T21:48:57.4757825Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\tensor.cpython-39.pyc 2025-08-14T21:48:57.4762176Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\torch.cpython-39.pyc 2025-08-14T21:48:57.4766907Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\torch_function.cpython-39.pyc 2025-08-14T21:48:57.4770270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\user_defined.cpython-39.pyc 2025-08-14T21:48:57.4795628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\variables\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.4796400Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\bytecode_analysis.cpython-39.pyc 2025-08-14T21:48:57.4797183Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\bytecode_transformation.cpython-39.pyc 2025-08-14T21:48:57.4797923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\cache_size.cpython-39.pyc 2025-08-14T21:48:57.4809388Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\callback.cpython-39.pyc 2025-08-14T21:48:57.4811845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\codegen.cpython-39.pyc 2025-08-14T21:48:57.4816216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\code_context.cpython-39.pyc 2025-08-14T21:48:57.4820064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\compiled_autograd.cpython-39.pyc 2025-08-14T21:48:57.4824003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\comptime.cpython-39.pyc 2025-08-14T21:48:57.4828149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\config.cpython-39.pyc 2025-08-14T21:48:57.4832128Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\convert_frame.cpython-39.pyc 2025-08-14T21:48:57.4836054Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\create_parameter_op.cpython-39.pyc 2025-08-14T21:48:57.4839938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\current_scope_id.cpython-39.pyc 2025-08-14T21:48:57.4845096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\debug_utils.cpython-39.pyc 2025-08-14T21:48:57.4847755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\decorators.cpython-39.pyc 2025-08-14T21:48:57.4851669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\device_interface.cpython-39.pyc 2025-08-14T21:48:57.4855490Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\distributed.cpython-39.pyc 2025-08-14T21:48:57.4869427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\eval_frame.cpython-39.pyc 2025-08-14T21:48:57.4873576Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\exc.cpython-39.pyc 2025-08-14T21:48:57.4877421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\external_utils.cpython-39.pyc 2025-08-14T21:48:57.4881156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\funcname_cache.cpython-39.pyc 2025-08-14T21:48:57.4884955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_break_hints.cpython-39.pyc 2025-08-14T21:48:57.4889198Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_deduplication.cpython-39.pyc 2025-08-14T21:48:57.4893088Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_region_tracker.cpython-39.pyc 2025-08-14T21:48:57.4897516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\graph_utils.cpython-39.pyc 2025-08-14T21:48:57.4911924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\guards.cpython-39.pyc 2025-08-14T21:48:57.4916089Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\hooks.cpython-39.pyc 2025-08-14T21:48:57.4920477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\logging.cpython-39.pyc 2025-08-14T21:48:57.4924670Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\metrics_context.cpython-39.pyc 2025-08-14T21:48:57.4928545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\mutation_guard.cpython-39.pyc 2025-08-14T21:48:57.4932300Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\output_graph.cpython-39.pyc 2025-08-14T21:48:57.4936662Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\package.cpython-39.pyc 2025-08-14T21:48:57.4940598Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\pgo.cpython-39.pyc 2025-08-14T21:48:57.4945596Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\precompile_context.cpython-39.pyc 2025-08-14T21:48:57.4959740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\profiler.cpython-39.pyc 2025-08-14T21:48:57.4963764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\replay_record.cpython-39.pyc 2025-08-14T21:48:57.4967544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\resume_execution.cpython-39.pyc 2025-08-14T21:48:57.4971206Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\side_effects.cpython-39.pyc 2025-08-14T21:48:57.4975266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\source.cpython-39.pyc 2025-08-14T21:48:57.4979249Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\symbolic_convert.cpython-39.pyc 2025-08-14T21:48:57.4983616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\tensor_version_op.cpython-39.pyc 2025-08-14T21:48:57.4988064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\testing.cpython-39.pyc 2025-08-14T21:48:57.5012656Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\test_case.cpython-39.pyc 2025-08-14T21:48:57.5016105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\test_dont_skip_tracing_functions.cpython-39.pyc 2025-08-14T21:48:57.5020396Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\test_minifier_common.cpython-39.pyc 2025-08-14T21:48:57.5024711Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\trace_rules.cpython-39.pyc 2025-08-14T21:48:57.5028647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\types.cpython-39.pyc 2025-08-14T21:48:57.5032540Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:57.5037933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\_trace_wrapped_higher_order_op.cpython-39.pyc 2025-08-14T21:48:57.5041056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_dynamo\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.5062959Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\converter.py 2025-08-14T21:48:57.5066621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\error.py 2025-08-14T21:48:57.5070742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\non_strict_utils.py 2025-08-14T21:48:57.5075267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_base.py 2025-08-14T21:48:57.5088586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\tools.py 2025-08-14T21:48:57.5093410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\utils.py 2025-08-14T21:48:57.5095983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\verifier.py 2025-08-14T21:48:57.5100321Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\wrappers.py 2025-08-14T21:48:57.5103336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__init__.py 2025-08-14T21:48:57.5112325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\case.py 2025-08-14T21:48:57.5114641Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\gen_example.py 2025-08-14T21:48:57.5118978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\logging.py 2025-08-14T21:48:57.5121869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__init__.py 2025-08-14T21:48:57.5130043Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\assume_constant_result.py 2025-08-14T21:48:57.5133978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\autograd_function.py 2025-08-14T21:48:57.5138381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\class_method.py 2025-08-14T21:48:57.5152901Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_branch_class_method.py 2025-08-14T21:48:57.5157149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_branch_nested_function.py 2025-08-14T21:48:57.5160934Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_branch_nonlocal_variables.py 2025-08-14T21:48:57.5164777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_closed_over_variable.py 2025-08-14T21:48:57.5169063Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_operands.py 2025-08-14T21:48:57.5172377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\cond_predicate.py 2025-08-14T21:48:57.5176316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\constrain_as_size_example.py 2025-08-14T21:48:57.5181528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\constrain_as_value_example.py 2025-08-14T21:48:57.5184420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\decorator.py 2025-08-14T21:48:57.5188527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dictionary.py 2025-08-14T21:48:57.5192003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_assert.py 2025-08-14T21:48:57.5195823Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_constructor.py 2025-08-14T21:48:57.5200434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_if_guard.py 2025-08-14T21:48:57.5203500Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_map.py 2025-08-14T21:48:57.5207631Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_round.py 2025-08-14T21:48:57.5221324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_slicing.py 2025-08-14T21:48:57.5225347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\dynamic_shape_view.py 2025-08-14T21:48:57.5229086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\fn_with_kwargs.py 2025-08-14T21:48:57.5233126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\list_contains.py 2025-08-14T21:48:57.5237960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\list_unpack.py 2025-08-14T21:48:57.5240674Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\model_attr_mutation.py 2025-08-14T21:48:57.5244880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\nested_function.py 2025-08-14T21:48:57.5248419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\null_context_manager.py 2025-08-14T21:48:57.5262918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\optional_input.py 2025-08-14T21:48:57.5266579Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\pytree_flatten.py 2025-08-14T21:48:57.5270545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\scalar_output.py 2025-08-14T21:48:57.5274405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\specialized_attribute.py 2025-08-14T21:48:57.5284434Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\static_for_loop.py 2025-08-14T21:48:57.5285170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\static_if.py 2025-08-14T21:48:57.5286273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\tensor_setattr.py 2025-08-14T21:48:57.5291329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\type_reflection_method.py 2025-08-14T21:48:57.5294232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\unsupported_operator.py 2025-08-14T21:48:57.5308474Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\user_input_mutation.py 2025-08-14T21:48:57.5312156Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__init__.py 2025-08-14T21:48:57.5322107Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\assume_constant_result.cpython-39.pyc 2025-08-14T21:48:57.5326019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\autograd_function.cpython-39.pyc 2025-08-14T21:48:57.5329790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\class_method.cpython-39.pyc 2025-08-14T21:48:57.5344152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_branch_class_method.cpython-39.pyc 2025-08-14T21:48:57.5348371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_branch_nested_function.cpython-39.pyc 2025-08-14T21:48:57.5352932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_branch_nonlocal_variables.cpython-39.pyc 2025-08-14T21:48:57.5356796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_closed_over_variable.cpython-39.pyc 2025-08-14T21:48:57.5361030Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_operands.cpython-39.pyc 2025-08-14T21:48:57.5364848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\cond_predicate.cpython-39.pyc 2025-08-14T21:48:57.5369681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\constrain_as_size_example.cpython-39.pyc 2025-08-14T21:48:57.5374168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\constrain_as_value_example.cpython-39.pyc 2025-08-14T21:48:57.5378099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\decorator.cpython-39.pyc 2025-08-14T21:48:57.5381943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dictionary.cpython-39.pyc 2025-08-14T21:48:57.5385889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_assert.cpython-39.pyc 2025-08-14T21:48:57.5390680Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_constructor.cpython-39.pyc 2025-08-14T21:48:57.5395519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_if_guard.cpython-39.pyc 2025-08-14T21:48:57.5410875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_map.cpython-39.pyc 2025-08-14T21:48:57.5414770Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_round.cpython-39.pyc 2025-08-14T21:48:57.5419040Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_slicing.cpython-39.pyc 2025-08-14T21:48:57.5423091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\dynamic_shape_view.cpython-39.pyc 2025-08-14T21:48:57.5427777Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\fn_with_kwargs.cpython-39.pyc 2025-08-14T21:48:57.5431665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\list_contains.cpython-39.pyc 2025-08-14T21:48:57.5435958Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\list_unpack.cpython-39.pyc 2025-08-14T21:48:57.5450090Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\model_attr_mutation.cpython-39.pyc 2025-08-14T21:48:57.5454163Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\nested_function.cpython-39.pyc 2025-08-14T21:48:57.5457817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\null_context_manager.cpython-39.pyc 2025-08-14T21:48:57.5461708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\optional_input.cpython-39.pyc 2025-08-14T21:48:57.5465594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\pytree_flatten.cpython-39.pyc 2025-08-14T21:48:57.5469546Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\scalar_output.cpython-39.pyc 2025-08-14T21:48:57.5473554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\specialized_attribute.cpython-39.pyc 2025-08-14T21:48:57.5477947Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\static_for_loop.cpython-39.pyc 2025-08-14T21:48:57.5501348Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\static_if.cpython-39.pyc 2025-08-14T21:48:57.5505215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\tensor_setattr.cpython-39.pyc 2025-08-14T21:48:57.5509126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\type_reflection_method.cpython-39.pyc 2025-08-14T21:48:57.5512954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\unsupported_operator.cpython-39.pyc 2025-08-14T21:48:57.5516974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\user_input_mutation.cpython-39.pyc 2025-08-14T21:48:57.5521234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\examples\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.5541720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\case.cpython-39.pyc 2025-08-14T21:48:57.5545869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\gen_example.cpython-39.pyc 2025-08-14T21:48:57.5549633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\logging.cpython-39.pyc 2025-08-14T21:48:57.5564217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\db\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.5571855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\add_runtime_assertions_for_constraints_pass.py 2025-08-14T21:48:57.5576535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\collect_tracepoints_pass.py 2025-08-14T21:48:57.5579509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\constant_folding.py 2025-08-14T21:48:57.5593274Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\functionalize_side_effectful_ops_pass.py 2025-08-14T21:48:57.5597233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\insert_custom_op_guards.py 2025-08-14T21:48:57.5601457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\lift_constants_pass.py 2025-08-14T21:48:57.5605514Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\remove_runtime_assertions.py 2025-08-14T21:48:57.5609619Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_autocast_with_hop_pass.py 2025-08-14T21:48:57.5613516Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_quantized_ops_with_standard_ops_pass.py 2025-08-14T21:48:57.5617328Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_set_grad_with_hop_pass.py 2025-08-14T21:48:57.5621103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_view_ops_with_view_copy_ops_pass.py 2025-08-14T21:48:57.5624851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\replace_with_hop_pass_util.py 2025-08-14T21:48:57.5628885Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\_node_metadata_hook.py 2025-08-14T21:48:57.5632773Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__init__.py 2025-08-14T21:48:57.5640794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\add_runtime_assertions_for_constraints_pass.cpython-39.pyc 2025-08-14T21:48:57.5644585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\collect_tracepoints_pass.cpython-39.pyc 2025-08-14T21:48:57.5659684Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\constant_folding.cpython-39.pyc 2025-08-14T21:48:57.5662815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\functionalize_side_effectful_ops_pass.cpython-39.pyc 2025-08-14T21:48:57.5667461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\insert_custom_op_guards.cpython-39.pyc 2025-08-14T21:48:57.5705483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\lift_constants_pass.cpython-39.pyc 2025-08-14T21:48:57.5709989Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\remove_runtime_assertions.cpython-39.pyc 2025-08-14T21:48:57.5713381Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_autocast_with_hop_pass.cpython-39.pyc 2025-08-14T21:48:57.5717420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_quantized_ops_with_standard_ops_pass.cpython-39.pyc 2025-08-14T21:48:57.5722395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_set_grad_with_hop_pass.cpython-39.pyc 2025-08-14T21:48:57.5725628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_view_ops_with_view_copy_ops_pass.cpython-39.pyc 2025-08-14T21:48:57.5729749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\replace_with_hop_pass_util.cpython-39.pyc 2025-08-14T21:48:57.5734867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\_node_metadata_hook.cpython-39.pyc 2025-08-14T21:48:57.5737483Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\passes\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.5747343Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\node_metadata.py 2025-08-14T21:48:57.5750358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\proxy_value.py 2025-08-14T21:48:57.5754146Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__init__.py 2025-08-14T21:48:57.5766405Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__pycache__\node_metadata.cpython-39.pyc 2025-08-14T21:48:57.5769568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__pycache__\proxy_value.cpython-39.pyc 2025-08-14T21:48:57.5773451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\pass_infra\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.5801180Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\dynamic_shapes.py 2025-08-14T21:48:57.5816547Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\export_schema.thrift 2025-08-14T21:48:57.5825127Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\schema.py 2025-08-14T21:48:57.5825661Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\schema.yaml 2025-08-14T21:48:57.5826231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\schema_check.py 2025-08-14T21:48:57.5826860Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\serialize.py 2025-08-14T21:48:57.5831992Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\union.py 2025-08-14T21:48:57.5833769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__init__.py 2025-08-14T21:48:57.5840725Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\dynamic_shapes.cpython-39.pyc 2025-08-14T21:48:57.5844964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\schema.cpython-39.pyc 2025-08-14T21:48:57.5848809Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\schema_check.cpython-39.pyc 2025-08-14T21:48:57.5862543Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\serialize.cpython-39.pyc 2025-08-14T21:48:57.5866849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\union.cpython-39.pyc 2025-08-14T21:48:57.5870597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\serde\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.5879346Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\converter.cpython-39.pyc 2025-08-14T21:48:57.5883217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\error.cpython-39.pyc 2025-08-14T21:48:57.5887119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\non_strict_utils.cpython-39.pyc 2025-08-14T21:48:57.5902287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\pass_base.cpython-39.pyc 2025-08-14T21:48:57.5904719Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\tools.cpython-39.pyc 2025-08-14T21:48:57.5908510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:57.5912409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\verifier.cpython-39.pyc 2025-08-14T21:48:57.5916145Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\wrappers.cpython-39.pyc 2025-08-14T21:48:57.5919829Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_export\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.5929408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\aot_autograd.py 2025-08-14T21:48:57.5933280Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\apis.py 2025-08-14T21:48:57.5937479Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\autograd_function.py 2025-08-14T21:48:57.5941384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\batch_norm_replacement.py 2025-08-14T21:48:57.5954787Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\benchmark_utils.py 2025-08-14T21:48:57.5958723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\compilers.py 2025-08-14T21:48:57.5962358Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\compile_utils.py 2025-08-14T21:48:57.5965944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\config.py 2025-08-14T21:48:57.5969746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\deprecated.py 2025-08-14T21:48:57.5973356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\eager_transforms.py 2025-08-14T21:48:57.5977276Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\functional_call.py 2025-08-14T21:48:57.5981231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\fx_minifier.py 2025-08-14T21:48:57.5984848Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\make_functional.py 2025-08-14T21:48:57.5988696Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\partitioners.py 2025-08-14T21:48:57.5992766Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\pyfunctorch.py 2025-08-14T21:48:57.5996416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\python_key.py 2025-08-14T21:48:57.6000155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\pytree_hacks.py 2025-08-14T21:48:57.6004170Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\top_operators_github_usage.py 2025-08-14T21:48:57.6008210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\utils.py 2025-08-14T21:48:57.6011859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\vmap.py 2025-08-14T21:48:57.6015634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__init__.py 2025-08-14T21:48:57.6034309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\ac_logging_utils.py 2025-08-14T21:48:57.6038070Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\graph_info_provider.py 2025-08-14T21:48:57.6041732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\knapsack.py 2025-08-14T21:48:57.6056580Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\knapsack_evaluator.py 2025-08-14T21:48:57.6059943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__init__.py 2025-08-14T21:48:57.6068411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\ac_logging_utils.cpython-39.pyc 2025-08-14T21:48:57.6072245Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\graph_info_provider.cpython-39.pyc 2025-08-14T21:48:57.6075964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\knapsack.cpython-39.pyc 2025-08-14T21:48:57.6089604Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\knapsack_evaluator.cpython-39.pyc 2025-08-14T21:48:57.6093535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_activation_checkpointing\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.6101859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\autograd_cache.py 2025-08-14T21:48:57.6105939Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\collect_metadata_analysis.py 2025-08-14T21:48:57.6109764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\descriptors.py 2025-08-14T21:48:57.6123945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\frontend_utils.py 2025-08-14T21:48:57.6127664Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\functional_utils.py 2025-08-14T21:48:57.6131257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\fx_utils.py 2025-08-14T21:48:57.6134769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\graph_capture.py 2025-08-14T21:48:57.6138681Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\graph_capture_wrappers.py 2025-08-14T21:48:57.6142512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\graph_compile.py 2025-08-14T21:48:57.6147130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\input_output_analysis.py 2025-08-14T21:48:57.6150924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\logging_utils.py 2025-08-14T21:48:57.6154519Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\runtime_wrappers.py 2025-08-14T21:48:57.6158778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\schemas.py 2025-08-14T21:48:57.6162600Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\subclass_parametrization.py 2025-08-14T21:48:57.6166289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\subclass_utils.py 2025-08-14T21:48:57.6170155Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\utils.py 2025-08-14T21:48:57.6174004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__init__.py 2025-08-14T21:48:57.6182187Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\autograd_cache.cpython-39.pyc 2025-08-14T21:48:57.6186168Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\collect_metadata_analysis.cpython-39.pyc 2025-08-14T21:48:57.6190047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\descriptors.cpython-39.pyc 2025-08-14T21:48:57.6203769Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\frontend_utils.cpython-39.pyc 2025-08-14T21:48:57.6207716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\functional_utils.cpython-39.pyc 2025-08-14T21:48:57.6211441Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\fx_utils.cpython-39.pyc 2025-08-14T21:48:57.6215182Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\graph_capture.cpython-39.pyc 2025-08-14T21:48:57.6219026Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\graph_capture_wrappers.cpython-39.pyc 2025-08-14T21:48:57.6222869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\graph_compile.cpython-39.pyc 2025-08-14T21:48:57.6226946Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\input_output_analysis.cpython-39.pyc 2025-08-14T21:48:57.6230645Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\logging_utils.cpython-39.pyc 2025-08-14T21:48:57.6234570Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\runtime_wrappers.cpython-39.pyc 2025-08-14T21:48:57.6238448Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\schemas.cpython-39.pyc 2025-08-14T21:48:57.6242397Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\subclass_parametrization.cpython-39.pyc 2025-08-14T21:48:57.6246220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\subclass_utils.cpython-39.pyc 2025-08-14T21:48:57.6250019Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:57.6263735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\_aot_autograd\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.6273211Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\aot_autograd.cpython-39.pyc 2025-08-14T21:48:57.6276882Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\apis.cpython-39.pyc 2025-08-14T21:48:57.6280705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\autograd_function.cpython-39.pyc 2025-08-14T21:48:57.6294581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\batch_norm_replacement.cpython-39.pyc 2025-08-14T21:48:57.6298349Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\benchmark_utils.cpython-39.pyc 2025-08-14T21:48:57.6302010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\compilers.cpython-39.pyc 2025-08-14T21:48:57.6305991Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\compile_utils.cpython-39.pyc 2025-08-14T21:48:57.6309781Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\config.cpython-39.pyc 2025-08-14T21:48:57.6313530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\deprecated.cpython-39.pyc 2025-08-14T21:48:57.6317253Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\eager_transforms.cpython-39.pyc 2025-08-14T21:48:57.6321184Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\functional_call.cpython-39.pyc 2025-08-14T21:48:57.6325305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\fx_minifier.cpython-39.pyc 2025-08-14T21:48:57.6329020Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\make_functional.cpython-39.pyc 2025-08-14T21:48:57.6332944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\partitioners.cpython-39.pyc 2025-08-14T21:48:57.6336983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\pyfunctorch.cpython-39.pyc 2025-08-14T21:48:57.6340729Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\python_key.cpython-39.pyc 2025-08-14T21:48:57.6354407Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\pytree_hacks.cpython-39.pyc 2025-08-14T21:48:57.6358335Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\top_operators_github_usage.cpython-39.pyc 2025-08-14T21:48:57.6438776Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:57.6439505Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\vmap.cpython-39.pyc 2025-08-14T21:48:57.6440189Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_functorch\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.6440861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\aoti_call_delegate.py 2025-08-14T21:48:57.6441498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\associative_scan.py 2025-08-14T21:48:57.6443399Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\auto_functionalize.py 2025-08-14T21:48:57.6445344Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\base_hop.py 2025-08-14T21:48:57.6445910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\cond.py 2025-08-14T21:48:57.6446477Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\effects.py 2025-08-14T21:48:57.6447108Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\executorch_call_delegate.py 2025-08-14T21:48:57.6447761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\flat_apply.py 2025-08-14T21:48:57.6448359Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\flex_attention.py 2025-08-14T21:48:57.6448955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\foreach_map.py 2025-08-14T21:48:57.6451144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\hints_wrap.py 2025-08-14T21:48:57.6451742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\invoke_subgraph.py 2025-08-14T21:48:57.6452336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\map.py 2025-08-14T21:48:57.6452884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\out_dtype.py 2025-08-14T21:48:57.6453484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\run_const_graph.py 2025-08-14T21:48:57.6457742Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\scan.py 2025-08-14T21:48:57.6461139Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\schema.py 2025-08-14T21:48:57.6465101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\strict_mode.py 2025-08-14T21:48:57.6469733Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\torchbind.py 2025-08-14T21:48:57.6472964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\triton_kernel_wrap.py 2025-08-14T21:48:57.6477072Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\utils.py 2025-08-14T21:48:57.6480845Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\while_loop.py 2025-08-14T21:48:57.6494701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\wrap.py 2025-08-14T21:48:57.6498356Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\_invoke_quant.py 2025-08-14T21:48:57.6502013Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__init__.py 2025-08-14T21:48:57.6511066Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\aoti_call_delegate.cpython-39.pyc 2025-08-14T21:48:57.6514551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\associative_scan.cpython-39.pyc 2025-08-14T21:48:57.6518377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\auto_functionalize.cpython-39.pyc 2025-08-14T21:48:57.6531942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\base_hop.cpython-39.pyc 2025-08-14T21:48:57.6535751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\cond.cpython-39.pyc 2025-08-14T21:48:57.6539590Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\effects.cpython-39.pyc 2025-08-14T21:48:57.6543803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\executorch_call_delegate.cpython-39.pyc 2025-08-14T21:48:57.6548177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\flat_apply.cpython-39.pyc 2025-08-14T21:48:57.6551735Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\flex_attention.cpython-39.pyc 2025-08-14T21:48:57.6555454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\foreach_map.cpython-39.pyc 2025-08-14T21:48:57.6559201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\hints_wrap.cpython-39.pyc 2025-08-14T21:48:57.6562843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\invoke_subgraph.cpython-39.pyc 2025-08-14T21:48:57.6566765Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\map.cpython-39.pyc 2025-08-14T21:48:57.6571380Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\out_dtype.cpython-39.pyc 2025-08-14T21:48:57.6575087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\run_const_graph.cpython-39.pyc 2025-08-14T21:48:57.6578859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\scan.cpython-39.pyc 2025-08-14T21:48:57.6582682Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\schema.cpython-39.pyc 2025-08-14T21:48:57.6598715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\strict_mode.cpython-39.pyc 2025-08-14T21:48:57.6600981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\torchbind.cpython-39.pyc 2025-08-14T21:48:57.6604646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\triton_kernel_wrap.cpython-39.pyc 2025-08-14T21:48:57.6609017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\utils.cpython-39.pyc 2025-08-14T21:48:57.6612938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\while_loop.cpython-39.pyc 2025-08-14T21:48:57.6617152Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\wrap.cpython-39.pyc 2025-08-14T21:48:57.6621073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\_invoke_quant.cpython-39.pyc 2025-08-14T21:48:57.6624728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_higher_order_ops\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:57.6644566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analyze_preserves_zero_mask.py 2025-08-14T21:48:57.6648217Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\aoti_eager.py 2025-08-14T21:48:57.6652236Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\async_compile.py 2025-08-14T21:48:57.6665588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autotune_process.py 2025-08-14T21:48:57.6670137Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\await_utils.py 2025-08-14T21:48:57.6673778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\bounds.py 2025-08-14T21:48:57.6677368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\choices.py 2025-08-14T21:48:57.6680908Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codecache.py 2025-08-14T21:48:57.6685980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\comms.py 2025-08-14T21:48:57.6697565Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\comm_analysis.py 2025-08-14T21:48:57.6699361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\comm_lowering.py 2025-08-14T21:48:57.6700589Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compiler_bisector.py 2025-08-14T21:48:57.6701465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx.py 2025-08-14T21:48:57.6705353Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx_async.py 2025-08-14T21:48:57.6709171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx_ext.py 2025-08-14T21:48:57.6713410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_fx_subproc.py 2025-08-14T21:48:57.6717200Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\config.py 2025-08-14T21:48:57.6721123Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\constant_folding.py 2025-08-14T21:48:57.6724886Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cpp_builder.py 2025-08-14T21:48:57.6729032Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cpu_vec_isa.py 2025-08-14T21:48:57.6732782Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cudagraph_trees.py 2025-08-14T21:48:57.6747226Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\cudagraph_utils.py 2025-08-14T21:48:57.6750971Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\custom_graph_pass.py 2025-08-14T21:48:57.6754687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\debug.py 2025-08-14T21:48:57.6758623Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\decomposition.py 2025-08-14T21:48:57.6762323Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\dependencies.py 2025-08-14T21:48:57.6766062Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\dtype_propagation.py 2025-08-14T21:48:57.6770135Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\exc.py 2025-08-14T21:48:57.6774025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\extern_node_serializer.py 2025-08-14T21:48:57.6777952Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\freezing.py 2025-08-14T21:48:57.6781597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\freezing_utils.py 2025-08-14T21:48:57.6785450Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fuzzer.py 2025-08-14T21:48:57.6799382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_utils.py 2025-08-14T21:48:57.6803324Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\graph.py 2025-08-14T21:48:57.6807385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\hooks.py 2025-08-14T21:48:57.6811034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\index_propagation.py 2025-08-14T21:48:57.6814861Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\inductor_prims.py 2025-08-14T21:48:57.6818695Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\ir.py 2025-08-14T21:48:57.6823945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\jagged_lowerings.py 2025-08-14T21:48:57.6828201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel_inputs.py 2025-08-14T21:48:57.6831854Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\loop_body.py 2025-08-14T21:48:57.6835606Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\lowering.py 2025-08-14T21:48:57.6840164Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\memory.py 2025-08-14T21:48:57.6843870Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\metrics.py 2025-08-14T21:48:57.6847541Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\mkldnn_ir.py 2025-08-14T21:48:57.6861064Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\mkldnn_lowerings.py 2025-08-14T21:48:57.6865141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\mock_cache.py 2025-08-14T21:48:57.6868905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\ops_handler.py 2025-08-14T21:48:57.6872844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\optimize_indexing.py 2025-08-14T21:48:57.6876875Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\output_code.py 2025-08-14T21:48:57.6880701Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\pattern_matcher.py 2025-08-14T21:48:57.6884815Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\quantized_lowerings.py 2025-08-14T21:48:57.6888449Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\remote_cache.py 2025-08-14T21:48:57.6892225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\remote_gemm_autotune_cache.py 2025-08-14T21:48:57.6917944Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\scheduler.py 2025-08-14T21:48:57.6921144Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\script.ld 2025-08-14T21:48:57.6925294Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\select_algorithm.py 2025-08-14T21:48:57.6929612Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\sizevars.py 2025-08-14T21:48:57.6935429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\standalone_compile.py 2025-08-14T21:48:57.6937618Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\subgraph_lowering.py 2025-08-14T21:48:57.6941635Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_heuristics.py 2025-08-14T21:48:57.6947319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\template_registry.py 2025-08-14T21:48:57.6952412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\test_case.py 2025-08-14T21:48:57.6957891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\test_operators.py 2025-08-14T21:48:58.2083585Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\tiling_utils.py 2025-08-14T21:48:58.2087181Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\triton_bundler.py 2025-08-14T21:48:58.2091174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\utils.py 2025-08-14T21:48:58.2095571Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\virtualized.py 2025-08-14T21:48:58.5799039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\wrapper_benchmark.py 2025-08-14T21:48:58.5802096Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__autotune_main__.py 2025-08-14T21:48:58.5806803Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__init__.py 2025-08-14T21:48:58.5817055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\device_info.py 2025-08-14T21:48:58.5819278Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\profile_analysis.py 2025-08-14T21:48:58.5823795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\__init__.py 2025-08-14T21:48:58.5962955Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\__pycache__\device_info.cpython-39.pyc 2025-08-14T21:48:58.5966817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\__pycache__\profile_analysis.cpython-39.pyc 2025-08-14T21:48:58.5970914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\analysis\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:58.6113853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\autoheuristic.py 2025-08-14T21:48:58.6117528Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\autoheuristic_utils.py 2025-08-14T21:48:58.6121252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\learnedheuristic_interface.py 2025-08-14T21:48:58.6269764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\learned_heuristic_controller.py 2025-08-14T21:48:58.6274665Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__init__.py 2025-08-14T21:48:58.6281954Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MixedMMA100.py 2025-08-14T21:48:58.6286325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MixedMMH100.py 2025-08-14T21:48:58.6291055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MMRankingA100.py 2025-08-14T21:48:58.6434406Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_MMRankingH100.py 2025-08-14T21:48:58.6438687Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\_PadMMA100.py 2025-08-14T21:48:58.6442174Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__init__.py 2025-08-14T21:48:58.6450395Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MixedMMA100.cpython-39.pyc 2025-08-14T21:48:58.6454428Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MixedMMH100.cpython-39.pyc 2025-08-14T21:48:58.6458486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MMRankingA100.cpython-39.pyc 2025-08-14T21:48:58.6569296Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_MMRankingH100.cpython-39.pyc 2025-08-14T21:48:58.6573126Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\_PadMMA100.cpython-39.pyc 2025-08-14T21:48:58.6577795Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\artifacts\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:58.6587802Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\autoheuristic.cpython-39.pyc 2025-08-14T21:48:58.6592015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\autoheuristic_utils.cpython-39.pyc 2025-08-14T21:48:58.6596962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\learnedheuristic_interface.cpython-39.pyc 2025-08-14T21:48:58.6751305Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\learned_heuristic_controller.cpython-39.pyc 2025-08-14T21:48:58.6755717Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\autoheuristic\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:58.6765147Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\aoti_hipify_utils.py 2025-08-14T21:48:58.6769586Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\block_analysis.py 2025-08-14T21:48:58.6774794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\common.py 2025-08-14T21:48:58.6781749Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp.py 2025-08-14T21:48:58.6787871Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_bmm_template.py 2025-08-14T21:48:58.6901216Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_flex_attention_template.py 2025-08-14T21:48:58.6905835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_gemm_template.py 2025-08-14T21:48:58.6911077Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_grouped_gemm_template.py 2025-08-14T21:48:58.6916506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_micro_gemm.py 2025-08-14T21:48:58.6922024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_template.py 2025-08-14T21:48:58.6926981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_template_kernel.py 2025-08-14T21:48:58.6931304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_utils.py 2025-08-14T21:48:58.6935415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_cpu.py 2025-08-14T21:48:58.6940430Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_cpu_array_ref.py 2025-08-14T21:48:58.6944842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_gpu.py 2025-08-14T21:48:58.6949049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpp_wrapper_mps.py 2025-08-14T21:48:58.6953927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cpu_device_op_overrides.py 2025-08-14T21:48:58.6958320Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda_combined_scheduling.py 2025-08-14T21:48:58.6962220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\debug_utils.py 2025-08-14T21:48:59.0709981Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\halide.py 2025-08-14T21:48:59.0714920Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\memory_planning.py 2025-08-14T21:48:59.0720080Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mps.py 2025-08-14T21:48:59.0725703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mps_device_op_overrides.py 2025-08-14T21:48:59.0730034Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\multi_kernel.py 2025-08-14T21:48:59.0734529Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\python_wrapper_mtia.py 2025-08-14T21:48:59.0738419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\simd.py 2025-08-14T21:48:59.0743962Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\simd_kernel_features.py 2025-08-14T21:48:59.0747410Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\subgraph.py 2025-08-14T21:48:59.0752286Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton.py 2025-08-14T21:48:59.0757530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton_combo_kernel.py 2025-08-14T21:48:59.0763003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton_split_scan.py 2025-08-14T21:48:59.6211788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\triton_utils.py 2025-08-14T21:48:59.6215100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\wrapper.py 2025-08-14T21:48:59.6219884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\wrapper_fxir.py 2025-08-14T21:48:59.6223560Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__init__.py 2025-08-14T21:48:59.6230544Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\aoti_runtime\interface.cpp 2025-08-14T21:48:59.6241692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_cpp_scheduling.py 2025-08-14T21:48:59.6244257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_env.py 2025-08-14T21:48:59.6248581Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_kernel.py 2025-08-14T21:48:59.6254041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cuda_template.py 2025-08-14T21:48:59.6731363Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_cache.py 2025-08-14T21:48:59.6733715Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_presets.py 2025-08-14T21:48:59.6737943Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_python_evt.py 2025-08-14T21:48:59.6741690Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_utils.py 2025-08-14T21:48:59.6745930Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\device_op_overrides.py 2025-08-14T21:48:59.6749807Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\gemm_template.py 2025-08-14T21:48:59.6755601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\serialization.py 2025-08-14T21:48:59.6758334Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__init__.py 2025-08-14T21:48:59.6768041Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\evt_extensions.py 2025-08-14T21:48:59.6770608Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\gemm_operation_extensions.py 2025-08-14T21:48:59.6774863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__init__.py 2025-08-14T21:48:59.7073191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\__init__.py 2025-08-14T21:48:59.7080510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\cuda.py 2025-08-14T21:48:59.7084985Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\cudart.py 2025-08-14T21:48:59.7090018Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__init__.py 2025-08-14T21:48:59.7097849Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__pycache__\cuda.cpython-39.pyc 2025-08-14T21:48:59.7102143Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__pycache__\cudart.cpython-39.pyc 2025-08-14T21:48:59.7107497Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\cuda\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:59.7232511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\pydot\__init__.py 2025-08-14T21:48:59.7239464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\pydot\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:59.7247863Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\special.py 2025-08-14T21:48:59.7251913Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\__init__.py 2025-08-14T21:48:59.7259872Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\__pycache__\special.cpython-39.pyc 2025-08-14T21:48:59.7264309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\scipy\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:59.9277416Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\cutlass_mock_imports\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:59.9286233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__pycache__\evt_extensions.cpython-39.pyc 2025-08-14T21:48:59.9290194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__pycache__\gemm_operation_extensions.cpython-39.pyc 2025-08-14T21:48:59.9293847Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\cutlass_lib_extensions\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:48:59.9308718Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_cpp_scheduling.cpython-39.pyc 2025-08-14T21:48:59.9312260Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_env.cpython-39.pyc 2025-08-14T21:48:59.9316270Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_kernel.cpython-39.pyc 2025-08-14T21:49:00.1845804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cuda_template.cpython-39.pyc 2025-08-14T21:49:00.1849633Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_cache.cpython-39.pyc 2025-08-14T21:49:00.1855003Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_presets.cpython-39.pyc 2025-08-14T21:49:00.1858731Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_python_evt.cpython-39.pyc 2025-08-14T21:49:00.1863177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\cutlass_utils.cpython-39.pyc 2025-08-14T21:49:00.1867839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\device_op_overrides.cpython-39.pyc 2025-08-14T21:49:00.1871706Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\gemm_template.cpython-39.pyc 2025-08-14T21:49:00.1876004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\serialization.cpython-39.pyc 2025-08-14T21:49:00.1880420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\cuda\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.1889371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mtia\device_op_overrides.py 2025-08-14T21:49:00.1893289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mtia\__init__.py 2025-08-14T21:49:00.1900409Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mtia\__pycache__\device_op_overrides.cpython-39.pyc 2025-08-14T21:49:00.1905290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\mtia\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.1913039Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_conv_template.py 2025-08-14T21:49:00.1918177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_template.py 2025-08-14T21:49:00.1920708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_tile_template.py 2025-08-14T21:49:00.1924740Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_tile_universal_gemm_template.py 2025-08-14T21:49:00.1934512Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\ck_universal_gemm_template.py 2025-08-14T21:49:00.1938914Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\compile_command.py 2025-08-14T21:49:00.1943469Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_benchmark_request.py 2025-08-14T21:49:00.1946707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_cpp_scheduling.py 2025-08-14T21:49:00.1951031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_kernel.py 2025-08-14T21:49:00.1955937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_template.py 2025-08-14T21:49:00.1958866Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_template_buffer.py 2025-08-14T21:49:00.1962851Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\rocm_utils.py 2025-08-14T21:49:00.1969910Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__init__.py 2025-08-14T21:49:00.1978329Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_conv_template.cpython-39.pyc 2025-08-14T21:49:00.1979788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_template.cpython-39.pyc 2025-08-14T21:49:00.1995301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_tile_template.cpython-39.pyc 2025-08-14T21:49:00.2007844Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_tile_universal_gemm_template.cpython-39.pyc 2025-08-14T21:49:00.2008820Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\ck_universal_gemm_template.cpython-39.pyc 2025-08-14T21:49:00.2009716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\compile_command.cpython-39.pyc 2025-08-14T21:49:00.2010615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_benchmark_request.cpython-39.pyc 2025-08-14T21:49:00.2011518Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_cpp_scheduling.cpython-39.pyc 2025-08-14T21:49:00.2015426Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_kernel.cpython-39.pyc 2025-08-14T21:49:00.2021367Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_template.cpython-39.pyc 2025-08-14T21:49:00.2023354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_template_buffer.cpython-39.pyc 2025-08-14T21:49:00.2028454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\rocm_utils.cpython-39.pyc 2025-08-14T21:49:00.2031347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\rocm\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.2040903Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\device_op_overrides.py 2025-08-14T21:49:00.2044440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\__init__.py 2025-08-14T21:49:00.2050652Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\__pycache__\device_op_overrides.cpython-39.pyc 2025-08-14T21:49:00.2054385Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\xpu\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.2063486Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\aoti_hipify_utils.cpython-39.pyc 2025-08-14T21:49:00.2068457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\block_analysis.cpython-39.pyc 2025-08-14T21:49:00.2072150Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\common.cpython-39.pyc 2025-08-14T21:49:00.2081178Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp.cpython-39.pyc 2025-08-14T21:49:00.2087857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_bmm_template.cpython-39.pyc 2025-08-14T21:49:00.2090578Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_flex_attention_template.cpython-39.pyc 2025-08-14T21:49:00.2094517Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_gemm_template.cpython-39.pyc 2025-08-14T21:49:00.2098739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_grouped_gemm_template.cpython-39.pyc 2025-08-14T21:49:00.2102799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_micro_gemm.cpython-39.pyc 2025-08-14T21:49:00.2106857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_template.cpython-39.pyc 2025-08-14T21:49:00.2110798Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_template_kernel.cpython-39.pyc 2025-08-14T21:49:00.2114568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_utils.cpython-39.pyc 2025-08-14T21:49:00.2118461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_cpu.cpython-39.pyc 2025-08-14T21:49:00.2124149Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_cpu_array_ref.cpython-39.pyc 2025-08-14T21:49:00.2126968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_gpu.cpython-39.pyc 2025-08-14T21:49:00.2130960Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpp_wrapper_mps.cpython-39.pyc 2025-08-14T21:49:00.2140484Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cpu_device_op_overrides.cpython-39.pyc 2025-08-14T21:49:00.2143440Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\cuda_combined_scheduling.cpython-39.pyc 2025-08-14T21:49:00.2147509Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\debug_utils.cpython-39.pyc 2025-08-14T21:49:00.2151254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\halide.cpython-39.pyc 2025-08-14T21:49:00.2156046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\memory_planning.cpython-39.pyc 2025-08-14T21:49:00.2160415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\mps.cpython-39.pyc 2025-08-14T21:49:00.2165880Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\mps_device_op_overrides.cpython-39.pyc 2025-08-14T21:49:00.2168438Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\multi_kernel.cpython-39.pyc 2025-08-14T21:49:00.2178423Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\python_wrapper_mtia.cpython-39.pyc 2025-08-14T21:49:00.2182069Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\simd.cpython-39.pyc 2025-08-14T21:49:00.2186775Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\simd_kernel_features.cpython-39.pyc 2025-08-14T21:49:00.2192125Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\subgraph.cpython-39.pyc 2025-08-14T21:49:00.2197258Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton.cpython-39.pyc 2025-08-14T21:49:00.2200755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton_combo_kernel.cpython-39.pyc 2025-08-14T21:49:00.2205087Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton_split_scan.cpython-39.pyc 2025-08-14T21:49:00.2209924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\triton_utils.cpython-39.pyc 2025-08-14T21:49:00.2218415Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\wrapper.cpython-39.pyc 2025-08-14T21:49:00.2223403Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\wrapper_fxir.cpython-39.pyc 2025-08-14T21:49:00.2228790Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\codegen\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.2238037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\subproc_pool.py 2025-08-14T21:49:00.2242285Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\tracked_process_pool.py 2025-08-14T21:49:00.2247392Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\utils.py 2025-08-14T21:49:00.2250466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__init__.py 2025-08-14T21:49:00.2283393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__main__.py 2025-08-14T21:49:00.2292186Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\subproc_pool.cpython-39.pyc 2025-08-14T21:49:00.2295613Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\tracked_process_pool.cpython-39.pyc 2025-08-14T21:49:00.2299550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\utils.cpython-39.pyc 2025-08-14T21:49:00.2402219Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.2405942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\compile_worker\__pycache__\__main__.cpython-39.pyc 2025-08-14T21:49:00.2415676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\b2b_gemm.py 2025-08-14T21:49:00.2419553Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\binary_folding.py 2025-08-14T21:49:00.2423336Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\bucketing.py 2025-08-14T21:49:00.2427171Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\ddp_fusion.py 2025-08-14T21:49:00.2435628Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\decompose_mem_bound_mm.py 2025-08-14T21:49:00.2440685Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\dedupe_symint_uses.py 2025-08-14T21:49:00.2444568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\efficient_conv_bn_eval.py 2025-08-14T21:49:00.2448535Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\freezing_patterns.py 2025-08-14T21:49:00.2452460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\fsdp.py 2025-08-14T21:49:00.2456499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\fuse_attention.py 2025-08-14T21:49:00.2460568Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\group_batch_fusion.py 2025-08-14T21:49:00.2464638Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\joint_graph.py 2025-08-14T21:49:00.2468626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\micro_pipeline_tp.py 2025-08-14T21:49:00.2472601Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\misc_patterns.py 2025-08-14T21:49:00.2476319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\mkldnn_fusion.py 2025-08-14T21:49:00.2480451Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\numeric_utils.py 2025-08-14T21:49:00.2484493Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\pad_mm.py 2025-08-14T21:49:00.2488256Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\post_grad.py 2025-08-14T21:49:00.2492365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\pre_grad.py 2025-08-14T21:49:00.2496194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\quantization.py 2025-08-14T21:49:00.2500663Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\reinplace.py 2025-08-14T21:49:00.2509705Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\replace_random.py 2025-08-14T21:49:00.2513791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\split_cat.py 2025-08-14T21:49:00.2517691Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__init__.py 2025-08-14T21:49:00.2543173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\addmm_gelu_pattern.py 2025-08-14T21:49:00.2549482Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\addmm_gelu_pattern_2.py 2025-08-14T21:49:00.2551813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\addmm_pattern.py 2025-08-14T21:49:00.2559896Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\addmm_relu_pattern.py 2025-08-14T21:49:00.2564004Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\addmm_relu_pattern_2.py 2025-08-14T21:49:00.2567657Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\bmm_pattern.py 2025-08-14T21:49:00.2571436Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\mm_pattern.py 2025-08-14T21:49:00.2575254Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_1.py 2025-08-14T21:49:00.2579281Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_10.py 2025-08-14T21:49:00.2583100Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_11.py 2025-08-14T21:49:00.2587099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_12.py 2025-08-14T21:49:00.2591262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_13.py 2025-08-14T21:49:00.2595153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_14.py 2025-08-14T21:49:00.2598933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_15.py 2025-08-14T21:49:00.2602748Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_16.py 2025-08-14T21:49:00.2607015Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_17.py 2025-08-14T21:49:00.2611283Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_18.py 2025-08-14T21:49:00.2615212Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_19.py 2025-08-14T21:49:00.2623420Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_2.py 2025-08-14T21:49:00.2627760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_20.py 2025-08-14T21:49:00.2632056Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_21.py 2025-08-14T21:49:00.2635979Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_22.py 2025-08-14T21:49:00.2639891Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_23.py 2025-08-14T21:49:00.2644047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_24.py 2025-08-14T21:49:00.2648452Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_3.py 2025-08-14T21:49:00.2652309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_4.py 2025-08-14T21:49:00.2656193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_5.py 2025-08-14T21:49:00.2660136Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_6.py 2025-08-14T21:49:00.2664210Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_7.py 2025-08-14T21:49:00.2672498Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_8.py 2025-08-14T21:49:00.2676520Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_9.py 2025-08-14T21:49:00.2680588Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__init__.py 2025-08-14T21:49:00.2692716Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\addmm_gelu_pattern.cpython-39.pyc 2025-08-14T21:49:00.2696924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\addmm_gelu_pattern_2.cpython-39.pyc 2025-08-14T21:49:00.2701193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\addmm_pattern.cpython-39.pyc 2025-08-14T21:49:00.2709511Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\addmm_relu_pattern.cpython-39.pyc 2025-08-14T21:49:00.2715289Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\addmm_relu_pattern_2.cpython-39.pyc 2025-08-14T21:49:00.2717732Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\bmm_pattern.cpython-39.pyc 2025-08-14T21:49:00.2722431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\mm_pattern.cpython-39.pyc 2025-08-14T21:49:00.2727842Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_1.cpython-39.pyc 2025-08-14T21:49:00.2730467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_10.cpython-39.pyc 2025-08-14T21:49:00.2734713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_11.cpython-39.pyc 2025-08-14T21:49:00.2738271Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_12.cpython-39.pyc 2025-08-14T21:49:00.2742319Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_13.cpython-39.pyc 2025-08-14T21:49:00.2746435Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_14.cpython-39.pyc 2025-08-14T21:49:00.2750889Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_15.cpython-39.pyc 2025-08-14T21:49:00.2755252Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_16.cpython-39.pyc 2025-08-14T21:49:00.2759634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_17.cpython-39.pyc 2025-08-14T21:49:00.2768365Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_18.cpython-39.pyc 2025-08-14T21:49:00.2773457Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_19.cpython-39.pyc 2025-08-14T21:49:00.2777293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_2.cpython-39.pyc 2025-08-14T21:49:00.2781703Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_20.cpython-39.pyc 2025-08-14T21:49:00.2785734Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_21.cpython-39.pyc 2025-08-14T21:49:00.2791709Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_22.cpython-39.pyc 2025-08-14T21:49:00.2794282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_23.cpython-39.pyc 2025-08-14T21:49:00.2798421Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_24.cpython-39.pyc 2025-08-14T21:49:00.2804232Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_3.cpython-39.pyc 2025-08-14T21:49:00.2807465Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_4.cpython-39.pyc 2025-08-14T21:49:00.2812429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_5.cpython-39.pyc 2025-08-14T21:49:00.2817297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_6.cpython-39.pyc 2025-08-14T21:49:00.2822267Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_7.cpython-39.pyc 2025-08-14T21:49:00.2830231Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_8.cpython-39.pyc 2025-08-14T21:49:00.2835808Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\_sfdp_pattern_9.cpython-39.pyc 2025-08-14T21:49:00.2838713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\serialized_patterns\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.2852060Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\b2b_gemm.cpython-39.pyc 2025-08-14T21:49:00.2855980Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\binary_folding.cpython-39.pyc 2025-08-14T21:49:00.2860304Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\bucketing.cpython-39.pyc 2025-08-14T21:49:00.2868352Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\ddp_fusion.cpython-39.pyc 2025-08-14T21:49:00.2873817Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\decompose_mem_bound_mm.cpython-39.pyc 2025-08-14T21:49:00.2876577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\dedupe_symint_uses.cpython-39.pyc 2025-08-14T21:49:00.2881475Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\efficient_conv_bn_eval.cpython-39.pyc 2025-08-14T21:49:00.2885308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\freezing_patterns.cpython-39.pyc 2025-08-14T21:49:00.2898036Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\fsdp.cpython-39.pyc 2025-08-14T21:49:00.2904899Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\fuse_attention.cpython-39.pyc 2025-08-14T21:49:00.2905843Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\group_batch_fusion.cpython-39.pyc 2025-08-14T21:49:00.2906793Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\joint_graph.cpython-39.pyc 2025-08-14T21:49:00.2907611Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\micro_pipeline_tp.cpython-39.pyc 2025-08-14T21:49:00.2917821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\misc_patterns.cpython-39.pyc 2025-08-14T21:49:00.2918644Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\mkldnn_fusion.cpython-39.pyc 2025-08-14T21:49:00.2920055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\numeric_utils.cpython-39.pyc 2025-08-14T21:49:00.2928658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\pad_mm.cpython-39.pyc 2025-08-14T21:49:00.2933010Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\post_grad.cpython-39.pyc 2025-08-14T21:49:00.2937530Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\pre_grad.cpython-39.pyc 2025-08-14T21:49:00.2941806Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\quantization.cpython-39.pyc 2025-08-14T21:49:00.2947037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\reinplace.cpython-39.pyc 2025-08-14T21:49:00.2950105Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\replace_random.cpython-39.pyc 2025-08-14T21:49:00.2954177Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\split_cat.cpython-39.pyc 2025-08-14T21:49:00.2958161Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\fx_passes\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.2967937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\bmm.py 2025-08-14T21:49:00.2971572Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\conv.py 2025-08-14T21:49:00.2975453Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm.py 2025-08-14T21:49:00.2979513Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm_common.py 2025-08-14T21:49:00.2983402Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm_grouped.py 2025-08-14T21:49:00.2991287Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\mm_plus_mm.py 2025-08-14T21:49:00.2994813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__init__.py 2025-08-14T21:49:00.3002527Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\common.py 2025-08-14T21:49:00.3006464Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\flex_attention.py 2025-08-14T21:49:00.3010382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\flex_cpu.py 2025-08-14T21:49:00.3014012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\flex_decoding.py 2025-08-14T21:49:00.3018839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__init__.py 2025-08-14T21:49:00.3031266Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\common.py.jinja 2025-08-14T21:49:00.3035626Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\flex_attention.py.jinja 2025-08-14T21:49:00.3039071Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\flex_backwards.py.jinja 2025-08-14T21:49:00.3048195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\flex_decode.py.jinja 2025-08-14T21:49:00.3052117Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\templates\utilities.py.jinja 2025-08-14T21:49:00.3062298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\common.cpython-39.pyc 2025-08-14T21:49:00.3064564Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\flex_attention.cpython-39.pyc 2025-08-14T21:49:00.3068362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\flex_cpu.cpython-39.pyc 2025-08-14T21:49:00.3077466Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\flex_decoding.cpython-39.pyc 2025-08-14T21:49:00.3081318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\flex\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.3089746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\bmm.cpython-39.pyc 2025-08-14T21:49:00.3093605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\conv.cpython-39.pyc 2025-08-14T21:49:00.3098046Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm.cpython-39.pyc 2025-08-14T21:49:00.3106442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm_common.cpython-39.pyc 2025-08-14T21:49:00.3110268Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm_grouped.cpython-39.pyc 2025-08-14T21:49:00.3114031Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\mm_plus_mm.cpython-39.pyc 2025-08-14T21:49:00.3117667Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\kernel\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.3126417Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\build_package.py 2025-08-14T21:49:00.3130288Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\package.py 2025-08-14T21:49:00.3134213Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__init__.py 2025-08-14T21:49:00.3141837Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__pycache__\build_package.cpython-39.pyc 2025-08-14T21:49:00.3145745Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__pycache__\package.cpython-39.pyc 2025-08-14T21:49:00.3149485Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\package\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.3161810Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\autotune_cache.py 2025-08-14T21:49:00.3165647Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\benchmarking.py 2025-08-14T21:49:00.3171050Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\cache_dir_utils.py 2025-08-14T21:49:00.3173545Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\compile_tasks.py 2025-08-14T21:49:00.3181659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\coordinate_descent_tuner.py 2025-08-14T21:49:00.3185537Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\debug_utils.py 2025-08-14T21:49:00.3190151Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\halide_helpers.py 2025-08-14T21:49:00.3192999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\hints.py 2025-08-14T21:49:00.3197024Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\runtime_utils.py 2025-08-14T21:49:00.3200273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\static_cuda_launcher.py 2025-08-14T21:49:00.3204318Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\triton_compat.py 2025-08-14T21:49:00.3209284Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\triton_helpers.py 2025-08-14T21:49:00.3211761Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\triton_heuristics.py 2025-08-14T21:49:00.3216173Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__init__.py 2025-08-14T21:49:00.3223412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\autotune_cache.cpython-39.pyc 2025-08-14T21:49:00.3228316Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\benchmarking.cpython-39.pyc 2025-08-14T21:49:00.3231301Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\cache_dir_utils.cpython-39.pyc 2025-08-14T21:49:00.3240771Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\compile_tasks.cpython-39.pyc 2025-08-14T21:49:00.3243429Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\coordinate_descent_tuner.cpython-39.pyc 2025-08-14T21:49:00.3247331Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\debug_utils.cpython-39.pyc 2025-08-14T21:49:00.3251091Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\halide_helpers.cpython-39.pyc 2025-08-14T21:49:00.3255225Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\hints.cpython-39.pyc 2025-08-14T21:49:00.3259678Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\runtime_utils.cpython-39.pyc 2025-08-14T21:49:00.3263646Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\static_cuda_launcher.cpython-39.pyc 2025-08-14T21:49:00.3267828Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\triton_compat.cpython-39.pyc 2025-08-14T21:49:00.3272273Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\triton_helpers.cpython-39.pyc 2025-08-14T21:49:00.3275669Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\triton_heuristics.cpython-39.pyc 2025-08-14T21:49:00.3280204Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\runtime\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.3290976Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\analyze_preserves_zero_mask.cpython-39.pyc 2025-08-14T21:49:00.3294055Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\aoti_eager.cpython-39.pyc 2025-08-14T21:49:00.3298101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\async_compile.cpython-39.pyc 2025-08-14T21:49:00.3306659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\autotune_process.cpython-39.pyc 2025-08-14T21:49:00.3310707Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\await_utils.cpython-39.pyc 2025-08-14T21:49:00.3316103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\bounds.cpython-39.pyc 2025-08-14T21:49:00.3318408Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\choices.cpython-39.pyc 2025-08-14T21:49:00.3322594Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\codecache.cpython-39.pyc 2025-08-14T21:49:00.3328584Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\comms.cpython-39.pyc 2025-08-14T21:49:00.3332341Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\comm_analysis.cpython-39.pyc 2025-08-14T21:49:00.3336412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\comm_lowering.cpython-39.pyc 2025-08-14T21:49:00.3340279Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compiler_bisector.cpython-39.pyc 2025-08-14T21:49:00.3344099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx.cpython-39.pyc 2025-08-14T21:49:00.3348728Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx_async.cpython-39.pyc 2025-08-14T21:49:00.3354193Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx_ext.cpython-39.pyc 2025-08-14T21:49:00.3356778Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\compile_fx_subproc.cpython-39.pyc 2025-08-14T21:49:00.3366794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\config.cpython-39.pyc 2025-08-14T21:49:00.3370551Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\constant_folding.cpython-39.pyc 2025-08-14T21:49:00.3374649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cpp_builder.cpython-39.pyc 2025-08-14T21:49:00.3379269Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cpu_vec_isa.cpython-39.pyc 2025-08-14T21:49:00.3382615Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cudagraph_trees.cpython-39.pyc 2025-08-14T21:49:00.3387119Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\cudagraph_utils.cpython-39.pyc 2025-08-14T21:49:00.3391799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\custom_graph_pass.cpython-39.pyc 2025-08-14T21:49:00.3395027Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\debug.cpython-39.pyc 2025-08-14T21:49:00.3404366Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\decomposition.cpython-39.pyc 2025-08-14T21:49:00.3407758Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\dependencies.cpython-39.pyc 2025-08-14T21:49:00.3412086Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\dtype_propagation.cpython-39.pyc 2025-08-14T21:49:00.3416821Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\exc.cpython-39.pyc 2025-08-14T21:49:00.3420005Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\extern_node_serializer.cpython-39.pyc 2025-08-14T21:49:00.3424263Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\freezing.cpython-39.pyc 2025-08-14T21:49:00.3429383Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\freezing_utils.cpython-39.pyc 2025-08-14T21:49:00.3432536Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\fuzzer.cpython-39.pyc 2025-08-14T21:49:00.3436816Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\fx_utils.cpython-39.pyc 2025-08-14T21:49:00.3445215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\graph.cpython-39.pyc 2025-08-14T21:49:00.3449418Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\hooks.cpython-39.pyc 2025-08-14T21:49:00.3454282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\index_propagation.cpython-39.pyc 2025-08-14T21:49:00.3457539Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\inductor_prims.cpython-39.pyc 2025-08-14T21:49:00.3461550Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\ir.cpython-39.pyc 2025-08-14T21:49:00.3468382Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\jagged_lowerings.cpython-39.pyc 2025-08-14T21:49:00.3471723Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\kernel_inputs.cpython-39.pyc 2025-08-14T21:49:00.3475668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\loop_body.cpython-39.pyc 2025-08-14T21:49:00.3489824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\lowering.cpython-39.pyc 2025-08-14T21:49:00.3493297Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\memory.cpython-39.pyc 2025-08-14T21:49:00.3497401Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\metrics.cpython-39.pyc 2025-08-14T21:49:00.3503532Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\mkldnn_ir.cpython-39.pyc 2025-08-14T21:49:00.3505526Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\mkldnn_lowerings.cpython-39.pyc 2025-08-14T21:49:00.3510968Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\mock_cache.cpython-39.pyc 2025-08-14T21:49:00.3513964Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\ops_handler.cpython-39.pyc 2025-08-14T21:49:00.3517918Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\optimize_indexing.cpython-39.pyc 2025-08-14T21:49:00.3526566Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\output_code.cpython-39.pyc 2025-08-14T21:49:00.3530533Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\pattern_matcher.cpython-39.pyc 2025-08-14T21:49:00.3534975Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\quantized_lowerings.cpython-39.pyc 2025-08-14T21:49:00.3538938Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\remote_cache.cpython-39.pyc 2025-08-14T21:49:00.3542878Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\remote_gemm_autotune_cache.cpython-39.pyc 2025-08-14T21:49:00.3546835Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\scheduler.cpython-39.pyc 2025-08-14T21:49:00.3551427Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\select_algorithm.cpython-39.pyc 2025-08-14T21:49:00.3555819Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\sizevars.cpython-39.pyc 2025-08-14T21:49:00.3566804Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\standalone_compile.cpython-39.pyc 2025-08-14T21:49:00.3568221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\subgraph_lowering.cpython-39.pyc 2025-08-14T21:49:00.3572007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\template_heuristics.cpython-39.pyc 2025-08-14T21:49:00.3575940Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\template_registry.cpython-39.pyc 2025-08-14T21:49:00.3579774Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\test_case.cpython-39.pyc 2025-08-14T21:49:00.3583639Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\test_operators.cpython-39.pyc 2025-08-14T21:49:00.3587658Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\tiling_utils.cpython-39.pyc 2025-08-14T21:49:00.3591983Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\triton_bundler.cpython-39.pyc 2025-08-14T21:49:00.3600557Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\utils.cpython-39.pyc 2025-08-14T21:49:00.3604760Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\virtualized.cpython-39.pyc 2025-08-14T21:49:00.3608668Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\wrapper_benchmark.cpython-39.pyc 2025-08-14T21:49:00.3612404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\__autotune_main__.cpython-39.pyc 2025-08-14T21:49:00.3616250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_inductor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.3627945Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\closure.py 2025-08-14T21:49:00.3631347Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\computation.py 2025-08-14T21:49:00.3635597Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\config.py 2025-08-14T21:49:00.3640038Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\debug.py 2025-08-14T21:49:00.3642999Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\device_context.py 2025-08-14T21:49:00.3651099Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\extract_compiled_graph.py 2025-08-14T21:49:00.3654700Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\ir_cache.py 2025-08-14T21:49:00.3659047Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\metrics.py 2025-08-14T21:49:00.3662794Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\tensor_factory_functions.py 2025-08-14T21:49:00.3667259Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\ts_backend.py 2025-08-14T21:49:00.3671290Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__init__.py 2025-08-14T21:49:00.3678974Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\closure.cpython-39.pyc 2025-08-14T21:49:00.3682659Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\computation.cpython-39.pyc 2025-08-14T21:49:00.3687025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\config.cpython-39.pyc 2025-08-14T21:49:00.3694832Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\debug.cpython-39.pyc 2025-08-14T21:49:00.3698713Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\device_context.cpython-39.pyc 2025-08-14T21:49:00.3702694Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\extract_compiled_graph.cpython-39.pyc 2025-08-14T21:49:00.3706460Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\ir_cache.cpython-39.pyc 2025-08-14T21:49:00.3710138Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\metrics.cpython-39.pyc 2025-08-14T21:49:00.3731432Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\tensor_factory_functions.cpython-39.pyc 2025-08-14T21:49:00.3735121Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\ts_backend.cpython-39.pyc 2025-08-14T21:49:00.3738869Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_lazy\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.3752799Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\autograd.py 2025-08-14T21:49:00.3756404Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\custom_ops.py 2025-08-14T21:49:00.3760103Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\fake_class_registry.py 2025-08-14T21:49:00.3763616Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\fake_impl.py 2025-08-14T21:49:00.3771195Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\fake_profile.py 2025-08-14T21:49:00.3774577Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\infer_schema.py 2025-08-14T21:49:00.3778205Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\simple_registry.py 2025-08-14T21:49:00.3781739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\triton.py 2025-08-14T21:49:00.3785228Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\utils.py 2025-08-14T21:49:00.3789037Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__init__.py 2025-08-14T21:49:00.3796722Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\autograd.cpython-39.pyc 2025-08-14T21:49:00.3800467Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\custom_ops.cpython-39.pyc 2025-08-14T21:49:00.3804130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\fake_class_registry.cpython-39.pyc 2025-08-14T21:49:00.3812029Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\fake_impl.cpython-39.pyc 2025-08-14T21:49:00.3815764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\fake_profile.cpython-39.pyc 2025-08-14T21:49:00.3819414Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\infer_schema.cpython-39.pyc 2025-08-14T21:49:00.3823836Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\simple_registry.cpython-39.pyc 2025-08-14T21:49:00.3827720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\triton.cpython-39.pyc 2025-08-14T21:49:00.3831368Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\utils.cpython-39.pyc 2025-08-14T21:49:00.3835162Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_library\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.3843325Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\scribe.py 2025-08-14T21:49:00.3846859Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\structured.py 2025-08-14T21:49:00.3850888Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\_internal.py 2025-08-14T21:49:00.3865454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\_registrations.py 2025-08-14T21:49:00.3866552Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__init__.py 2025-08-14T21:49:00.3874354Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\scribe.cpython-39.pyc 2025-08-14T21:49:00.3877822Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\structured.cpython-39.pyc 2025-08-14T21:49:00.3881508Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\_internal.cpython-39.pyc 2025-08-14T21:49:00.3889617Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\_registrations.cpython-39.pyc 2025-08-14T21:49:00.3893510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_logging\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.3901791Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\fft.py 2025-08-14T21:49:00.3905377Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\linalg.py 2025-08-14T21:49:00.3908942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\random.py 2025-08-14T21:49:00.3913092Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_binary_ufuncs_impl.py 2025-08-14T21:49:00.3916873Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_casting_dicts.py 2025-08-14T21:49:00.3924708Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_dtypes.py 2025-08-14T21:49:00.3928372Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_dtypes_impl.py 2025-08-14T21:49:00.3932201Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_funcs.py 2025-08-14T21:49:00.3936357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_funcs_impl.py 2025-08-14T21:49:00.3940351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_getlimits.py 2025-08-14T21:49:00.3944001Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_ndarray.py 2025-08-14T21:49:00.3947984Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_normalizations.py 2025-08-14T21:49:00.3951591Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_reductions_impl.py 2025-08-14T21:49:00.3955234Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_ufuncs.py 2025-08-14T21:49:00.3958883Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_unary_ufuncs_impl.py 2025-08-14T21:49:00.3962510Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\_util.py 2025-08-14T21:49:00.3965942Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__init__.py 2025-08-14T21:49:00.3973412Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\utils.py 2025-08-14T21:49:00.3977250Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\__init__.py 2025-08-14T21:49:00.3984357Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\__pycache__\utils.cpython-39.pyc 2025-08-14T21:49:00.3988523Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\testing\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.3996995Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\fft.cpython-39.pyc 2025-08-14T21:49:00.4000754Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\linalg.cpython-39.pyc 2025-08-14T21:49:00.4004655Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\random.cpython-39.pyc 2025-08-14T21:49:00.4012215Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_binary_ufuncs_impl.cpython-39.pyc 2025-08-14T21:49:00.4015865Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_casting_dicts.cpython-39.pyc 2025-08-14T21:49:00.4019605Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_dtypes.cpython-39.pyc 2025-08-14T21:49:00.4023411Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_dtypes_impl.cpython-39.pyc 2025-08-14T21:49:00.4027130Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_funcs.cpython-39.pyc 2025-08-14T21:49:00.4031488Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_funcs_impl.cpython-39.pyc 2025-08-14T21:49:00.4035442Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_getlimits.cpython-39.pyc 2025-08-14T21:49:00.4039073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_ndarray.cpython-39.pyc 2025-08-14T21:49:00.4042884Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_normalizations.cpython-39.pyc 2025-08-14T21:49:00.4046624Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_reductions_impl.cpython-39.pyc 2025-08-14T21:49:00.4050699Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_ufuncs.cpython-39.pyc 2025-08-14T21:49:00.4054839Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_unary_ufuncs_impl.cpython-39.pyc 2025-08-14T21:49:00.4064764Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\_util.cpython-39.pyc 2025-08-14T21:49:00.4065456Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_numpy\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.4077814Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\context.py 2025-08-14T21:49:00.4081439Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\debug_prims.py 2025-08-14T21:49:00.4085007Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\executor.py 2025-08-14T21:49:00.4088481Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\rng_prims.py 2025-08-14T21:49:00.4092000Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__init__.py 2025-08-14T21:49:00.4104282Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\context.cpython-39.pyc 2025-08-14T21:49:00.4108355Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\debug_prims.cpython-39.pyc 2025-08-14T21:49:00.4112017Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\executor.cpython-39.pyc 2025-08-14T21:49:00.4121827Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\rng_prims.cpython-39.pyc 2025-08-14T21:49:00.4125746Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.4134515Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\wrappers.py 2025-08-14T21:49:00.4137751Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\__init__.py 2025-08-14T21:49:00.4145491Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\__pycache__\wrappers.cpython-39.pyc 2025-08-14T21:49:00.4149431Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_prims_common\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.4157720Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\fft.py 2025-08-14T21:49:00.4161371Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\_conversions.py 2025-08-14T21:49:00.4164953Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__init__.py 2025-08-14T21:49:00.4173141Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\linalg\__init__.py 2025-08-14T21:49:00.4180506Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\linalg\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.4188779Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\__init__.py 2025-08-14T21:49:00.4196084Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\functional\__init__.py 2025-08-14T21:49:00.4203308Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\functional\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.4211262Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\nn\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.4224101Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\special\__init__.py 2025-08-14T21:49:00.4231393Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\special\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.4239257Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__pycache__\fft.cpython-39.pyc 2025-08-14T21:49:00.4243153Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__pycache__\_conversions.cpython-39.pyc 2025-08-14T21:49:00.4246867Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_refs\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.4260461Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\cli_function_profiler.py 2025-08-14T21:49:00.4264129Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\compile_time_profiler.py 2025-08-14T21:49:00.4268224Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__init__.py 2025-08-14T21:49:00.4279923Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__pycache__\cli_function_profiler.cpython-39.pyc 2025-08-14T21:49:00.4283653Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__pycache__\compile_time_profiler.cpython-39.pyc 2025-08-14T21:49:00.4287676Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_strobelight\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.4302755Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\fake_impls.py 2025-08-14T21:49:00.4306073Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\fake_tensor.py 2025-08-14T21:49:00.4310637Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\fake_utils.py 2025-08-14T21:49:00.4321248Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\functional_tensor.py 2025-08-14T21:49:00.4323675Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\meta_utils.py 2025-08-14T21:49:00.4327905Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\schema_check_mode.py 2025-08-14T21:49:00.4331704Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\_fake_tensor_utils.py 2025-08-14T21:49:00.4335554Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__init__.py 2025-08-14T21:49:00.4343796Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\fake_impls.cpython-39.pyc 2025-08-14T21:49:00.4348233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\fake_tensor.cpython-39.pyc 2025-08-14T21:49:00.4352857Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\fake_utils.cpython-39.pyc 2025-08-14T21:49:00.4360692Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\functional_tensor.cpython-39.pyc 2025-08-14T21:49:00.4364739Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\meta_utils.cpython-39.pyc 2025-08-14T21:49:00.4368927Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\schema_check_mode.cpython-39.pyc 2025-08-14T21:49:00.4372824Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\_fake_tensor_utils.cpython-39.pyc 2025-08-14T21:49:00.4377220Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_subclasses\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.4386240Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\__init__.py 2025-08-14T21:49:00.4392712Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\version.py 2025-08-14T21:49:00.4397309Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\_structures.py 2025-08-14T21:49:00.4400361Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__init__.py 2025-08-14T21:49:00.4412830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__pycache__\version.cpython-39.pyc 2025-08-14T21:49:00.4417298Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__pycache__\_structures.cpython-39.pyc 2025-08-14T21:49:00.4422293Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\packaging\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.4435194Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\_vendor\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.4444246Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\functional.cpython-39.pyc 2025-08-14T21:49:00.4448133Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\hub.cpython-39.pyc 2025-08-14T21:49:00.4452025Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\library.cpython-39.pyc 2025-08-14T21:49:00.4459830Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\overrides.cpython-39.pyc 2025-08-14T21:49:00.4464221Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\quasirandom.cpython-39.pyc 2025-08-14T21:49:00.4468191Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\random.cpython-39.pyc 2025-08-14T21:49:00.4472067Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\return_types.cpython-39.pyc 2025-08-14T21:49:00.4475850Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\serialization.cpython-39.pyc 2025-08-14T21:49:00.4479937Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\storage.cpython-39.pyc 2025-08-14T21:49:00.4483788Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\torch_version.cpython-39.pyc 2025-08-14T21:49:00.4487933Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\types.cpython-39.pyc 2025-08-14T21:49:00.4491876Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\version.cpython-39.pyc 2025-08-14T21:49:00.4496978Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_appdirs.cpython-39.pyc 2025-08-14T21:49:00.4500965Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_classes.cpython-39.pyc 2025-08-14T21:49:00.4505035Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_compile.cpython-39.pyc 2025-08-14T21:49:00.4509233Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_custom_ops.cpython-39.pyc 2025-08-14T21:49:00.4513499Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_environment.cpython-39.pyc 2025-08-14T21:49:00.4522634Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_guards.cpython-39.pyc 2025-08-14T21:49:00.4525621Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_jit_internal.cpython-39.pyc 2025-08-14T21:49:00.4537932Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_linalg_utils.cpython-39.pyc 2025-08-14T21:49:00.4540419Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_lobpcg.cpython-39.pyc 2025-08-14T21:49:00.4541052Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_lowrank.cpython-39.pyc 2025-08-14T21:49:00.4542243Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_meta_registrations.cpython-39.pyc 2025-08-14T21:49:00.4557454Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_namedtensor_internals.cpython-39.pyc 2025-08-14T21:49:00.4562726Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_ops.cpython-39.pyc 2025-08-14T21:49:00.4563369Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_python_dispatcher.cpython-39.pyc 2025-08-14T21:49:00.4565362Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_size_docs.cpython-39.pyc 2025-08-14T21:49:00.4569852Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_sources.cpython-39.pyc 2025-08-14T21:49:00.4573322Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_storage_docs.cpython-39.pyc 2025-08-14T21:49:00.4577762Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_streambase.cpython-39.pyc 2025-08-14T21:49:00.4581759Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_tensor.cpython-39.pyc 2025-08-14T21:49:00.4586384Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_tensor_docs.cpython-39.pyc 2025-08-14T21:49:00.4590813Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_tensor_str.cpython-39.pyc 2025-08-14T21:49:00.4594855Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_thread_safe_fork.cpython-39.pyc 2025-08-14T21:49:00.4604853Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_torch_docs.cpython-39.pyc 2025-08-14T21:49:00.4611351Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_utils.cpython-39.pyc 2025-08-14T21:49:00.4615247Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_utils_internal.cpython-39.pyc 2025-08-14T21:49:00.4619012Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_VF.cpython-39.pyc 2025-08-14T21:49:00.4623049Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_vmap_internals.cpython-39.pyc 2025-08-14T21:49:00.4626924Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\_weights_only_unpickler.cpython-39.pyc 2025-08-14T21:49:00.4630649Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\__config__.cpython-39.pyc 2025-08-14T21:49:00.4635534Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\__future__.cpython-39.pyc 2025-08-14T21:49:00.4647375Z C:\Jenkins\Miniconda3\Lib\site-packages\torch\__pycache__\__init__.cpython-39.pyc 2025-08-14T21:49:00.4655719Z 13440 File(s) copied 2025-08-14T21:49:00.6205377Z ********************************************************************** 2025-08-14T21:49:00.6205814Z ** Visual Studio 2022 Developer Command Prompt v17.8.22 2025-08-14T21:49:00.6206199Z ** Copyright (c) 2022 Microsoft Corporation 2025-08-14T21:49:00.6206521Z ********************************************************************** 2025-08-14T21:49:01.1593485Z [vcvarsall.bat] Environment initialized for: 'x64' 2025-08-14T21:49:01.1652670Z 2025-08-14T21:49:01.1653344Z (base) C:\actions-runner\_work\pytorch\pytorch>popd 2025-08-14T21:49:01.1657492Z 2025-08-14T21:49:01.1658062Z (base) C:\actions-runner\_work\pytorch\pytorch>set DISTUTILS_USE_SDK=1 2025-08-14T21:49:01.1661096Z 2025-08-14T21:49:01.1661660Z (base) C:\actions-runner\_work\pytorch\pytorch>if not "0" == "1" goto cuda_build_end 2025-08-14T21:49:01.1667830Z 2025-08-14T21:49:01.1668594Z (base) C:\actions-runner\_work\pytorch\pytorch>set PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-08-14T21:49:01.1671663Z 2025-08-14T21:49:01.1671901Z (base) C:\actions-runner\_work\pytorch\pytorch>set 2025-08-14T21:49:01.1846639Z ACTIONS_ID_TOKEN_REQUEST_TOKEN=*** 2025-08-14T21:49:01.1847818Z ACTIONS_ID_TOKEN_REQUEST_URL=https://run-actions-3-azure-eastus.actions.githubusercontent.com/35//idtoken/eb633651-a2d8-43a7-b851-b43ceeb8c5b6/4370526a-6cfc-5143-abe1-be4998f50329?api-version=2.0 2025-08-14T21:49:01.1849121Z ACTIONS_RUNNER_HOOK_JOB_COMPLETED=C:\actions-runner\jobcompleted.ps1 2025-08-14T21:49:01.1849709Z ALLUSERSPROFILE=C:\ProgramData 2025-08-14T21:49:01.1850124Z ALPINE_IMAGE=308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-08-14T21:49:01.1850663Z APPDATA=C:\Users\runneruser\AppData\Roaming 2025-08-14T21:49:01.1850988Z AWS_DEFAULT_REGION=us-east-1 2025-08-14T21:49:01.1851241Z AWS_EXECUTION_ENV=EC2 2025-08-14T21:49:01.1851497Z BUILD_ENVIRONMENT=win-vs2022-cpu-py3 2025-08-14T21:49:01.1851770Z CI=true 2025-08-14T21:49:01.1851966Z CommandPromptType=Native 2025-08-14T21:49:01.1852280Z COMMONPROGRAMFILES=C:\Program Files\Common Files 2025-08-14T21:49:01.1852629Z COMPUTERNAME=EC2AMAZ-VK08H34 2025-08-14T21:49:01.1852904Z COMSPEC=C:\Windows\system32\cmd.exe 2025-08-14T21:49:01.1853433Z CONDA_BUILD=C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-14T21:49:01.1853847Z CONDA_DEFAULT_ENV=base 2025-08-14T21:49:01.1854116Z CONDA_EXE=C:\Jenkins\Miniconda3\Scripts\conda.exe 2025-08-14T21:49:01.1854636Z CONDA_INSTALL=C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-14T21:49:01.1855015Z CONDA_PARENT_DIR=C:\Jenkins 2025-08-14T21:49:01.1855288Z CONDA_PREFIX=C:\Jenkins\Miniconda3 2025-08-14T21:49:01.1855585Z CONDA_PROMPT_MODIFIER=(base) 2025-08-14T21:49:01.1855897Z CONDA_PYTHON_EXE=C:\Jenkins\Miniconda3\python.exe 2025-08-14T21:49:01.1856367Z CONDA_RUN=C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-14T21:49:01.1856782Z CONDA_SHLVL=1 2025-08-14T21:49:01.1857000Z CONTINUE_THROUGH_ERROR=True 2025-08-14T21:49:01.1857350Z CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-08-14T21:49:01.1858004Z CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-08-14T21:49:01.1858519Z CUDA_PATH_V12_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-08-14T21:49:01.1859049Z CUDA_PATH_V12_9=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-08-14T21:49:01.1859449Z CUDA_VERSION=cpu 2025-08-14T21:49:01.1859696Z ChocolateyInstall=C:\ProgramData\chocolatey 2025-08-14T21:49:01.1860107Z CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files 2025-08-14T21:49:01.1860526Z CommonProgramW6432=C:\Program Files\Common Files 2025-08-14T21:49:01.1861034Z DevEnvDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\ 2025-08-14T21:49:01.1861599Z DISTUTILS_USE_SDK=1 2025-08-14T21:49:01.1861874Z DriverData=C:\Windows\System32\Drivers\DriverData 2025-08-14T21:49:01.1862206Z EC2LAUNCH_TELEMETRY=1 2025-08-14T21:49:01.1862604Z ExtensionSdkDir=C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs 2025-08-14T21:49:01.1865012Z 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:49:01.1867324Z Framework40Version=v4.0 2025-08-14T21:49:01.1867619Z FrameworkDir=C:\Windows\Microsoft.NET\Framework64\ 2025-08-14T21:49:01.1868044Z FrameworkDir64=C:\Windows\Microsoft.NET\Framework64\ 2025-08-14T21:49:01.1868400Z FrameworkVersion=v4.0.30319 2025-08-14T21:49:01.1868670Z FrameworkVersion64=v4.0.30319 2025-08-14T21:49:01.1868920Z GITHUB_ACTION=test 2025-08-14T21:49:01.1869135Z GITHUB_ACTIONS=true 2025-08-14T21:49:01.1869347Z GITHUB_ACTION_REF= 2025-08-14T21:49:01.1869566Z GITHUB_ACTION_REPOSITORY= 2025-08-14T21:49:01.1869896Z GITHUB_ACTOR=pytorchmergebot 2025-08-14T21:49:01.1870166Z GITHUB_ACTOR_ID=97764156 2025-08-14T21:49:01.1870450Z GITHUB_API_URL=https://api.github.com 2025-08-14T21:49:01.1870735Z GITHUB_BASE_REF= 2025-08-14T21:49:01.1871209Z GITHUB_ENV=C:\actions-runner\_work\_temp\_runner_file_commands\set_env_83912364-3887-4c05-aa7a-3e1c85fbb2cd 2025-08-14T21:49:01.1871742Z GITHUB_EVENT_NAME=push 2025-08-14T21:49:01.1872113Z GITHUB_EVENT_PATH=C:\actions-runner\_work\_temp\_github_workflow\event.json 2025-08-14T21:49:01.1872589Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql 2025-08-14T21:49:01.1872924Z GITHUB_HEAD_REF= 2025-08-14T21:49:01.1873122Z GITHUB_JOB=test 2025-08-14T21:49:01.1873611Z GITHUB_OUTPUT=C:\actions-runner\_work\_temp\_runner_file_commands\set_output_83912364-3887-4c05-aa7a-3e1c85fbb2cd 2025-08-14T21:49:01.1874443Z GITHUB_PATH=C:\actions-runner\_work\_temp\_runner_file_commands\add_path_83912364-3887-4c05-aa7a-3e1c85fbb2cd 2025-08-14T21:49:01.1875005Z GITHUB_REF=refs/heads/main 2025-08-14T21:49:01.1875240Z GITHUB_REF_NAME=main 2025-08-14T21:49:01.1875475Z GITHUB_REF_PROTECTED=true 2025-08-14T21:49:01.1875709Z GITHUB_REF_TYPE=branch 2025-08-14T21:49:01.1875951Z GITHUB_REPOSITORY=pytorch/pytorch 2025-08-14T21:49:01.1876287Z GITHUB_REPOSITORY_ID=65600975 2025-08-14T21:49:01.1876560Z GITHUB_REPOSITORY_OWNER=pytorch 2025-08-14T21:49:01.1876830Z GITHUB_REPOSITORY_OWNER_ID=21003710 2025-08-14T21:49:01.1877118Z GITHUB_RETENTION_DAYS=90 2025-08-14T21:49:01.1877350Z GITHUB_RUN_ATTEMPT=1 2025-08-14T21:49:01.1877579Z GITHUB_RUN_ID=16976255045 2025-08-14T21:49:01.1877811Z GITHUB_RUN_NUMBER=140204 2025-08-14T21:49:01.1878059Z GITHUB_SERVER_URL=https://github.com 2025-08-14T21:49:01.1878390Z GITHUB_SHA=1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:49:01.1878985Z GITHUB_STATE=C:\actions-runner\_work\_temp\_runner_file_commands\save_state_83912364-3887-4c05-aa7a-3e1c85fbb2cd 2025-08-14T21:49:01.1879949Z GITHUB_STEP_SUMMARY=C:\actions-runner\_work\_temp\_runner_file_commands\step_summary_83912364-3887-4c05-aa7a-3e1c85fbb2cd 2025-08-14T21:49:01.1880573Z GITHUB_TRIGGERING_ACTOR=pytorchmergebot 2025-08-14T21:49:01.1880868Z GITHUB_WORKFLOW=trunk 2025-08-14T21:49:01.1881272Z GITHUB_WORKFLOW_REF=pytorch/pytorch/.github/workflows/trunk.yml@refs/heads/main 2025-08-14T21:49:01.1881804Z GITHUB_WORKFLOW_SHA=1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:49:01.1882256Z GITHUB_WORKSPACE=C:\actions-runner\_work\pytorch\pytorch 2025-08-14T21:49:01.1882604Z GIT_DEFAULT_BRANCH=main 2025-08-14T21:49:01.1882842Z HOME=C:\Users\runneruser 2025-08-14T21:49:01.1884953Z 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:49:01.1887358Z INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-08-14T21:49:01.1887926Z INSTALL_WINDOWS_SDK=1 2025-08-14T21:49:01.1888138Z JOB_ID=48128743920 2025-08-14T21:49:01.1888525Z JOB_NAME=win-vs2022-cpu-py3 / test (default, 3, 3, lf.windows.4xlarge.nonephemeral) 2025-08-14T21:49:01.1889826Z 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:49:01.1892183Z 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:49:01.1894316Z LOCALAPPDATA=C:\Users\runneruser\AppData\Local 2025-08-14T21:49:01.1894738Z NETFXSDKDir=C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\ 2025-08-14T21:49:01.1895102Z NO_TD=False 2025-08-14T21:49:01.1895305Z NO_TEST_TIMEOUT=False 2025-08-14T21:49:01.1895524Z NUMBER_OF_PROCESSORS=16 2025-08-14T21:49:01.1895750Z NUM_TEST_SHARDS=3 2025-08-14T21:49:01.1895960Z OLDPWD=C:/16976255045/build-results 2025-08-14T21:49:01.1896226Z OS=Windows_NT 2025-08-14T21:49:01.1903208Z 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:49:01.1910572Z PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC 2025-08-14T21:49:01.1910940Z Platform=x64 2025-08-14T21:49:01.1911149Z PROCESSOR_ARCHITECTURE=AMD64 2025-08-14T21:49:01.1911554Z PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 85 Stepping 4, GenuineIntel 2025-08-14T21:49:01.1911967Z PROCESSOR_LEVEL=6 2025-08-14T21:49:01.1912190Z PROCESSOR_REVISION=5504 2025-08-14T21:49:01.1912429Z PROGRAMFILES=C:\Program Files 2025-08-14T21:49:01.1912745Z PROJECT_DIR=C:/actions-runner/_work/pytorch/pytorch 2025-08-14T21:49:01.1913152Z PROJECT_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch 2025-08-14T21:49:01.1913501Z PROMPT=(base) $P$G 2025-08-14T21:49:01.1913711Z PR_NUMBER= 2025-08-14T21:49:01.1914194Z PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files\WindowsPowerShell\Modules 2025-08-14T21:49:01.1914769Z PUBLIC=C:\Users\Public 2025-08-14T21:49:01.1915155Z *** 2025-08-14T21:49:01.1915484Z PYTHONPATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\build; 2025-08-14T21:49:01.1915904Z PYTHON_VERSION=3.9 2025-08-14T21:49:01.1916181Z PYTORCH_FINAL_PACKAGE_DIR=C:/16976255045/build-results/ 2025-08-14T21:49:01.1916612Z PYTORCH_FINAL_PACKAGE_DIR_WIN=C:\16976255045\build-results\ 2025-08-14T21:49:01.1916983Z PYTORCH_TEST_CUDA_MEM_LEAK_CHECK=0 2025-08-14T21:49:01.1917291Z PYTORCH_TEST_RERUN_DISABLED_TESTS=0 2025-08-14T21:49:01.1917583Z ProgramData=C:\ProgramData 2025-08-14T21:49:01.1917858Z ProgramFiles(x86)=C:\Program Files (x86) 2025-08-14T21:49:01.1918231Z ProgramW6432=C:\Program Files 2025-08-14T21:49:01.1918490Z REENABLED_ISSUES= 2025-08-14T21:49:01.1918704Z RUNNER_ARCH=X64 2025-08-14T21:49:01.1918931Z RUNNER_ENVIRONMENT=self-hosted 2025-08-14T21:49:01.1919201Z RUNNER_NAME=i-0712734b1d26f3aef 2025-08-14T21:49:01.1919447Z RUNNER_OS=Windows 2025-08-14T21:49:01.1919683Z RUNNER_TEMP=C:\actions-runner\_work\_temp 2025-08-14T21:49:01.1920017Z RUNNER_TOOL_CACHE=C:\actions-runner\_work\_tool 2025-08-14T21:49:01.1920425Z RUNNER_TRACKING_ID=github_9823d4c7-e24b-461d-b11d-beefd08c4c32 2025-08-14T21:49:01.1920845Z RUNNER_WORKSPACE=C:\actions-runner\_work\pytorch 2025-08-14T21:49:01.1921364Z SCRIPT_HELPERS_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-08-14T21:49:01.1921875Z SHA1=1fc683cf17c8c673044538d10266c00f92987be2 2025-08-14T21:49:01.1922179Z SHARD_NUMBER=3 2025-08-14T21:49:01.1922383Z SHLVL=2 2025-08-14T21:49:01.1922631Z SSL_CERT_FILE=C:\Jenkins\Miniconda3\Library\ssl\cacert.pem 2025-08-14T21:49:01.1922984Z SYSTEMDRIVE=C: 2025-08-14T21:49:01.1923186Z SYSTEMROOT=C:\Windows 2025-08-14T21:49:01.1923441Z TEMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:49:01.1923724Z TERM=xterm-256color 2025-08-14T21:49:01.1923993Z TEST_CONFIG=default 2025-08-14T21:49:01.1924259Z TEST_DIR=C:/actions-runner/_work/pytorch/pytorch/test 2025-08-14T21:49:01.1924677Z TEST_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\test 2025-08-14T21:49:01.1925022Z TEST_SHOWLOCALS=False 2025-08-14T21:49:01.1925295Z TMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:49:01.1925622Z TMPDIR=C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-14T21:49:01.1926003Z TMP_DIR=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-08-14T21:49:01.1926460Z TMP_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp 2025-08-14T21:49:01.1926834Z TORCH_CUDA_ARCH_LIST=8.6 2025-08-14T21:49:01.1927177Z TORCH_SERIALIZATION_DEBUG=1 2025-08-14T21:49:01.1927432Z UCRTVersion=10.0.19041.0 2025-08-14T21:49:01.1927774Z UniversalCRTSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-08-14T21:49:01.1928156Z UPDATEFILE=update.finished 2025-08-14T21:49:01.1928421Z USERDOMAIN=EC2AMAZ-VK08H34 2025-08-14T21:49:01.1928670Z USERNAME=runneruser 2025-08-14T21:49:01.1928901Z USERPROFILE=C:\Users\runneruser 2025-08-14T21:49:01.1929153Z USE_CUDA=0 2025-08-14T21:49:01.1929561Z VCIDEInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\ 2025-08-14T21:49:01.1930226Z VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\ 2025-08-14T21:49:01.1930927Z VCToolsInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\ 2025-08-14T21:49:01.1931747Z VCToolsRedistDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Redist\MSVC\14.38.33130\ 2025-08-14T21:49:01.1932301Z VCToolsVersion=14.38.33130 2025-08-14T21:49:01.1932544Z VC_PRODUCT=BuildTools 2025-08-14T21:49:01.1932766Z VC_VERSION= 2025-08-14T21:49:01.1932948Z VC_YEAR=2022 2025-08-14T21:49:01.1933163Z VERBOSE_ARG='SilentlyContinue' 2025-08-14T21:49:01.1933417Z VERBOSE_TEST_LOGS=False 2025-08-14T21:49:01.1933656Z VisualStudioVersion=17.0 2025-08-14T21:49:01.1934250Z VS170COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\ 2025-08-14T21:49:01.1934767Z VSCMD_ARG_app_plat=Desktop 2025-08-14T21:49:01.1935007Z VSCMD_ARG_HOST_ARCH=x64 2025-08-14T21:49:01.1935252Z VSCMD_ARG_TGT_ARCH=x64 2025-08-14T21:49:01.1935475Z VSCMD_VER=17.8.22 2025-08-14T21:49:01.1935829Z VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\ 2025-08-14T21:49:01.1936405Z VS_VERSION=17.4.1 2025-08-14T21:49:01.1936637Z WINDIR=C:\Windows 2025-08-14T21:49:01.1937242Z 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:49:01.1938012Z WindowsSdkBinPath=C:\Program Files (x86)\Windows Kits\10\bin\ 2025-08-14T21:49:01.1938468Z WindowsSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-08-14T21:49:01.1938917Z WindowsSDKLibVersion=10.0.19041.0\ 2025-08-14T21:49:01.1939363Z WindowsSdkVerBinPath=C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\ 2025-08-14T21:49:01.1939826Z WindowsSDKVersion=10.0.19041.0\ 2025-08-14T21:49:01.1940352Z WindowsSDK_ExecutablePath_x64=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\ 2025-08-14T21:49:01.1941154Z WindowsSDK_ExecutablePath_x86=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\ 2025-08-14T21:49:01.1941900Z _=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/test_python_shard.bat 2025-08-14T21:49:01.1942416Z __CONDA_OPENSLL_CERT_FILE_SET="1" 2025-08-14T21:49:01.1942674Z __DOTNET_ADD_64BIT=1 2025-08-14T21:49:01.1942907Z __DOTNET_PREFERRED_BITNESS=64 2025-08-14T21:49:01.1946398Z __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:49:01.1949782Z 2025-08-14T21:49:01.1949995Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 ( 2025-08-14T21:49:01.1950492Z echo "setup pytorch env failed" 2025-08-14T21:49:01.1950777Z echo 0 2025-08-14T21:49:01.1950951Z exit /b 2025-08-14T21:49:01.1951127Z ) 2025-08-14T21:49:01.1951349Z 2025-08-14T21:49:01.1951521Z (base) C:\actions-runner\_work\pytorch\pytorch>pushd test 2025-08-14T21:49:01.1951795Z 2025-08-14T21:49:01.1952223Z (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:49:01.1952865Z 2025-08-14T21:49:01.1953301Z (base) C:\actions-runner\_work\pytorch\pytorch\test>if "3" == "1" (if exist "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" ( 2025-08-14T21:49:01.1953917Z echo Some smoke tests 2025-08-14T21:49:01.1954322Z "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" /i python.exe +sls 2025-08-14T21:49:01.1955070Z python C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\run_python_nn_smoketests.py 2025-08-14T21:49:01.1955651Z if ERRORLEVEL 1 goto fail 2025-08-14T21:49:01.1956082Z "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\gflags.exe" /i python.exe -sls 2025-08-14T21:49:01.1956537Z if ERRORLEVEL 1 goto fail 2025-08-14T21:49:01.1956772Z ) ) 2025-08-14T21:49:01.1956871Z 2025-08-14T21:49:01.1957130Z (base) C:\actions-runner\_work\pytorch\pytorch\test>echo Copying over test times file 2025-08-14T21:49:01.1957598Z Copying over test times file 2025-08-14T21:49:01.1957861Z 2025-08-14T21:49:01.1958488Z (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:49:01.2641971Z 2025-08-14T21:49:01.2642703Z ------------------------------------------------------------------------------- 2025-08-14T21:49:01.2648903Z ROBOCOPY :: Robust File Copy for Windows 2025-08-14T21:49:01.2649442Z ------------------------------------------------------------------------------- 2025-08-14T21:49:01.2649766Z 2025-08-14T21:49:01.2649893Z Started : Thursday, August 14, 2025 9:49:01 PM 2025-08-14T21:49:01.2650455Z Source : C:\16976255045\build-results\.additional_ci_files\ 2025-08-14T21:49:01.2650930Z Dest : C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-08-14T21:49:01.2651256Z 2025-08-14T21:49:01.2651350Z Files : *.* 2025-08-14T21:49:01.2651541Z 2025-08-14T21:49:01.2651857Z Options : *.* /S /E /DCOPY:DA /COPY:DAT /R:1000000 /W:30 2025-08-14T21:49:01.2652408Z 2025-08-14T21:49:01.2652921Z ------------------------------------------------------------------------------ 2025-08-14T21:49:01.2655928Z 2025-08-14T21:49:01.2663849Z 2 C:\16976255045\build-results\.additional_ci_files\ 2025-08-14T21:49:01.2665037Z *EXTRA File 78697 td_results.json 2025-08-14T21:49:01.2676968Z New File 3.8 m test-class-times.json 2025-08-14T21:49:01.2680025Z 12% 2025-08-14T21:49:01.2683641Z 25% 2025-08-14T21:49:01.2686909Z 38% 2025-08-14T21:49:01.2690646Z 51% 2025-08-14T21:49:01.2694298Z 64% 2025-08-14T21:49:01.2699245Z 77% 2025-08-14T21:49:01.2701853Z 90% 2025-08-14T21:49:01.2704560Z 100% 2025-08-14T21:49:01.2714493Z New File 1.0 m test-times.json 2025-08-14T21:49:01.2716181Z 23% 2025-08-14T21:49:01.2717999Z 47% 2025-08-14T21:49:01.2719845Z 71% 2025-08-14T21:49:01.2721416Z 94% 2025-08-14T21:49:01.2723847Z 100% 2025-08-14T21:49:01.2724389Z 2025-08-14T21:49:01.2724814Z ------------------------------------------------------------------------------ 2025-08-14T21:49:01.2725136Z 2025-08-14T21:49:01.2726594Z Total Copied Skipped Mismatch FAILED Extras 2025-08-14T21:49:01.2727869Z Dirs : 1 0 1 0 0 0 2025-08-14T21:49:01.2729150Z Files : 2 2 0 0 0 1 2025-08-14T21:49:01.2730436Z Bytes : 4.90 m 4.90 m 0 0 0 76.8 k 2025-08-14T21:49:01.2731892Z Times : 0:00:00 0:00:00 0:00:00 0:00:00 2025-08-14T21:49:01.2732166Z 2025-08-14T21:49:01.2732834Z 2025-08-14T21:49:01.2734321Z Speed : 857355500 Bytes/sec. 2025-08-14T21:49:01.2735567Z Speed : 49058.275 MegaBytes/min. 2025-08-14T21:49:01.2736104Z Ended : Thursday, August 14, 2025 9:49:01 PM 2025-08-14T21:49:01.2736522Z 2025-08-14T21:49:01.2754892Z 2025-08-14T21:49:01.2755381Z (base) C:\actions-runner\_work\pytorch\pytorch\test>echo Run nn tests 2025-08-14T21:49:01.2755801Z Run nn tests 2025-08-14T21:49:01.2757270Z 2025-08-14T21:49:01.2758093Z (base) C:\actions-runner\_work\pytorch\pytorch\test>python run_test.py --exclude-jit-executor --exclude-distributed-tests --shard "3" "3" --verbose 2025-08-14T21:49:13.2296523Z Found test times from artifacts 2025-08-14T21:49:13.3045382Z Found test times from artifacts 2025-08-14T21:49:13.3068974Z Running all tests 2025-08-14T21:49:13.3719393Z Running parallel tests on 3 processes 2025-08-14T21:49:13.3737211Z Name: tests to run (est. time: 91.34min) 2025-08-14T21:49:13.3737663Z Serial tests (0): 2025-08-14T21:49:13.3737985Z Parallel tests (176): 2025-08-14T21:49:13.3738239Z inductor/test_extension_backend 1/1 2025-08-14T21:49:13.3738529Z inductor/test_torchbind 1/1 2025-08-14T21:49:13.3738815Z dynamo/test_trace_rules 1/1 2025-08-14T21:49:13.3739066Z test_type_hints 1/1 2025-08-14T21:49:13.3739300Z test_public_bindings 1/1 2025-08-14T21:49:13.3739539Z test_cuda 1/1 2025-08-14T21:49:13.3739739Z test_dataloader 1/2 2025-08-14T21:49:13.3740045Z inductor/test_torchinductor_codegen_dynamic_shapes 1/1 2025-08-14T21:49:13.3740414Z inductor/test_cuda_repro 1/1 2025-08-14T21:49:13.3740683Z dynamo/test_unspec 1/1 2025-08-14T21:49:13.3740938Z inductor/test_mkldnn_pattern_matcher 1/1 2025-08-14T21:49:13.3741260Z inductor/test_compiled_optimizers 1/1 2025-08-14T21:49:13.3741593Z inductor/test_coordinate_descent_tuner 1/1 2025-08-14T21:49:13.3741917Z inductor/test_dependencies 1/1 2025-08-14T21:49:13.3742282Z inductor/test_group_batch_fusion 1/1 2025-08-14T21:49:13.3742703Z inductor/test_minifier 1/1 2025-08-14T21:49:13.3742962Z inductor/test_config 1/1 2025-08-14T21:49:13.3743215Z dynamo/test_higher_order_ops 1/1 2025-08-14T21:49:13.3743653Z dynamo/test_activation_checkpointing 1/1 2025-08-14T21:49:13.3743959Z dynamo/test_misc 1/1 2025-08-14T21:49:13.3744193Z dynamo/test_exc 1/1 2025-08-14T21:49:13.3744513Z inductor/test_padding 1/1 2025-08-14T21:49:13.3744765Z inductor/test_halide 1/1 2025-08-14T21:49:13.3745023Z inductor/test_cpu_select_algorithm 1/1 2025-08-14T21:49:13.3745343Z inductor/test_external_callables 1/1 2025-08-14T21:49:13.3745647Z inductor/test_triton_syntax 1/1 2025-08-14T21:49:13.3745919Z inductor/test_pad_mm 1/1 2025-08-14T21:49:13.3746175Z export/test_export 1/1 2025-08-14T21:49:13.3746412Z inductor/test_memory 1/1 2025-08-14T21:49:13.3746703Z inductor/test_triton_extension_backend 1/1 2025-08-14T21:49:13.3747009Z inductor/test_analysis 1/1 2025-08-14T21:49:13.3747282Z inductor/test_inductor_utils 1/1 2025-08-14T21:49:13.3747576Z export/test_functionalized_assertions 1/1 2025-08-14T21:49:13.3747891Z inductor/test_indexing 1/1 2025-08-14T21:49:13.3748249Z inductor/test_debug_trace 1/1 2025-08-14T21:49:13.3748531Z inductor/test_async_compile 1/1 2025-08-14T21:49:13.3748819Z inductor/test_minifier_utils 1/1 2025-08-14T21:49:13.3749096Z export/test_tree_utils 1/1 2025-08-14T21:49:13.3749372Z inductor/test_combo_kernels 1/1 2025-08-14T21:49:13.3749644Z dynamo/test_functions 1/1 2025-08-14T21:49:13.3750011Z inductor/test_compile_worker 1/1 2025-08-14T21:49:13.3750286Z dynamo/test_base_output 1/1 2025-08-14T21:49:13.3750543Z inductor/test_utils 1/1 2025-08-14T21:49:13.3750876Z inductor/test_metrics 1/1 2025-08-14T21:49:13.3751281Z inductor/test_autoheuristic 1/1 2025-08-14T21:49:13.3751550Z dynamo/test_nops 1/1 2025-08-14T21:49:13.3751791Z inductor/test_cutlass_evt 1/1 2025-08-14T21:49:13.3752070Z inductor/test_codegen_triton 1/1 2025-08-14T21:49:13.3752357Z inductor/test_static_cuda_launcher 1/1 2025-08-14T21:49:13.3752657Z dynamo/test_resume 1/1 2025-08-14T21:49:13.3752900Z inductor/test_inplacing_pass 1/1 2025-08-14T21:49:13.3753208Z inductor/test_custom_post_grad_passes 1/1 2025-08-14T21:49:13.3753502Z export/test_tools 1/1 2025-08-14T21:49:13.3753741Z dynamo/test_subgraphs 1/1 2025-08-14T21:49:13.3753981Z test_custom_ops 1/1 2025-08-14T21:49:13.3754232Z inductor/test_block_analysis 1/1 2025-08-14T21:49:13.3754505Z inductor/test_profiler 1/1 2025-08-14T21:49:13.3754762Z dynamo/test_view 1/1 2025-08-14T21:49:13.3755011Z inductor/test_aot_inductor_utils 1/1 2025-08-14T21:49:13.3755301Z inductor/test_ordered_set 1/1 2025-08-14T21:49:13.3755575Z dynamo/test_dicts 1/1 2025-08-14T21:49:13.3755819Z dynamo/test_autograd_function 1/1 2025-08-14T21:49:13.3756214Z export/test_package 1/1 2025-08-14T21:49:13.3756469Z inductor/test_benchmarking 1/1 2025-08-14T21:49:13.3756759Z inductor/test_inductor_scheduler 1/1 2025-08-14T21:49:13.3757146Z dynamo/test_compile 1/1 2025-08-14T21:49:13.3757387Z export/test_db 1/1 2025-08-14T21:49:13.3757616Z dynamo/test_export_mutations 1/1 2025-08-14T21:49:13.3757915Z dynamo/test_graph_deduplication 1/1 2025-08-14T21:49:13.3758217Z dynamo/test_guard_serialization 1/1 2025-08-14T21:49:13.3758522Z inductor/test_split_cat_fx_aten_passes 1/1 2025-08-14T21:49:13.3758834Z export/test_passes 1/1 2025-08-14T21:49:13.3759076Z export/test_unflatten 1/1 2025-08-14T21:49:13.3759334Z export/test_swap 1/1 2025-08-14T21:49:13.3759567Z export/test_schema 1/1 2025-08-14T21:49:13.3759809Z dynamo/test_einops 1/1 2025-08-14T21:49:13.3760055Z inductor/test_minifier_isolate 1/1 2025-08-14T21:49:13.3760352Z dynamo/test_export 1/1 2025-08-14T21:49:13.3760589Z dynamo/test_base_hop 1/1 2025-08-14T21:49:13.3760915Z test_content_store 1/1 2025-08-14T21:49:13.3761169Z dynamo/test_optimizers 1/1 2025-08-14T21:49:13.3761431Z export/test_lift_unlift 1/1 2025-08-14T21:49:13.3761707Z dynamo/test_compiler_bisector 1/1 2025-08-14T21:49:13.3762007Z test_model_exports_to_core_aten 1/1 2025-08-14T21:49:13.3762402Z dynamo/test_input_attr_tracking 1/1 2025-08-14T21:49:13.3762691Z export/test_hop 1/1 2025-08-14T21:49:13.3762937Z export/test_converter 1/1 2025-08-14T21:49:13.3763288Z dynamo/test_callback 1/1 2025-08-14T21:49:13.3763546Z export/test_pass_infra 1/1 2025-08-14T21:49:13.3763808Z dynamo/test_aot_autograd_cache 1/1 2025-08-14T21:49:13.3764141Z dynamo/test_cudagraphs_expandable_segments 1/1 2025-08-14T21:49:13.3764487Z test_sparse_semi_structured 1/1 2025-08-14T21:49:13.3764765Z export/test_serialize 1/1 2025-08-14T21:49:13.3765032Z dynamo/test_torchrec 1/1 2025-08-14T21:49:13.3765273Z export/test_verifier 1/1 2025-08-14T21:49:13.3765597Z inductor/test_cudagraph_trees_expandable_segments 1/1 2025-08-14T21:49:13.3765952Z dynamo/test_generator 1/1 2025-08-14T21:49:13.3766217Z export/test_sparse 1/2 2025-08-14T21:49:13.3766465Z functorch/test_eager_transforms 1/1 2025-08-14T21:49:13.3766828Z export/test_draft_export 1/1 2025-08-14T21:49:13.3767101Z dynamo/test_comptime 1/1 2025-08-14T21:49:13.3767337Z test_testing 1/1 2025-08-14T21:49:13.3767557Z test_quantization 1/1 2025-08-14T21:49:13.3767791Z test_dynamic_shapes 1/1 2025-08-14T21:49:13.3768062Z higher_order_ops/test_invoke_subgraph 1/1 2025-08-14T21:49:13.3768357Z test_package 1/1 2025-08-14T21:49:13.3768690Z functorch/test_rearrange 1/1 2025-08-14T21:49:13.3768958Z functorch/test_parsing 1/1 2025-08-14T21:49:13.3769211Z test_hop_infra 1/1 2025-08-14T21:49:13.3769531Z test_comparison_utils 1/1 2025-08-14T21:49:13.3769917Z functorch/test_control_flow 1/1 2025-08-14T21:49:13.3770197Z functorch/test_ac_logging 1/1 2025-08-14T21:49:13.3770462Z test_mkl_verbose 1/1 2025-08-14T21:49:13.3770698Z test_autoload 1/1 2025-08-14T21:49:13.3770913Z test_proxy_tensor 1/2 2025-08-14T21:49:13.3771154Z test_ao_sparsity 1/1 2025-08-14T21:49:13.3771373Z test_license 1/1 2025-08-14T21:49:13.3771605Z torch_np/test_binary_ufuncs 1/1 2025-08-14T21:49:13.3771869Z xpu/test_fusion 1/1 2025-08-14T21:49:13.3772099Z torch_np/test_unary_ufuncs 1/1 2025-08-14T21:49:13.3772354Z test_foreach 1/1 2025-08-14T21:49:13.3772582Z test_expanded_weights 1/1 2025-08-14T21:49:13.3772841Z typing/test_python_operators 1/1 2025-08-14T21:49:13.3773131Z test_fx_experimental 1/1 2025-08-14T21:49:13.3773381Z test_file_check 1/1 2025-08-14T21:49:13.3773601Z torch_np/test_dtype 1/1 2025-08-14T21:49:13.3773879Z higher_order_ops/test_with_effects 1/1 2025-08-14T21:49:13.3774176Z test_native_functions 1/1 2025-08-14T21:49:13.3774437Z functorch/test_minifier 1/1 2025-08-14T21:49:13.3774691Z test_flop_counter 1/1 2025-08-14T21:49:13.3775042Z torch_np/test_nep50_examples 1/1 2025-08-14T21:49:13.3775332Z higher_order_ops/test_invoke_quant 1/1 2025-08-14T21:49:13.3775636Z test_per_overload_api 1/1 2025-08-14T21:49:13.3775995Z test_tensorexpr_pybind 1/1 2025-08-14T21:49:13.3776249Z test_pytree 1/1 2025-08-14T21:49:13.3776459Z test_fx_passes 1/1 2025-08-14T21:49:13.3776677Z test_module_tracker 1/1 2025-08-14T21:49:13.3776917Z test_typing 1/1 2025-08-14T21:49:13.3777112Z test_openmp 1/1 2025-08-14T21:49:13.3777401Z torch_np/numpy_tests/core/test_scalarinherit 1/1 2025-08-14T21:49:13.3777738Z functorch/test_ac_knapsack 1/1 2025-08-14T21:49:13.3778031Z backends/xeon/test_launch 1/1 2025-08-14T21:49:13.3778301Z test_nestedtensor 1/4 2025-08-14T21:49:13.3778537Z test_nestedtensor 3/4 2025-08-14T21:49:13.3778788Z test_nestedtensor 4/4 2025-08-14T21:49:13.3779007Z test_meta 2/5 2025-08-14T21:49:13.3779210Z test_meta 5/5 2025-08-14T21:49:13.3779487Z test_utils_filelock 1/1 2025-08-14T21:49:13.3779742Z torch_np/test_random 1/1 2025-08-14T21:49:13.3779995Z profiler/test_kineto 1/1 2025-08-14T21:49:13.3780262Z test_compile_benchmark_util 1/1 2025-08-14T21:49:13.3780528Z test_optim 1/1 2025-08-14T21:49:13.3780737Z test_decomp 1/17 2025-08-14T21:49:13.3780940Z test_decomp 4/17 2025-08-14T21:49:13.3781251Z test_decomp 6/17 2025-08-14T21:49:13.3781460Z test_decomp 7/17 2025-08-14T21:49:13.3781661Z test_decomp 11/17 2025-08-14T21:49:13.3781873Z test_decomp 13/17 2025-08-14T21:49:13.3782241Z test_decomp 14/17 2025-08-14T21:49:13.3782471Z xpu/test_conv 1/1 2025-08-14T21:49:13.3782683Z test_ops_jit 2/3 2025-08-14T21:49:13.3782896Z test_ops_jit 3/3 2025-08-14T21:49:13.3783119Z lazy/test_step_closures 1/1 2025-08-14T21:49:13.3783397Z test_ops_gradients 1/2 2025-08-14T21:49:13.3783648Z test_cuda_expandable_segments 1/1 2025-08-14T21:49:13.3783926Z test_ops 4/9 2025-08-14T21:49:13.3784122Z test_ops 5/9 2025-08-14T21:49:13.3784319Z test_ops 6/9 2025-08-14T21:49:13.3784679Z cpp_extensions/libtorch_agnostic_extension/test/test_libtorch_agnostic 1/1 2025-08-14T21:49:13.3785197Z functorch/test_ops 3/8 2025-08-14T21:49:13.3785449Z functorch/test_ops 4/8 2025-08-14T21:49:13.3785693Z functorch/test_ops 5/8 2025-08-14T21:49:13.3785950Z functorch/test_aotdispatch 4/7 2025-08-14T21:49:13.3786232Z functorch/test_aotdispatch 5/7 2025-08-14T21:49:13.3786519Z functorch/test_aotdispatch 6/7 2025-08-14T21:49:13.3786780Z test_accelerator 1/1 2025-08-14T21:49:13.3787026Z Name: excluded (est. time: 0.0min) 2025-08-14T21:49:13.3787278Z Serial tests (0): 2025-08-14T21:49:13.3787593Z Parallel tests (0): 2025-08-14T21:49:13.3811775Z Running inductor/test_extension_backend 1/1 ... [2025-08-14 21:49:13.380705] 2025-08-14T21:49:13.3813189Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:49:13.3824223Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_extension_backend.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:49:13.381954] 2025-08-14T21:49:13.3827509Z 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:49:13.3828338Z Ignoring disabled issues: [''] 2025-08-14T21:49:29.7179060Z 2025-08-14T21:49:29.7180318Z inductor/test_extension_backend 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_extension_backend_1.1_542ed2828888497b_.log 2025-08-14T21:49:29.7181087Z 2025-08-14T21:49:29.7185494Z Running inductor/test_torchbind 1/1 ... [2025-08-14 21:49:29.709796] 2025-08-14T21:49:29.7185909Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:49:29.7193033Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchbind.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:49:29.709796] 2025-08-14T21:49:29.7194310Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-14T21:49:29.7194983Z Uploading artifacts took 0.00 seconds 2025-08-14T21:49:40.1179678Z 2025-08-14T21:49:40.1180674Z inductor/test_torchbind 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchbind_1.1_7d29d4f0656db461_.log 2025-08-14T21:49:40.1181370Z 2025-08-14T21:49:40.1188586Z Running dynamo/test_trace_rules 1/1 ... [2025-08-14 21:49:40.118356] 2025-08-14T21:49:40.1189006Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:49:40.1195503Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_trace_rules.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:49:40.118356] 2025-08-14T21:49:44.7110122Z 2025-08-14T21:49:44.7111226Z dynamo/test_trace_rules 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_trace_rules_1.1_11cba9babfb16ef9_.log 2025-08-14T21:49:44.7111918Z 2025-08-14T21:49:44.7116029Z Running test_type_hints 1/1 ... [2025-08-14 21:49:44.707632] 2025-08-14T21:49:44.7116413Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:49:44.7122696Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_type_hints.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:49:44.707632] 2025-08-14T21:49:49.7767725Z 2025-08-14T21:49:49.7768566Z test_type_hints 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_type_hints_1.1_2976eedcae576bb0_.log 2025-08-14T21:49:49.7769344Z Running 0 items in this shard: 2025-08-14T21:49:49.7769527Z 2025-08-14T21:49:49.7775561Z Running test_public_bindings 1/1 ... [2025-08-14 21:49:49.772769] 2025-08-14T21:49:49.7776675Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:49:49.7782170Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_public_bindings.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:49:49.772769] 2025-08-14T21:49:54.4627126Z 2025-08-14T21:49:54.4628174Z test_public_bindings 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_public_bindings_1.1_5dfd9cc0b68197b1_.log 2025-08-14T21:49:54.4629916Z Running 0 items in this shard: 2025-08-14T21:49:54.4630112Z 2025-08-14T21:49:54.4633378Z Running test_cuda 1/1 ... [2025-08-14 21:49:54.461281] 2025-08-14T21:49:54.4641442Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:49:54.4643342Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_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 21:49:54.464020] 2025-08-14T21:50:01.5310080Z 2025-08-14T21:50:01.5311166Z test_cuda 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_1.1_d104d17d6e2a634c_.log 2025-08-14T21:50:01.5319548Z Running 26 items in this shard: test/test_cuda.py::TestCuda::test_cuda_kernel_loop_overflow, test/test_cuda.py::TestCuda::test_cuda_kernel_loop_overflow_large, test/test_cuda.py::TestCuda::test_get_per_process_memory_fraction, test/test_cuda.py::TestCuda::test_graph_cudnn_dropout, test/test_cuda.py::TestCuda::test_graph_make_graphed_callables_parameterless_nograd_module_with_amp_cache_disabled_allow_unused_input, test/test_cuda.py::TestCuda::test_graph_make_graphed_callables_parameterless_nograd_module_with_amp_cache_enabled_allow_unused_input, test/test_cuda.py::TestCuda::test_graph_make_graphed_callables_parameterless_nograd_module_without_amp_allow_unused_input, test/test_cuda.py::TestCuda::test_graph_make_graphed_callables_parameterless_nograd_module_without_amp_not_allow_unused_input, test/test_cuda.py::TestCuda::test_graph_make_graphed_callables_with_amp_cache_disabled_allow_unused_input, test/test_cuda.py::TestCuda::test_graph_make_graphed_callables_with_amp_cache_enabled_allow_unused_input, test/test_cuda.py::TestCuda::test_graph_make_graphed_callables_without_amp_allow_unused_input, test/test_cuda.py::TestCuda::test_graph_make_graphed_callables_without_amp_not_allow_unused_input, test/test_cuda.py::TestCuda::test_host_memory_stats, test/test_cuda.py::TestCuda::test_huge_index, test/test_cuda.py::TestCuda::test_max_large_axis, test/test_cuda.py::TestCuda::test_out_of_memory_retry, test/test_cuda.py::TestCuda::test_randint_generation_for_large_numel, test/test_cuda.py::TestCuda::test_repeat_graph_capture_cublas_workspace_memory, test/test_cuda.py::TestCuda::test_set_per_process_memory_fraction, test/test_cuda.py::TestCuda::test_to_non_blocking, test/test_cuda.py::TestCudaMallocAsync::test_garbage_collect_expandable, test/test_cuda.py::TestCudaMallocAsync::test_max_split_expandable, test/test_cuda.py::TestMemPool::test_mempool_ctx_multithread, test/test_cuda.py::TestMemPool::test_mempool_empty_cache_inactive, test/test_cuda.py::TestMemPool::test_mempool_limited_memory_with_allocator, test/test_cuda.py::TestCudaAutocast::test_autocast_cache_leak 2025-08-14T21:50:01.5327709Z 2025-08-14T21:50:01.5327877Z Running test_dataloader 1/2 ... [2025-08-14 21:50:01.517329] 2025-08-14T21:50:01.5328262Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:50:01.5329298Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_dataloader.py', '-m', 'serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:50:01.517329] 2025-08-14T21:50:07.2592243Z 2025-08-14T21:50:07.2593420Z test_dataloader 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_dataloader_1.2_fe37084ee3ff7dfc_.log 2025-08-14T21:50:07.2594318Z Running 0 items in this shard: 2025-08-14T21:50:07.2594499Z 2025-08-14T21:50:07.2598687Z Running inductor/test_torchinductor_codegen_dynamic_shapes 1/1 ... [2025-08-14 21:50:07.256672] 2025-08-14T21:50:07.2599223Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:50:07.2605801Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchinductor_codegen_dynamic_shapes.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:50:07.256672] 2025-08-14T21:50:18.4662762Z 2025-08-14T21:50:18.4664371Z inductor/test_torchinductor_codegen_dynamic_shapes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchinductor_codegen_dynamic_shapes_1.1_6e6e4fc133ec403c_.log 2025-08-14T21:50:18.4665456Z 2025-08-14T21:50:18.4669580Z Running inductor/test_cuda_repro 1/1 ... [2025-08-14 21:50:18.466831] 2025-08-14T21:50:18.4670057Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:50:18.4677523Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cuda_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:50:18.467564] 2025-08-14T21:50:28.9950373Z 2025-08-14T21:50:28.9951431Z inductor/test_cuda_repro 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cuda_repro_1.1_b9a0760cbfdca9f3_.log 2025-08-14T21:50:28.9952146Z 2025-08-14T21:50:28.9956240Z Running dynamo/test_unspec 1/1 ... [2025-08-14 21:50:28.994022] 2025-08-14T21:50:28.9956650Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:50:28.9963348Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_unspec.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:50:28.994022] 2025-08-14T21:50:34.3214140Z 2025-08-14T21:50:34.3215005Z dynamo/test_unspec 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_unspec_1.1_af7b4c1a4617b827_.log 2025-08-14T21:50:34.3222737Z 2025-08-14T21:50:34.3223001Z Running inductor/test_mkldnn_pattern_matcher 1/1 ... [2025-08-14 21:50:34.321771] 2025-08-14T21:50:34.3223588Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:50:34.3232843Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_mkldnn_pattern_matcher.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:50:34.322464] 2025-08-14T21:50:44.9122119Z 2025-08-14T21:50:44.9123412Z inductor/test_mkldnn_pattern_matcher 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_mkldnn_pattern_matcher_1.1_6542ae19ddc69c5e_.log 2025-08-14T21:50:44.9124218Z 2025-08-14T21:50:44.9128093Z Running inductor/test_compiled_optimizers 1/1 ... [2025-08-14 21:50:44.903523] 2025-08-14T21:50:44.9128569Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:50:44.9140591Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_compiled_optimizers.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:50:44.903523] 2025-08-14T21:50:56.9956755Z 2025-08-14T21:50:56.9957839Z inductor/test_compiled_optimizers 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_compiled_optimizers_1.1_f806546e35a800f4_.log 2025-08-14T21:50:56.9958787Z 2025-08-14T21:50:56.9962843Z Running inductor/test_coordinate_descent_tuner 1/1 ... [2025-08-14 21:50:56.983377] 2025-08-14T21:50:56.9963330Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:50:56.9969648Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_coordinate_descent_tuner.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:50:56.983377] 2025-08-14T21:51:07.5118836Z 2025-08-14T21:51:07.5120397Z inductor/test_coordinate_descent_tuner 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_coordinate_descent_tuner_1.1_d172ff8141bf6d80_.log 2025-08-14T21:51:07.5121254Z 2025-08-14T21:51:07.5124761Z Running inductor/test_dependencies 1/1 ... [2025-08-14 21:51:07.503528] 2025-08-14T21:51:07.5125218Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:51:07.5131662Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_dependencies.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:51:07.503528] 2025-08-14T21:51:18.1243626Z 2025-08-14T21:51:18.1244964Z inductor/test_dependencies 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_dependencies_1.1_6315d8d0d4265428_.log 2025-08-14T21:51:18.1245711Z 2025-08-14T21:51:18.1249539Z Running inductor/test_group_batch_fusion 1/1 ... [2025-08-14 21:51:18.123535] 2025-08-14T21:51:18.1250051Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:51:18.1256399Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_group_batch_fusion.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:51:18.123535] 2025-08-14T21:51:28.7523243Z 2025-08-14T21:51:28.7524267Z inductor/test_group_batch_fusion 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_group_batch_fusion_1.1_1bced883f54cc797_.log 2025-08-14T21:51:28.7525024Z 2025-08-14T21:51:28.7529304Z Running inductor/test_minifier 1/1 ... [2025-08-14 21:51:28.752838] 2025-08-14T21:51:28.7529729Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:51:28.7536398Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_minifier.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:51:28.753465] 2025-08-14T21:51:39.5161531Z 2025-08-14T21:51:39.5162725Z inductor/test_minifier 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_minifier_1.1_42b3e554d5e66eda_.log 2025-08-14T21:51:39.5163454Z 2025-08-14T21:51:39.5167362Z Running inductor/test_config 1/1 ... [2025-08-14 21:51:39.515722] 2025-08-14T21:51:39.5167784Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:51:39.5174425Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_config.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:51:39.515722] 2025-08-14T21:51:50.5097959Z 2025-08-14T21:51:50.5098865Z inductor/test_config 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_config_1.1_6faadb15517e9c2a_.log 2025-08-14T21:51:50.5099517Z 2025-08-14T21:51:50.5103869Z Running dynamo/test_higher_order_ops 1/1 ... [2025-08-14 21:51:50.497756] 2025-08-14T21:51:50.5104310Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:51:50.5110868Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_higher_order_ops.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:51:50.497756] 2025-08-14T21:52:02.1590947Z 2025-08-14T21:52:02.1591882Z dynamo/test_higher_order_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_higher_order_ops_1.1_4d3dd18477951335_.log 2025-08-14T21:52:02.1592599Z 2025-08-14T21:52:02.1596945Z Running dynamo/test_activation_checkpointing 1/1 ... [2025-08-14 21:52:02.156434] 2025-08-14T21:52:02.1597692Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:52:02.1608269Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_activation_checkpointing.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:52:02.156434] 2025-08-14T21:52:12.9422690Z 2025-08-14T21:52:12.9423898Z dynamo/test_activation_checkpointing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_activation_checkpointing_1.1_9ae108e56d68ea40_.log 2025-08-14T21:52:12.9424806Z 2025-08-14T21:52:12.9431406Z Running dynamo/test_misc 1/1 ... [2025-08-14 21:52:12.942455] 2025-08-14T21:52:12.9431848Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:52:12.9440084Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_misc.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:52:12.943609] 2025-08-14T21:52:19.9293177Z 2025-08-14T21:52:19.9294274Z dynamo/test_misc 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_misc_1.1_0446d6958636f8bd_.log 2025-08-14T21:52:19.9294887Z 2025-08-14T21:52:19.9299207Z Running dynamo/test_exc 1/1 ... [2025-08-14 21:52:19.928935] 2025-08-14T21:52:19.9299627Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:52:19.9306438Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_exc.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:52:19.930167] 2025-08-14T21:52:24.8866806Z 2025-08-14T21:52:24.8867960Z dynamo/test_exc 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_exc_1.1_eac75438066a6a4a_.log 2025-08-14T21:52:24.8868613Z 2025-08-14T21:52:24.8872686Z Running inductor/test_padding 1/1 ... [2025-08-14 21:52:24.871520] 2025-08-14T21:52:24.8873474Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:52:24.8879751Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_padding.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:52:24.887299] 2025-08-14T21:52:35.6411740Z 2025-08-14T21:52:35.6412716Z inductor/test_padding 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_padding_1.1_373ab4c19c2d9b28_.log 2025-08-14T21:52:35.6413496Z 2025-08-14T21:52:35.6417820Z Running inductor/test_halide 1/1 ... [2025-08-14 21:52:35.638677] 2025-08-14T21:52:35.6418446Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:52:35.6425443Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_halide.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:52:35.641854] 2025-08-14T21:52:46.4127349Z 2025-08-14T21:52:46.4128450Z inductor/test_halide 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_halide_1.1_5947c13eb019380f_.log 2025-08-14T21:52:46.4129292Z 2025-08-14T21:52:46.4133668Z Running inductor/test_cpu_select_algorithm 1/1 ... [2025-08-14 21:52:46.410824] 2025-08-14T21:52:46.4134139Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:52:46.4141017Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cpu_select_algorithm.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:52:46.410824] 2025-08-14T21:52:57.6447714Z 2025-08-14T21:52:57.6449305Z inductor/test_cpu_select_algorithm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cpu_select_algorithm_1.1_97558a67df3ff775_.log 2025-08-14T21:52:57.6450132Z 2025-08-14T21:52:57.6453935Z Running inductor/test_external_callables 1/1 ... [2025-08-14 21:52:57.637302] 2025-08-14T21:52:57.6454433Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:52:57.6461082Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_external_callables.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:52:57.637302] 2025-08-14T21:53:02.6024541Z 2025-08-14T21:53:02.6025860Z inductor/test_external_callables 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_external_callables_1.1_b91bec62a5927771_.log 2025-08-14T21:53:02.6026654Z 2025-08-14T21:53:02.6030575Z Running inductor/test_triton_syntax 1/1 ... [2025-08-14 21:53:02.601177] 2025-08-14T21:53:02.6031026Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:53:02.6037678Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_triton_syntax.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:53:02.601177] 2025-08-14T21:53:13.4480735Z 2025-08-14T21:53:13.4481999Z inductor/test_triton_syntax 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_triton_syntax_1.1_27d6e5891a0cdebb_.log 2025-08-14T21:53:13.4482755Z 2025-08-14T21:53:13.4486708Z Running inductor/test_pad_mm 1/1 ... [2025-08-14 21:53:13.440572] 2025-08-14T21:53:13.4487166Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:53:13.4493444Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_pad_mm.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:53:13.440572] 2025-08-14T21:53:24.0231912Z 2025-08-14T21:53:24.0233222Z inductor/test_pad_mm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_pad_mm_1.1_84d9d838ee6b4a53_.log 2025-08-14T21:53:24.0235179Z 2025-08-14T21:53:24.0238453Z Running export/test_export 1/1 ... [2025-08-14 21:53:24.023395] 2025-08-14T21:53:24.0238912Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:53:24.0245239Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_export.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:53:24.024036] 2025-08-14T21:53:35.2863980Z 2025-08-14T21:53:35.2864936Z export/test_export 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_export_1.1_c37457de5f0d4607_.log 2025-08-14T21:53:35.2865708Z Running 0 items in this shard: 2025-08-14T21:53:35.2865896Z 2025-08-14T21:53:35.2870116Z Running inductor/test_memory 1/1 ... [2025-08-14 21:53:35.285249] 2025-08-14T21:53:35.2870530Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:53:35.2876822Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_memory.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:53:35.285249] 2025-08-14T21:53:46.4019160Z 2025-08-14T21:53:46.4020366Z inductor/test_memory 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_memory_1.1_398d3b582e1933ba_.log 2025-08-14T21:53:46.4021052Z 2025-08-14T21:53:46.4025310Z Running inductor/test_triton_extension_backend 1/1 ... [2025-08-14 21:53:46.401327] 2025-08-14T21:53:46.4025825Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:53:46.4032519Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_triton_extension_backend.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:53:46.401327] 2025-08-14T21:53:57.5674876Z 2025-08-14T21:53:57.5675927Z inductor/test_triton_extension_backend 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_triton_extension_backend_1.1_b470753dbf39b751_.log 2025-08-14T21:53:57.5676762Z 2025-08-14T21:53:57.5683762Z Running inductor/test_analysis 1/1 ... [2025-08-14 21:53:57.567840] 2025-08-14T21:53:57.5684192Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:53:57.5693729Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_analysis.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:53:57.569064] 2025-08-14T21:54:08.5409225Z 2025-08-14T21:54:08.5410553Z inductor/test_analysis 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_analysis_1.1_534bbb503afd635e_.log 2025-08-14T21:54:08.5411481Z Running 0 items in this shard: 2025-08-14T21:54:08.5411669Z 2025-08-14T21:54:08.5416211Z Running inductor/test_inductor_utils 1/1 ... [2025-08-14 21:54:08.541296] 2025-08-14T21:54:08.5416687Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:54:08.5422692Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_inductor_utils.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:54:08.541296] 2025-08-14T21:54:13.2548618Z 2025-08-14T21:54:13.2549893Z inductor/test_inductor_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_inductor_utils_1.1_8928516253bb5788_.log 2025-08-14T21:54:13.2550876Z 2025-08-14T21:54:13.2555185Z Running export/test_functionalized_assertions 1/1 ... [2025-08-14 21:54:13.255117] 2025-08-14T21:54:13.2555738Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:54:13.2571787Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_functionalized_assertions.py', '-m', 'serial', '--shard-id=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:54:13.256385] 2025-08-14T21:54:18.0687172Z 2025-08-14T21:54:18.0688474Z export/test_functionalized_assertions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_functionalized_assertions_1.1_93c186a06ba3cde9_.log 2025-08-14T21:54:18.0689443Z Running 0 items in this shard: 2025-08-14T21:54:18.0689636Z 2025-08-14T21:54:18.0693515Z Running inductor/test_indexing 1/1 ... [2025-08-14 21:54:18.059943] 2025-08-14T21:54:18.0693942Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:54:18.0700145Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_indexing.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:54:18.059943] 2025-08-14T21:54:28.9531924Z 2025-08-14T21:54:28.9533268Z inductor/test_indexing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_indexing_1.1_80265a516bce6026_.log 2025-08-14T21:54:28.9533953Z 2025-08-14T21:54:28.9538009Z Running inductor/test_debug_trace 1/1 ... [2025-08-14 21:54:28.953196] 2025-08-14T21:54:28.9538543Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:54:28.9545450Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_debug_trace.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:54:28.953837] 2025-08-14T21:54:39.5700525Z 2025-08-14T21:54:39.5701817Z inductor/test_debug_trace 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_debug_trace_1.1_af6c318e3a715206_.log 2025-08-14T21:54:39.5702532Z 2025-08-14T21:54:39.5706907Z Running inductor/test_async_compile 1/1 ... [2025-08-14 21:54:39.570088] 2025-08-14T21:54:39.5707456Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:54:39.5713876Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_async_compile.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:54:39.570717] 2025-08-14T21:54:50.1473057Z 2025-08-14T21:54:50.1474089Z inductor/test_async_compile 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_async_compile_1.1_6460b333b3ec817f_.log 2025-08-14T21:54:50.1474830Z 2025-08-14T21:54:50.1481081Z Running inductor/test_minifier_utils 1/1 ... [2025-08-14 21:54:50.147599] 2025-08-14T21:54:50.1481593Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:54:50.1512331Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_minifier_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 21:54:50.150850] 2025-08-14T21:54:55.5469570Z 2025-08-14T21:54:55.5470521Z inductor/test_minifier_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_minifier_utils_1.1_e6a0a7d1a7cc8c91_.log 2025-08-14T21:54:55.5471410Z Running 0 items in this shard: 2025-08-14T21:54:55.5471597Z 2025-08-14T21:54:55.5476271Z Running export/test_tree_utils 1/1 ... [2025-08-14 21:54:55.547476] 2025-08-14T21:54:55.5476957Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:54:55.5561566Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_tree_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 21:54:55.547678] 2025-08-14T21:55:00.1834421Z 2025-08-14T21:55:00.1835633Z export/test_tree_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_tree_utils_1.1_dfd05e76e6367205_.log 2025-08-14T21:55:00.1836524Z Running 0 items in this shard: 2025-08-14T21:55:00.1836764Z 2025-08-14T21:55:00.1843637Z Running inductor/test_combo_kernels 1/1 ... [2025-08-14 21:55:00.183740] 2025-08-14T21:55:00.1844120Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:55:00.1850633Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_combo_kernels.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:55:00.183740] 2025-08-14T21:55:10.9238047Z 2025-08-14T21:55:10.9239032Z inductor/test_combo_kernels 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_combo_kernels_1.1_c518bc8f36b8a411_.log 2025-08-14T21:55:10.9244164Z 2025-08-14T21:55:10.9244397Z Running dynamo/test_functions 1/1 ... [2025-08-14 21:55:10.924224] 2025-08-14T21:55:10.9244824Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:55:10.9251820Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_functions.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:55:10.924860] 2025-08-14T21:55:21.4274593Z 2025-08-14T21:55:21.4275514Z dynamo/test_functions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_functions_1.1_64f2c5138d7fff75_.log 2025-08-14T21:55:21.4276201Z 2025-08-14T21:55:21.4281178Z Running inductor/test_compile_worker 1/1 ... [2025-08-14 21:55:21.425021] 2025-08-14T21:55:21.4281672Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:55:21.4289700Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_compile_worker.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:55:21.428176] 2025-08-14T21:55:32.3515246Z 2025-08-14T21:55:32.3516281Z inductor/test_compile_worker 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_compile_worker_1.1_8cf021784798eb79_.log 2025-08-14T21:55:32.3517022Z 2025-08-14T21:55:32.3523418Z Running dynamo/test_base_output 1/1 ... [2025-08-14 21:55:32.351793] 2025-08-14T21:55:32.3523967Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:55:32.3534353Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_base_output.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:55:32.353080] 2025-08-14T21:55:37.1902281Z 2025-08-14T21:55:37.1903572Z dynamo/test_base_output 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_base_output_1.1_0dcf26cde4eaf0b7_.log 2025-08-14T21:55:37.1904255Z 2025-08-14T21:55:37.1912730Z Running inductor/test_utils 1/1 ... [2025-08-14 21:55:37.190948] 2025-08-14T21:55:37.1913156Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:55:37.1921846Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/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 21:55:37.191589] 2025-08-14T21:55:42.3190411Z 2025-08-14T21:55:42.3191470Z inductor/test_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_utils_1.1_ea1d8e6b7efeaf9b_.log 2025-08-14T21:55:42.3192256Z Running 0 items in this shard: 2025-08-14T21:55:42.3192442Z 2025-08-14T21:55:42.3197049Z Running inductor/test_metrics 1/1 ... [2025-08-14 21:55:42.316417] 2025-08-14T21:55:42.3197518Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:55:42.3203575Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_metrics.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:55:42.316417] 2025-08-14T21:55:52.9523640Z 2025-08-14T21:55:52.9524867Z inductor/test_metrics 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_metrics_1.1_5678b2b2cf7e6f41_.log 2025-08-14T21:55:52.9525893Z 2025-08-14T21:55:52.9530119Z Running inductor/test_autoheuristic 1/1 ... [2025-08-14 21:55:52.952532] 2025-08-14T21:55:52.9530745Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:55:52.9537100Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_autoheuristic.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:55:52.953165] 2025-08-14T21:56:03.5100171Z 2025-08-14T21:56:03.5101390Z inductor/test_autoheuristic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_autoheuristic_1.1_2bd62eecc3fef490_.log 2025-08-14T21:56:03.5102411Z 2025-08-14T21:56:03.5106242Z Running dynamo/test_nops 1/1 ... [2025-08-14 21:56:03.507273] 2025-08-14T21:56:03.5106675Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:56:03.5112922Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_nops.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:56:03.507273] 2025-08-14T21:56:08.3563492Z 2025-08-14T21:56:08.3564375Z dynamo/test_nops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_nops_1.1_b92cf364bc4c5d7a_.log 2025-08-14T21:56:08.3565009Z 2025-08-14T21:56:08.3569451Z Running inductor/test_cutlass_evt 1/1 ... [2025-08-14 21:56:08.349826] 2025-08-14T21:56:08.3569898Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:56:08.3576496Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cutlass_evt.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:56:08.349826] 2025-08-14T21:56:19.0980051Z 2025-08-14T21:56:19.0981132Z inductor/test_cutlass_evt 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cutlass_evt_1.1_2c35f436499cbd98_.log 2025-08-14T21:56:19.0981865Z 2025-08-14T21:56:19.0986405Z Running inductor/test_codegen_triton 1/1 ... [2025-08-14 21:56:19.098515] 2025-08-14T21:56:19.0986854Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:56:19.0998430Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_codegen_triton.py', '-m', 'serial', '--shard-id=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:19.098515] 2025-08-14T21:56:29.7502494Z 2025-08-14T21:56:29.7503488Z inductor/test_codegen_triton 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_codegen_triton_1.1_19a965c76786dee7_.log 2025-08-14T21:56:29.7508430Z 2025-08-14T21:56:29.7508973Z Running inductor/test_static_cuda_launcher 1/1 ... [2025-08-14 21:56:29.750711] 2025-08-14T21:56:29.7509501Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:56:29.7516658Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_static_cuda_launcher.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:56:29.751391] 2025-08-14T21:56:40.4013775Z 2025-08-14T21:56:40.4015089Z inductor/test_static_cuda_launcher 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_static_cuda_launcher_1.1_c5c90e17f585d623_.log 2025-08-14T21:56:40.4015882Z 2025-08-14T21:56:40.4019810Z Running dynamo/test_resume 1/1 ... [2025-08-14 21:56:40.395443] 2025-08-14T21:56:40.4020236Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:56:40.4026370Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_resume.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:56:40.395443] 2025-08-14T21:56:45.0007661Z 2025-08-14T21:56:45.0008632Z dynamo/test_resume 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_resume_1.1_8f45c40ab6180be0_.log 2025-08-14T21:56:45.0009374Z 2025-08-14T21:56:45.0014630Z Running inductor/test_inplacing_pass 1/1 ... [2025-08-14 21:56:45.001338] 2025-08-14T21:56:45.0015200Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:56:45.0022798Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_inplacing_pass.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:56:45.002074] 2025-08-14T21:56:55.5535754Z 2025-08-14T21:56:55.5537089Z inductor/test_inplacing_pass 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_inplacing_pass_1.1_7df15fa513bbafdb_.log 2025-08-14T21:56:55.5537894Z 2025-08-14T21:56:55.5540678Z Running inductor/test_custom_post_grad_passes 1/1 ... [2025-08-14 21:56:55.553439] 2025-08-14T21:56:55.5541283Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:56:55.5549158Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_custom_post_grad_passes.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:56:55.554624] 2025-08-14T21:57:06.2726537Z 2025-08-14T21:57:06.2727948Z inductor/test_custom_post_grad_passes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_custom_post_grad_passes_1.1_0d2ae03379e30f86_.log 2025-08-14T21:57:06.2728774Z 2025-08-14T21:57:06.2732371Z Running export/test_tools 1/1 ... [2025-08-14 21:57:06.268156] 2025-08-14T21:57:06.2732793Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:57:06.2739445Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_tools.py', '-m', 'serial', '--shard-id=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:06.268156] 2025-08-14T21:57:11.3418633Z 2025-08-14T21:57:11.3419739Z export/test_tools 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_tools_1.1_d1b768345e1f130b_.log 2025-08-14T21:57:11.3420628Z Running 0 items in this shard: 2025-08-14T21:57:11.3420832Z 2025-08-14T21:57:11.3430436Z Running dynamo/test_subgraphs 1/1 ... [2025-08-14 21:57:11.342882] 2025-08-14T21:57:11.3430880Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:57:11.3440182Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_subgraphs.py', '-m', 'serial', '--shard-id=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:11.343599] 2025-08-14T21:57:16.1496269Z 2025-08-14T21:57:16.1497383Z dynamo/test_subgraphs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_subgraphs_1.1_1d6d99debe4cbc66_.log 2025-08-14T21:57:16.1498085Z 2025-08-14T21:57:16.1502573Z Running test_custom_ops 1/1 ... [2025-08-14 21:57:16.150054] 2025-08-14T21:57:16.1502989Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:57:16.1509787Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_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:57:16.150697] 2025-08-14T21:57:22.3195357Z 2025-08-14T21:57:22.3196575Z test_custom_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_custom_ops_1.1_1f4e04e5aa83aa78_.log 2025-08-14T21:57:22.3197471Z Running 0 items in this shard: 2025-08-14T21:57:22.3197674Z 2025-08-14T21:57:22.3201507Z Running inductor/test_block_analysis 1/1 ... [2025-08-14 21:57:22.319277] 2025-08-14T21:57:22.3201978Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:57:22.3208938Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_block_analysis.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:57:22.320471] 2025-08-14T21:57:33.0521923Z 2025-08-14T21:57:33.0523257Z inductor/test_block_analysis 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_block_analysis_1.1_587323072adc79d4_.log 2025-08-14T21:57:33.0524184Z Running 0 items in this shard: 2025-08-14T21:57:33.0528675Z 2025-08-14T21:57:33.0529116Z Running inductor/test_profiler 1/1 ... [2025-08-14 21:57:33.048796] 2025-08-14T21:57:33.0529646Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:57:33.0535791Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_profiler.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:57:33.048796] 2025-08-14T21:57:43.6491164Z 2025-08-14T21:57:43.6492116Z inductor/test_profiler 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_profiler_1.1_ed8dc492cd03617b_.log 2025-08-14T21:57:43.6492812Z 2025-08-14T21:57:43.6499926Z Running dynamo/test_view 1/1 ... [2025-08-14 21:57:43.649821] 2025-08-14T21:57:43.6500345Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:57:43.6511568Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_view.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:57:43.649821] 2025-08-14T21:57:48.3338119Z 2025-08-14T21:57:48.3339055Z dynamo/test_view 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_view_1.1_ee9b8a0478287997_.log 2025-08-14T21:57:48.3339685Z 2025-08-14T21:57:48.3344131Z Running inductor/test_aot_inductor_utils 1/1 ... [2025-08-14 21:57:48.331718] 2025-08-14T21:57:48.3344622Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:57:48.3351055Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_aot_inductor_utils.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:57:48.331718] 2025-08-14T21:57:59.2658739Z 2025-08-14T21:57:59.2659739Z inductor/test_aot_inductor_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_aot_inductor_utils_1.1_52433ffef075e15e_.log 2025-08-14T21:57:59.2660771Z Running 0 items in this shard: 2025-08-14T21:57:59.2661070Z 2025-08-14T21:57:59.2665351Z Running inductor/test_ordered_set 1/1 ... [2025-08-14 21:57:59.266174] 2025-08-14T21:57:59.2665841Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:57:59.2673083Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_ordered_set.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:57:59.266819] 2025-08-14T21:58:03.8818120Z 2025-08-14T21:58:03.8819485Z inductor/test_ordered_set 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_ordered_set_1.1_4039d7a80084fcab_.log 2025-08-14T21:58:03.8824233Z 2025-08-14T21:58:03.8824540Z Running dynamo/test_dicts 1/1 ... [2025-08-14 21:58:03.882350] 2025-08-14T21:58:03.8825162Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:58:03.8831347Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_dicts.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:58:03.882423] 2025-08-14T21:58:08.9613422Z 2025-08-14T21:58:08.9614750Z dynamo/test_dicts 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_dicts_1.1_59229a71a5236455_.log 2025-08-14T21:58:08.9620280Z 2025-08-14T21:58:08.9621105Z Running dynamo/test_autograd_function 1/1 ... [2025-08-14 21:58:08.961913] 2025-08-14T21:58:08.9621701Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:58:08.9627446Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_autograd_function.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:58:08.962204] 2025-08-14T21:58:19.5387615Z 2025-08-14T21:58:19.5388751Z dynamo/test_autograd_function 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_autograd_function_1.1_830eacb5ea5b7b07_.log 2025-08-14T21:58:19.5389541Z 2025-08-14T21:58:19.5393500Z Running export/test_package 1/1 ... [2025-08-14 21:58:19.538478] 2025-08-14T21:58:19.5395770Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:58:19.5400665Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_package.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:58:19.538478] 2025-08-14T21:58:24.1463858Z 2025-08-14T21:58:24.1464793Z export/test_package 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_package_1.1_8193602f3ca16ff4_.log 2025-08-14T21:58:24.1465596Z Running 0 items in this shard: 2025-08-14T21:58:24.1465821Z 2025-08-14T21:58:24.1470209Z Running inductor/test_benchmarking 1/1 ... [2025-08-14 21:58:24.143027] 2025-08-14T21:58:24.1470672Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:58:24.1477063Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_benchmarking.py', '-m', 'serial', '--shard-id=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:24.143027] 2025-08-14T21:58:34.5974793Z 2025-08-14T21:58:34.5975922Z inductor/test_benchmarking 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_benchmarking_1.1_10cfb1f5d43a6dd0_.log 2025-08-14T21:58:34.5976873Z 2025-08-14T21:58:34.5980971Z Running inductor/test_inductor_scheduler 1/1 ... [2025-08-14 21:58:34.590285] 2025-08-14T21:58:34.5981461Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:58:34.5988009Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_inductor_scheduler.py', '-m', 'serial', '--shard-id=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.590285] 2025-08-14T21:58:45.3936560Z 2025-08-14T21:58:45.3937949Z inductor/test_inductor_scheduler 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_inductor_scheduler_1.1_3e32316a821fa2ea_.log 2025-08-14T21:58:45.3938983Z Running 0 items in this shard: 2025-08-14T21:58:45.3939276Z 2025-08-14T21:58:45.3943770Z Running dynamo/test_compile 1/1 ... [2025-08-14 21:58:45.394213] 2025-08-14T21:58:45.3944261Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:58:45.3951602Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_compile.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:58:45.394955] 2025-08-14T21:58:50.1772323Z 2025-08-14T21:58:50.1773246Z dynamo/test_compile 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_compile_1.1_438ae17522c2b594_.log 2025-08-14T21:58:50.1774010Z 2025-08-14T21:58:50.1781399Z Running export/test_db 1/1 ... [2025-08-14 21:58:50.177591] 2025-08-14T21:58:50.1781932Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:58:50.1791198Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_db.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:58:50.178298] 2025-08-14T21:58:54.9021823Z 2025-08-14T21:58:54.9022942Z export/test_db 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_db_1.1_9352fd104d8a7426_.log 2025-08-14T21:58:54.9023794Z Running 0 items in this shard: 2025-08-14T21:58:54.9029014Z 2025-08-14T21:58:54.9029362Z Running dynamo/test_export_mutations 1/1 ... [2025-08-14 21:58:54.902828] 2025-08-14T21:58:54.9029955Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:58:54.9036960Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_export_mutations.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:58:54.903500] 2025-08-14T21:58:59.9376188Z 2025-08-14T21:58:59.9377201Z dynamo/test_export_mutations 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_export_mutations_1.1_b2c551d62605e589_.log 2025-08-14T21:58:59.9377957Z 2025-08-14T21:58:59.9382524Z Running dynamo/test_graph_deduplication 1/1 ... [2025-08-14 21:58:59.938154] 2025-08-14T21:58:59.9383120Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:58:59.9389578Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_graph_deduplication.py', '-m', 'serial', '--shard-id=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:59.938259] 2025-08-14T21:59:04.8814335Z 2025-08-14T21:59:04.8815647Z dynamo/test_graph_deduplication 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_graph_deduplication_1.1_f1cf9b0954883f9b_.log 2025-08-14T21:59:04.8816463Z 2025-08-14T21:59:04.8820686Z Running dynamo/test_guard_serialization 1/1 ... [2025-08-14 21:59:04.880281] 2025-08-14T21:59:04.8821224Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:59:04.8827470Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_guard_serialization.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:59:04.880281] 2025-08-14T21:59:15.3443359Z 2025-08-14T21:59:15.3444386Z dynamo/test_guard_serialization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_guard_serialization_1.1_ddacc149809e86cc_.log 2025-08-14T21:59:15.3445277Z 2025-08-14T21:59:15.3452128Z Running inductor/test_split_cat_fx_aten_passes 1/1 ... [2025-08-14 21:59:15.344614] 2025-08-14T21:59:15.3452632Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:59:15.3462621Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_split_cat_fx_aten_passes.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:59:15.345832] 2025-08-14T21:59:26.3252326Z 2025-08-14T21:59:26.3253704Z inductor/test_split_cat_fx_aten_passes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_split_cat_fx_aten_passes_1.1_b88b7c5bbcb74e8b_.log 2025-08-14T21:59:26.3254712Z 2025-08-14T21:59:26.3258214Z Running export/test_passes 1/1 ... [2025-08-14 21:59:26.322883] 2025-08-14T21:59:26.3258666Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:59:26.3265001Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_passes.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:59:26.322883] 2025-08-14T21:59:32.6547585Z 2025-08-14T21:59:32.6548586Z export/test_passes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_passes_1.1_e59ad58e8806a3d9_.log 2025-08-14T21:59:32.6549365Z Running 0 items in this shard: 2025-08-14T21:59:32.6549596Z 2025-08-14T21:59:32.6557531Z Running export/test_unflatten 1/1 ... [2025-08-14 21:59:32.655481] 2025-08-14T21:59:32.6558014Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:59:32.6566777Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_unflatten.py', '-m', 'serial', '--shard-id=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:32.656131] 2025-08-14T21:59:37.3475285Z 2025-08-14T21:59:37.3476465Z export/test_unflatten 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_unflatten_1.1_39a36ec63994561f_.log 2025-08-14T21:59:37.3477322Z Running 0 items in this shard: 2025-08-14T21:59:37.3477518Z 2025-08-14T21:59:37.3482000Z Running export/test_swap 1/1 ... [2025-08-14 21:59:37.348052] 2025-08-14T21:59:37.3482556Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:59:37.3489289Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_swap.py', '-m', 'serial', '--shard-id=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:37.348744] 2025-08-14T21:59:42.0050789Z 2025-08-14T21:59:42.0051973Z export/test_swap 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_swap_1.1_9cf4b63d1ba4d580_.log 2025-08-14T21:59:42.0052742Z Running 0 items in this shard: 2025-08-14T21:59:42.0052940Z 2025-08-14T21:59:42.0057208Z Running export/test_schema 1/1 ... [2025-08-14 21:59:42.005384] 2025-08-14T21:59:42.0057663Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:59:42.0064167Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_schema.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:59:42.006008] 2025-08-14T21:59:46.7356972Z 2025-08-14T21:59:46.7357990Z export/test_schema 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_schema_1.1_1b57aec3da4a772d_.log 2025-08-14T21:59:46.7358790Z Running 0 items in this shard: 2025-08-14T21:59:46.7358983Z 2025-08-14T21:59:46.7363287Z Running dynamo/test_einops 1/1 ... [2025-08-14 21:59:46.732784] 2025-08-14T21:59:46.7363717Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:59:46.7375515Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_einops.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:59:46.732784] 2025-08-14T21:59:51.4003594Z 2025-08-14T21:59:51.4004684Z dynamo/test_einops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_einops_1.1_8fffacf15e10aae3_.log 2025-08-14T21:59:51.4005453Z 2025-08-14T21:59:51.4013654Z Running inductor/test_minifier_isolate 1/1 ... [2025-08-14 21:59:51.401102] 2025-08-14T21:59:51.4014329Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T21:59:51.4023087Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_minifier_isolate.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 21:59:51.401752] 2025-08-14T22:00:02.1162165Z 2025-08-14T22:00:02.1163855Z inductor/test_minifier_isolate 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_minifier_isolate_1.1_5d746c75e072401a_.log 2025-08-14T22:00:02.1164750Z 2025-08-14T22:00:02.1169108Z Running dynamo/test_export 1/1 ... [2025-08-14 22:00:02.116713] 2025-08-14T22:00:02.1169750Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:00:02.1176110Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_export.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:00:02.116992] 2025-08-14T22:00:07.7920810Z 2025-08-14T22:00:07.7922047Z dynamo/test_export 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_export_1.1_ded3a17726ed5b87_.log 2025-08-14T22:00:07.7922697Z 2025-08-14T22:00:07.7926963Z Running dynamo/test_base_hop 1/1 ... [2025-08-14 22:00:07.791873] 2025-08-14T22:00:07.7927453Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:00:07.7936656Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_base_hop.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:00:07.793089] 2025-08-14T22:00:12.8793361Z 2025-08-14T22:00:12.8794517Z dynamo/test_base_hop 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_base_hop_1.1_d215c1f62273cfd0_.log 2025-08-14T22:00:12.8795229Z 2025-08-14T22:00:12.8799390Z Running test_content_store 1/1 ... [2025-08-14 22:00:12.878730] 2025-08-14T22:00:12.8799846Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:00:12.8806529Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_content_store.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:00:12.880452] 2025-08-14T22:00:18.0816114Z 2025-08-14T22:00:18.0817164Z test_content_store 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_content_store_1.1_e2307888448179ed_.log 2025-08-14T22:00:18.0818095Z Running 0 items in this shard: 2025-08-14T22:00:18.0818291Z 2025-08-14T22:00:18.0822510Z Running dynamo/test_optimizers 1/1 ... [2025-08-14 22:00:18.077662] 2025-08-14T22:00:18.0823031Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:00:18.0829382Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_optimizers.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:00:18.077662] 2025-08-14T22:00:23.2107639Z 2025-08-14T22:00:23.2108669Z dynamo/test_optimizers 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_optimizers_1.1_1fb00d6edceded24_.log 2025-08-14T22:00:23.2109403Z 2025-08-14T22:00:23.2113670Z Running export/test_lift_unlift 1/1 ... [2025-08-14 22:00:23.207729] 2025-08-14T22:00:23.2114118Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:00:23.2120848Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_lift_unlift.py', '-m', 'serial', '--shard-id=1', '--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:23.207729] 2025-08-14T22:00:28.0758521Z 2025-08-14T22:00:28.0759510Z export/test_lift_unlift 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_lift_unlift_1.1_3a58541edcccebf8_.log 2025-08-14T22:00:28.0760560Z Running 0 items in this shard: 2025-08-14T22:00:28.0760765Z 2025-08-14T22:00:28.0765512Z Running dynamo/test_compiler_bisector 1/1 ... [2025-08-14 22:00:28.076411] 2025-08-14T22:00:28.0766110Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:00:28.0774001Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_compiler_bisector.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:00:28.077106] 2025-08-14T22:00:38.7588135Z 2025-08-14T22:00:38.7589236Z dynamo/test_compiler_bisector 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_compiler_bisector_1.1_6c889c6e602ead8b_.log 2025-08-14T22:00:38.7594069Z 2025-08-14T22:00:38.7594521Z Running test_model_exports_to_core_aten 1/1 ... [2025-08-14 22:00:38.757554] 2025-08-14T22:00:38.7595059Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:00:38.7600845Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_model_exports_to_core_aten.py', '-m', 'serial', '--shard-id=1', '--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:38.757554] 2025-08-14T22:00:43.7509301Z 2025-08-14T22:00:43.7520223Z test_model_exports_to_core_aten 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_model_exports_to_core_aten_1.1_d5cda280f7938cca_.log 2025-08-14T22:00:43.7521189Z Running 0 items in this shard: 2025-08-14T22:00:43.7521420Z 2025-08-14T22:00:43.7521677Z Running dynamo/test_input_attr_tracking 1/1 ... [2025-08-14 22:00:43.743040] 2025-08-14T22:00:43.7525862Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:00:43.7527046Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_input_attr_tracking.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:00:43.743040] 2025-08-14T22:00:48.7136946Z 2025-08-14T22:00:48.7138103Z dynamo/test_input_attr_tracking 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_input_attr_tracking_1.1_7281d60cdf81c4f4_.log 2025-08-14T22:00:48.7138869Z 2025-08-14T22:00:48.7142822Z Running export/test_hop 1/1 ... [2025-08-14 22:00:48.713176] 2025-08-14T22:00:48.7143433Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:00:48.7149716Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_hop.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:00:48.713176] 2025-08-14T22:00:54.8546726Z 2025-08-14T22:00:54.8547863Z export/test_hop 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_hop_1.1_8d9b6c54da9c33ed_.log 2025-08-14T22:00:54.8548650Z Running 0 items in this shard: 2025-08-14T22:00:54.8552980Z 2025-08-14T22:00:54.8553202Z Running export/test_converter 1/1 ... [2025-08-14 22:00:54.854716] 2025-08-14T22:00:54.8553798Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:00:54.8560388Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_converter.py', '-m', 'serial', '--shard-id=1', '--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:54.855414] 2025-08-14T22:01:00.1568866Z 2025-08-14T22:01:00.1570500Z export/test_converter 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_converter_1.1_2f179f1e0d92cf09_.log 2025-08-14T22:01:00.1571372Z Running 0 items in this shard: 2025-08-14T22:01:00.1571573Z 2025-08-14T22:01:00.1575162Z Running dynamo/test_callback 1/1 ... [2025-08-14 22:01:00.151049] 2025-08-14T22:01:00.1575697Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:01:00.1583174Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_callback.py', '-m', 'serial', '--shard-id=1', '--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:00.151049] 2025-08-14T22:01:11.1868931Z 2025-08-14T22:01:11.1870250Z dynamo/test_callback 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_callback_1.1_e9d8ca3eb2360946_.log 2025-08-14T22:01:11.1871044Z 2025-08-14T22:01:11.1875131Z Running export/test_pass_infra 1/1 ... [2025-08-14 22:01:11.187032] 2025-08-14T22:01:11.1875589Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:01:11.1882649Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_pass_infra.py', '-m', 'serial', '--shard-id=1', '--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:11.187661] 2025-08-14T22:01:15.9225788Z 2025-08-14T22:01:15.9226822Z export/test_pass_infra 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_pass_infra_1.1_80364372446a2132_.log 2025-08-14T22:01:15.9227631Z Running 0 items in this shard: 2025-08-14T22:01:15.9227859Z 2025-08-14T22:01:15.9232015Z Running dynamo/test_aot_autograd_cache 1/1 ... [2025-08-14 22:01:15.910734] 2025-08-14T22:01:15.9232514Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:01:15.9238858Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_aot_autograd_cache.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:01:15.910734] 2025-08-14T22:01:26.4927190Z 2025-08-14T22:01:26.4928270Z dynamo/test_aot_autograd_cache 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_aot_autograd_cache_1.1_3e42f42ef6835d11_.log 2025-08-14T22:01:26.4929049Z 2025-08-14T22:01:26.4933083Z Running dynamo/test_cudagraphs_expandable_segments 1/1 ... [2025-08-14 22:01:26.489880] 2025-08-14T22:01:26.4933702Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:01:26.4940119Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_cudagraphs_expandable_segments.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:01:26.489880] 2025-08-14T22:01:31.9204121Z 2025-08-14T22:01:31.9205518Z dynamo/test_cudagraphs_expandable_segments 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_cudagraphs_expandable_segments_1.1_84ed94a5a15ad195_.log 2025-08-14T22:01:31.9206434Z 2025-08-14T22:01:31.9210674Z Running test_sparse_semi_structured 1/1 ... [2025-08-14 22:01:31.919756] 2025-08-14T22:01:31.9211207Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:01:31.9218105Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_sparse_semi_structured.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:01:31.921492] 2025-08-14T22:01:42.6965240Z 2025-08-14T22:01:42.6966535Z test_sparse_semi_structured 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_sparse_semi_structured_1.1_1738649e6efba10f_.log 2025-08-14T22:01:42.6967568Z Running 0 items in this shard: 2025-08-14T22:01:42.6967781Z 2025-08-14T22:01:42.6971435Z Running export/test_serialize 1/1 ... [2025-08-14 22:01:42.693785] 2025-08-14T22:01:42.6971924Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:01:42.6978223Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_serialize.py', '-m', 'serial', '--shard-id=1', '--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:42.693785] 2025-08-14T22:01:47.8811097Z 2025-08-14T22:01:47.8812318Z export/test_serialize 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_serialize_1.1_51b1f6b3f3f674cd_.log 2025-08-14T22:01:47.8813188Z Running 0 items in this shard: 2025-08-14T22:01:47.8813386Z 2025-08-14T22:01:47.8817455Z Running dynamo/test_torchrec 1/1 ... [2025-08-14 22:01:47.881627] 2025-08-14T22:01:47.8818009Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:01:47.8824733Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_torchrec.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:01:47.881712] 2025-08-14T22:01:52.8554274Z 2025-08-14T22:01:52.8555261Z dynamo/test_torchrec 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_torchrec_1.1_f7dfe4f23667e8e8_.log 2025-08-14T22:01:52.8555974Z 2025-08-14T22:01:52.8560301Z Running export/test_verifier 1/1 ... [2025-08-14 22:01:52.854861] 2025-08-14T22:01:52.8560773Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:01:52.8567099Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_verifier.py', '-m', 'serial', '--shard-id=1', '--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:52.854861] 2025-08-14T22:01:57.6726463Z 2025-08-14T22:01:57.6727478Z export/test_verifier 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_verifier_1.1_ac1df5b93cb1da83_.log 2025-08-14T22:01:57.6728272Z Running 0 items in this shard: 2025-08-14T22:01:57.6728481Z 2025-08-14T22:01:57.6732834Z Running inductor/test_cudagraph_trees_expandable_segments 1/1 ... [2025-08-14 22:01:57.672262] 2025-08-14T22:01:57.6733397Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:01:57.6739739Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cudagraph_trees_expandable_segments.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:01:57.672262] 2025-08-14T22:02:08.2856838Z 2025-08-14T22:02:08.2858071Z inductor/test_cudagraph_trees_expandable_segments 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cudagraph_trees_expandable_segments_1.1_99dc01c197301d33_.log 2025-08-14T22:02:08.2862809Z 2025-08-14T22:02:08.2863065Z Running dynamo/test_generator 1/1 ... [2025-08-14 22:02:08.285929] 2025-08-14T22:02:08.2863522Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:02:08.2870225Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_generator.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:02:08.286555] 2025-08-14T22:02:13.5700532Z 2025-08-14T22:02:13.5701730Z dynamo/test_generator 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_generator_1.1_f8d9b25c21aa02c5_.log 2025-08-14T22:02:13.5702462Z 2025-08-14T22:02:13.5706019Z Running export/test_sparse 1/2 ... [2025-08-14 22:02:13.569906] 2025-08-14T22:02:13.5706644Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:02:13.5712741Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/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 22:02:13.570540] 2025-08-14T22:02:18.3623782Z 2025-08-14T22:02:18.3624858Z export/test_sparse 1/2 was successful, full logs can be found in artifacts with path test/test-reports/export.test_sparse_1.2_bd59ce5964521d9f_.log 2025-08-14T22:02:18.3625718Z Running 0 items in this shard: 2025-08-14T22:02:18.3626256Z 2025-08-14T22:02:18.3630673Z Running functorch/test_eager_transforms 1/1 ... [2025-08-14 22:02:18.362598] 2025-08-14T22:02:18.3631152Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:02:18.3637863Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_eager_transforms.py', '-m', 'serial', '--shard-id=1', '--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.363518] 2025-08-14T22:02:25.4127741Z 2025-08-14T22:02:25.4128877Z functorch/test_eager_transforms 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_eager_transforms_1.1_c83d33462404751a_.log 2025-08-14T22:02:25.4129862Z Running 0 items in this shard: 2025-08-14T22:02:25.4130048Z 2025-08-14T22:02:25.4134213Z Running export/test_draft_export 1/1 ... [2025-08-14 22:02:25.412929] 2025-08-14T22:02:25.4134665Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:02:25.4141666Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_draft_export.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:02:25.413557] 2025-08-14T22:02:30.6176225Z 2025-08-14T22:02:30.6177125Z export/test_draft_export 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_draft_export_1.1_c32082ab59d788b1_.log 2025-08-14T22:02:30.6177934Z Running 0 items in this shard: 2025-08-14T22:02:30.6178122Z 2025-08-14T22:02:30.6182831Z Running dynamo/test_comptime 1/1 ... [2025-08-14 22:02:30.616734] 2025-08-14T22:02:30.6183294Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:02:30.6189257Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_comptime.py', '-m', 'serial', '--shard-id=1', '--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:30.616734] 2025-08-14T22:02:35.4497602Z 2025-08-14T22:02:35.4498605Z dynamo/test_comptime 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_comptime_1.1_cdb9655e2687f81f_.log 2025-08-14T22:02:35.4499393Z 2025-08-14T22:02:35.4506048Z Running test_testing 1/1 ... [2025-08-14 22:02:35.450011] 2025-08-14T22:02:35.4507721Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:02:35.4516877Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_testing.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:02:35.451299] 2025-08-14T22:02:42.6088987Z 2025-08-14T22:02:42.6090157Z test_testing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_testing_1.1_53f77bf72d094305_.log 2025-08-14T22:02:42.6090869Z Running 0 items in this shard: 2025-08-14T22:02:42.6091061Z 2025-08-14T22:02:42.6097605Z Running test_quantization 1/1 ... [2025-08-14 22:02:42.609189] 2025-08-14T22:02:42.6099491Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:02:42.6116348Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', '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:02:42.611124] 2025-08-14T22:02:49.8171635Z 2025-08-14T22:02:49.8172609Z test_quantization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_quantization_1.1_a576229203b7a598_.log 2025-08-14T22:02:49.8173369Z Running 0 items in this shard: 2025-08-14T22:02:49.8173591Z 2025-08-14T22:02:49.8177834Z Running test_dynamic_shapes 1/1 ... [2025-08-14 22:02:49.816840] 2025-08-14T22:02:49.8178523Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:02:49.8221209Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', '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 22:02:49.821704] 2025-08-14T22:02:55.0649057Z 2025-08-14T22:02:55.0650191Z test_dynamic_shapes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_dynamic_shapes_1.1_02a1bc90d067691a_.log 2025-08-14T22:02:55.0650960Z Running 0 items in this shard: 2025-08-14T22:02:55.0651183Z 2025-08-14T22:02:55.0655546Z Running higher_order_ops/test_invoke_subgraph 1/1 ... [2025-08-14 22:02:55.064462] 2025-08-14T22:02:55.0656177Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:02:55.0662535Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'higher_order_ops/test_invoke_subgraph.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:02:55.065671] 2025-08-14T22:03:06.1684054Z 2025-08-14T22:03:06.1685199Z higher_order_ops/test_invoke_subgraph 1/1 was successful, full logs can be found in artifacts with path test/test-reports/higher_order_ops.test_invoke_subgraph_1.1_93bb168fd9ddc4a9_.log 2025-08-14T22:03:06.1686249Z Running 0 items in this shard: 2025-08-14T22:03:06.1686487Z 2025-08-14T22:03:06.1690662Z Running test_package 1/1 ... [2025-08-14 22:03:06.168546] 2025-08-14T22:03:06.1691143Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:03:06.1698057Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_package.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:03:06.169218] 2025-08-14T22:03:11.0057395Z 2025-08-14T22:03:11.0058571Z test_package 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_package_1.1_64bba9e884534231_.log 2025-08-14T22:03:11.0059449Z Running 0 items in this shard: 2025-08-14T22:03:11.0059636Z 2025-08-14T22:03:11.0063613Z Running functorch/test_rearrange 1/1 ... [2025-08-14 22:03:11.005510] 2025-08-14T22:03:11.0064057Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:03:11.0070422Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_rearrange.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:03:11.005510] 2025-08-14T22:03:15.9201530Z 2025-08-14T22:03:15.9202635Z functorch/test_rearrange 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_rearrange_1.1_17b5405911bef4fc_.log 2025-08-14T22:03:15.9203457Z Running 0 items in this shard: 2025-08-14T22:03:15.9203683Z 2025-08-14T22:03:15.9208239Z Running functorch/test_parsing 1/1 ... [2025-08-14 22:03:15.920671] 2025-08-14T22:03:15.9208712Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:03:15.9215179Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_parsing.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:03:15.921322] 2025-08-14T22:03:20.7142322Z 2025-08-14T22:03:20.7143477Z functorch/test_parsing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_parsing_1.1_9e83b37a16a4fe8d_.log 2025-08-14T22:03:20.7144375Z Running 0 items in this shard: 2025-08-14T22:03:20.7144588Z 2025-08-14T22:03:20.7148829Z Running test_hop_infra 1/1 ... [2025-08-14 22:03:20.714502] 2025-08-14T22:03:20.7149271Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:03:20.7155817Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_hop_infra.py', '-m', 'serial', '--shard-id=1', '--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:20.714502] 2025-08-14T22:03:26.6865333Z 2025-08-14T22:03:26.6866197Z test_hop_infra 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_hop_infra_1.1_716eec803379a6f9_.log 2025-08-14T22:03:26.6866945Z Running 0 items in this shard: 2025-08-14T22:03:26.6867141Z 2025-08-14T22:03:26.6872219Z Running test_comparison_utils 1/1 ... [2025-08-14 22:03:26.686876] 2025-08-14T22:03:26.6872687Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:03:26.6878933Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_comparison_utils.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:03:26.687502] 2025-08-14T22:03:31.4120478Z 2025-08-14T22:03:31.4121480Z test_comparison_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_comparison_utils_1.1_ede8e8ed1fb24a59_.log 2025-08-14T22:03:31.4122332Z Running 0 items in this shard: 2025-08-14T22:03:31.4122526Z 2025-08-14T22:03:31.4126665Z Running functorch/test_control_flow 1/1 ... [2025-08-14 22:03:31.397659] 2025-08-14T22:03:31.4128943Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:03:31.4135598Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_control_flow.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:03:31.397659] 2025-08-14T22:03:37.4524490Z 2025-08-14T22:03:37.4525746Z functorch/test_control_flow 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_control_flow_1.1_30fabe1a58d8c18c_.log 2025-08-14T22:03:37.4526616Z Running 0 items in this shard: 2025-08-14T22:03:37.4526981Z 2025-08-14T22:03:37.4530976Z Running functorch/test_ac_logging 1/1 ... [2025-08-14 22:03:37.451128] 2025-08-14T22:03:37.4531469Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:03:37.4537841Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ac_logging.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:03:37.451128] 2025-08-14T22:03:42.4394712Z 2025-08-14T22:03:42.4396076Z functorch/test_ac_logging 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ac_logging_1.1_b7d067ac0afb909a_.log 2025-08-14T22:03:42.4397049Z Running 0 items in this shard: 2025-08-14T22:03:42.4397248Z 2025-08-14T22:03:42.4404881Z Running test_mkl_verbose 1/1 ... [2025-08-14 22:03:42.440243] 2025-08-14T22:03:42.4405328Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:03:42.4414171Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_mkl_verbose.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:03:42.440893] 2025-08-14T22:03:47.1409853Z 2025-08-14T22:03:47.1411020Z test_mkl_verbose 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_mkl_verbose_1.1_dec3c9d7919e34c3_.log 2025-08-14T22:03:47.1411789Z Running 0 items in this shard: 2025-08-14T22:03:47.1411992Z 2025-08-14T22:03:47.1416218Z Running test_autoload 1/1 ... [2025-08-14 22:03:47.141018] 2025-08-14T22:03:47.1416777Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:03:47.1423273Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_autoload.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:03:47.141710] 2025-08-14T22:03:52.0226257Z 2025-08-14T22:03:52.0227281Z test_autoload 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_autoload_1.1_e80220bde33a0f23_.log 2025-08-14T22:03:52.0228238Z Running 0 items in this shard: 2025-08-14T22:03:52.0228441Z 2025-08-14T22:03:52.0233590Z Running test_proxy_tensor 1/2 ... [2025-08-14 22:03:52.023171] 2025-08-14T22:03:52.0234132Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:03:52.0241280Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_proxy_tensor.py', '-m', 'serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:03:52.023870] 2025-08-14T22:04:00.0216738Z 2025-08-14T22:04:00.0217958Z test_proxy_tensor 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_proxy_tensor_1.2_88fd5aa6e8a870c9_.log 2025-08-14T22:04:00.0218823Z Running 0 items in this shard: 2025-08-14T22:04:00.0219051Z 2025-08-14T22:04:00.0223581Z Running test_ao_sparsity 1/1 ... [2025-08-14 22:04:00.021999] 2025-08-14T22:04:00.0224058Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:04:00.0230352Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ao_sparsity.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:04:00.021999] 2025-08-14T22:04:05.1295582Z 2025-08-14T22:04:05.1296774Z test_ao_sparsity 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_ao_sparsity_1.1_3c556b57a0a0080b_.log 2025-08-14T22:04:05.1297545Z Running 0 items in this shard: 2025-08-14T22:04:05.1297744Z 2025-08-14T22:04:05.1301812Z Running test_license 1/1 ... [2025-08-14 22:04:05.114579] 2025-08-14T22:04:05.1302242Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:04:05.1308779Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_license.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:04:05.130370] 2025-08-14T22:04:09.8957055Z 2025-08-14T22:04:09.8957948Z test_license 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_license_1.1_9c1521e850d93ecb_.log 2025-08-14T22:04:09.8958696Z Running 0 items in this shard: 2025-08-14T22:04:09.8958901Z 2025-08-14T22:04:09.8963746Z Running torch_np/test_binary_ufuncs 1/1 ... [2025-08-14 22:04:09.895688] 2025-08-14T22:04:09.8964241Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:04:09.8980559Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_binary_ufuncs.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:04:09.896806] 2025-08-14T22:04:14.7979958Z 2025-08-14T22:04:14.7981148Z torch_np/test_binary_ufuncs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_binary_ufuncs_1.1_eebbad553d2a9761_.log 2025-08-14T22:04:14.7982285Z Running 0 items in this shard: 2025-08-14T22:04:14.7982481Z 2025-08-14T22:04:14.7990771Z Running xpu/test_fusion 1/1 ... [2025-08-14 22:04:14.798266] 2025-08-14T22:04:14.7991250Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:04:14.7999417Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'xpu/test_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:04:14.799556] 2025-08-14T22:04:19.8046511Z 2025-08-14T22:04:19.8047907Z xpu/test_fusion 1/1 was successful, full logs can be found in artifacts with path test/test-reports/xpu.test_fusion_1.1_ac34d4a271d55238_.log 2025-08-14T22:04:19.8048716Z Running 0 items in this shard: 2025-08-14T22:04:19.8048913Z 2025-08-14T22:04:19.8053083Z Running torch_np/test_unary_ufuncs 1/1 ... [2025-08-14 22:04:19.805194] 2025-08-14T22:04:19.8053579Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:04:19.8059788Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_unary_ufuncs.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:04:19.805194] 2025-08-14T22:04:24.5661895Z 2025-08-14T22:04:24.5662927Z torch_np/test_unary_ufuncs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_unary_ufuncs_1.1_5ad06bd240512673_.log 2025-08-14T22:04:24.5663906Z Running 0 items in this shard: 2025-08-14T22:04:24.5664106Z 2025-08-14T22:04:24.5668257Z Running test_foreach 1/1 ... [2025-08-14 22:04:24.566344] 2025-08-14T22:04:24.5668696Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:04:24.5675249Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_foreach.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:04:24.566963] 2025-08-14T22:04:37.7068114Z 2025-08-14T22:04:37.7069270Z test_foreach 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_foreach_1.1_46f074b581e790a3_.log 2025-08-14T22:04:37.7070021Z Running 0 items in this shard: 2025-08-14T22:04:37.7070219Z 2025-08-14T22:04:37.7074626Z Running test_expanded_weights 1/1 ... [2025-08-14 22:04:37.699137] 2025-08-14T22:04:37.7075067Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:04:37.7081323Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_expanded_weights.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:04:37.699137] 2025-08-14T22:04:44.3944465Z 2025-08-14T22:04:44.3945803Z test_expanded_weights 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_expanded_weights_1.1_c50ec2cb1bf0bec2_.log 2025-08-14T22:04:44.3946772Z Running 0 items in this shard: 2025-08-14T22:04:44.3946973Z 2025-08-14T22:04:44.3950826Z Running typing/test_python_operators 1/1 ... [2025-08-14 22:04:44.394586] 2025-08-14T22:04:44.3951426Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:04:44.3958264Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'typing/test_python_operators.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:04:44.395208] 2025-08-14T22:04:49.1687161Z 2025-08-14T22:04:49.1688246Z typing/test_python_operators 1/1 was successful, full logs can be found in artifacts with path test/test-reports/typing.test_python_operators_1.1_eef90a9d1f8a88e2_.log 2025-08-14T22:04:49.1689120Z Running 0 items in this shard: 2025-08-14T22:04:49.1689504Z 2025-08-14T22:04:49.1693688Z Running test_fx_experimental 1/1 ... [2025-08-14 22:04:49.155675] 2025-08-14T22:04:49.1694180Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:04:49.1700064Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_fx_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:04:49.155675] 2025-08-14T22:04:55.9672896Z 2025-08-14T22:04:55.9674271Z test_fx_experimental 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_fx_experimental_1.1_a4a333b986dbbed1_.log 2025-08-14T22:04:55.9675119Z Running 0 items in this shard: 2025-08-14T22:04:55.9675327Z 2025-08-14T22:04:55.9679214Z Running test_file_check 1/1 ... [2025-08-14 22:04:55.967802] 2025-08-14T22:04:55.9679629Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:04:55.9686592Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_file_check.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:04:55.968428] 2025-08-14T22:05:00.6126725Z 2025-08-14T22:05:00.6128121Z test_file_check 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_file_check_1.1_7b26450d93e9740b_.log 2025-08-14T22:05:00.6128890Z Running 0 items in this shard: 2025-08-14T22:05:00.6129087Z 2025-08-14T22:05:00.6133389Z Running torch_np/test_dtype 1/1 ... [2025-08-14 22:05:00.613234] 2025-08-14T22:05:00.6133846Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:05:00.6141062Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_dtype.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:05:00.613916] 2025-08-14T22:05:05.2705084Z 2025-08-14T22:05:05.2706123Z torch_np/test_dtype 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_dtype_1.1_ddc0157d80078009_.log 2025-08-14T22:05:05.2706925Z Running 0 items in this shard: 2025-08-14T22:05:05.2707125Z 2025-08-14T22:05:05.2711288Z Running higher_order_ops/test_with_effects 1/1 ... [2025-08-14 22:05:05.257256] 2025-08-14T22:05:05.2711783Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:05:05.2717981Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'higher_order_ops/test_with_effects.py', '-m', 'serial', '--shard-id=1', '--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:05.257256] 2025-08-14T22:05:11.0758852Z 2025-08-14T22:05:11.0759961Z higher_order_ops/test_with_effects 1/1 was successful, full logs can be found in artifacts with path test/test-reports/higher_order_ops.test_with_effects_1.1_c43c22db04b47c93_.log 2025-08-14T22:05:11.0760925Z Running 0 items in this shard: 2025-08-14T22:05:11.0761123Z 2025-08-14T22:05:11.0767251Z Running test_native_functions 1/1 ... [2025-08-14 22:05:11.076234] 2025-08-14T22:05:11.0767719Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:05:11.0778358Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_native_functions.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:05:11.077536] 2025-08-14T22:05:15.7645102Z 2025-08-14T22:05:15.7646404Z test_native_functions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_native_functions_1.1_82c62c9a7fa7adef_.log 2025-08-14T22:05:15.7647208Z Running 0 items in this shard: 2025-08-14T22:05:15.7647434Z 2025-08-14T22:05:15.7651574Z Running functorch/test_minifier 1/1 ... [2025-08-14 22:05:15.765024] 2025-08-14T22:05:15.7652275Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:05:15.7658562Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/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:05:15.765180] 2025-08-14T22:05:20.8525968Z 2025-08-14T22:05:20.8526916Z functorch/test_minifier 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_minifier_1.1_9d902d0a12436e90_.log 2025-08-14T22:05:20.8530207Z Running 0 items in this shard: 2025-08-14T22:05:20.8530641Z 2025-08-14T22:05:20.8533921Z Running test_flop_counter 1/1 ... [2025-08-14 22:05:20.851274] 2025-08-14T22:05:20.8534421Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:05:20.8540872Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_flop_counter.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:05:20.853834] 2025-08-14T22:05:25.8116063Z 2025-08-14T22:05:25.8117135Z test_flop_counter 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_flop_counter_1.1_a31d3f881210efe4_.log 2025-08-14T22:05:25.8117908Z Running 0 items in this shard: 2025-08-14T22:05:25.8118098Z 2025-08-14T22:05:25.8123346Z Running torch_np/test_nep50_examples 1/1 ... [2025-08-14 22:05:25.811646] 2025-08-14T22:05:25.8123812Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:05:25.8130319Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_nep50_examples.py', '-m', 'serial', '--shard-id=1', '--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:25.812281] 2025-08-14T22:05:30.8254485Z 2025-08-14T22:05:30.8255473Z torch_np/test_nep50_examples 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_nep50_examples_1.1_28c7d983b2cf0a56_.log 2025-08-14T22:05:30.8256404Z Running 0 items in this shard: 2025-08-14T22:05:30.8256589Z 2025-08-14T22:05:30.8260870Z Running higher_order_ops/test_invoke_quant 1/1 ... [2025-08-14 22:05:30.825708] 2025-08-14T22:05:30.8261353Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:05:30.8267839Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'higher_order_ops/test_invoke_quant.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:05:30.826332] 2025-08-14T22:05:41.5300013Z 2025-08-14T22:05:41.5301300Z higher_order_ops/test_invoke_quant 1/1 was successful, full logs can be found in artifacts with path test/test-reports/higher_order_ops.test_invoke_quant_1.1_71054dadea2e57bf_.log 2025-08-14T22:05:41.5302216Z Running 0 items in this shard: 2025-08-14T22:05:41.5302406Z 2025-08-14T22:05:41.5306297Z Running test_per_overload_api 1/1 ... [2025-08-14 22:05:41.530076] 2025-08-14T22:05:41.5306812Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:05:41.5313848Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_per_overload_api.py', '-m', 'serial', '--shard-id=1', '--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.531173] 2025-08-14T22:05:46.2907950Z 2025-08-14T22:05:46.2909071Z test_per_overload_api 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_per_overload_api_1.1_64bf9359a7eabdca_.log 2025-08-14T22:05:46.2909855Z Running 0 items in this shard: 2025-08-14T22:05:46.2910045Z 2025-08-14T22:05:46.2916265Z Running test_tensorexpr_pybind 1/1 ... [2025-08-14 22:05:46.291222] 2025-08-14T22:05:46.2916853Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:05:46.2927127Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_tensorexpr_pybind.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:05:46.291857] 2025-08-14T22:05:51.1063249Z 2025-08-14T22:05:51.1064442Z test_tensorexpr_pybind 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_tensorexpr_pybind_1.1_296cf8023d83f563_.log 2025-08-14T22:05:51.1065208Z Running 0 items in this shard: 2025-08-14T22:05:51.1065674Z 2025-08-14T22:05:51.1069398Z Running test_pytree 1/1 ... [2025-08-14 22:05:51.105094] 2025-08-14T22:05:51.1069799Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:05:51.1075996Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_pytree.py', '-m', 'serial', '--shard-id=1', '--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:51.105094] 2025-08-14T22:05:55.8426061Z 2025-08-14T22:05:55.8426986Z test_pytree 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_pytree_1.1_6593474243051327_.log 2025-08-14T22:05:55.8427773Z Running 0 items in this shard: 2025-08-14T22:05:55.8427967Z 2025-08-14T22:05:55.8432487Z Running test_fx_passes 1/1 ... [2025-08-14 22:05:55.842847] 2025-08-14T22:05:55.8432887Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:05:55.8440030Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_fx_passes.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:05:55.843467] 2025-08-14T22:06:00.6255484Z 2025-08-14T22:06:00.6256527Z test_fx_passes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_fx_passes_1.1_1a42895723eaed43_.log 2025-08-14T22:06:00.6257262Z Running 0 items in this shard: 2025-08-14T22:06:00.6257449Z 2025-08-14T22:06:00.6257643Z Running test_module_tracker 1/1 ... [2025-08-14 22:06:00.623204] 2025-08-14T22:06:00.6258044Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:06:00.6262753Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_module_tracker.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:06:00.623204] 2025-08-14T22:06:05.4238873Z 2025-08-14T22:06:05.4239718Z test_module_tracker 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_module_tracker_1.1_262407dc5b0ea93e_.log 2025-08-14T22:06:05.4240630Z Running 0 items in this shard: 2025-08-14T22:06:05.4240819Z 2025-08-14T22:06:05.4245355Z Running test_typing 1/1 ... [2025-08-14 22:06:05.424418] 2025-08-14T22:06:05.4245759Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:06:05.4252353Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_typing.py', '-m', 'serial', '--shard-id=1', '--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:05.425055] 2025-08-14T22:06:10.1263617Z 2025-08-14T22:06:10.1264626Z test_typing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_typing_1.1_ebe4830a07bd7279_.log 2025-08-14T22:06:10.1265424Z Running 0 items in this shard: 2025-08-14T22:06:10.1265633Z 2025-08-14T22:06:10.1270385Z Running test_openmp 1/1 ... [2025-08-14 22:06:10.126573] 2025-08-14T22:06:10.1270814Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:06:10.1276690Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_openmp.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:06:10.126573] 2025-08-14T22:06:14.8719903Z 2025-08-14T22:06:14.8721110Z test_openmp 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_openmp_1.1_ebc7f7f82f0c93b0_.log 2025-08-14T22:06:14.8721929Z Running 0 items in this shard: 2025-08-14T22:06:14.8722119Z 2025-08-14T22:06:14.8726443Z Running torch_np/numpy_tests/core/test_scalarinherit 1/1 ... [2025-08-14 22:06:14.872121] 2025-08-14T22:06:14.8727047Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:06:14.8733962Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_scalarinherit.py', '-m', 'serial', '--shard-id=1', '--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:14.872744] 2025-08-14T22:06:19.7119843Z 2025-08-14T22:06:19.7121269Z torch_np/numpy_tests/core/test_scalarinherit 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_scalarinherit_1.1_dea66c576710ad5f_.log 2025-08-14T22:06:19.7122238Z Running 0 items in this shard: 2025-08-14T22:06:19.7122440Z 2025-08-14T22:06:19.7126126Z Running functorch/test_ac_knapsack 1/1 ... [2025-08-14 22:06:19.709564] 2025-08-14T22:06:19.7126588Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:06:19.7133619Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ac_knapsack.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:06:19.709564] 2025-08-14T22:06:24.7441886Z 2025-08-14T22:06:24.7442900Z functorch/test_ac_knapsack 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ac_knapsack_1.1_5678d66aed288106_.log 2025-08-14T22:06:24.7443757Z Running 0 items in this shard: 2025-08-14T22:06:24.7443961Z 2025-08-14T22:06:24.7448080Z Running backends/xeon/test_launch 1/1 ... [2025-08-14 22:06:24.729648] 2025-08-14T22:06:24.7448516Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:06:24.7456961Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'backends/xeon/test_launch.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:06:24.745430] 2025-08-14T22:06:29.4354212Z 2025-08-14T22:06:29.4355193Z backends/xeon/test_launch 1/1 was successful, full logs can be found in artifacts with path test/test-reports/backends.xeon.test_launch_1.1_c5a97dafb96628c2_.log 2025-08-14T22:06:29.4356177Z Running 0 items in this shard: 2025-08-14T22:06:29.4356365Z 2025-08-14T22:06:29.4360711Z Running test_nestedtensor 1/4 ... [2025-08-14 22:06:29.435919] 2025-08-14T22:06:29.4361132Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:06:29.4367666Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_nestedtensor.py', '-m', 'serial', '--shard-id=1', '--num-shards=4', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:06:29.436556] 2025-08-14T22:06:36.8060832Z 2025-08-14T22:06:36.8062110Z test_nestedtensor 1/4 was successful, full logs can be found in artifacts with path test/test-reports/test_nestedtensor_1.4_8cd27c453e00be1a_.log 2025-08-14T22:06:36.8062965Z Running 0 items in this shard: 2025-08-14T22:06:36.8063153Z 2025-08-14T22:06:36.8071869Z Running test_nestedtensor 3/4 ... [2025-08-14 22:06:36.806963] 2025-08-14T22:06:36.8072276Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:06:36.8079173Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_nestedtensor.py', '-m', 'serial', '--shard-id=3', '--num-shards=4', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:06:36.806963] 2025-08-14T22:06:43.9612266Z 2025-08-14T22:06:43.9613162Z test_nestedtensor 3/4 was successful, full logs can be found in artifacts with path test/test-reports/test_nestedtensor_3.4_f52bb715136f6861_.log 2025-08-14T22:06:43.9618407Z Running 0 items in this shard: 2025-08-14T22:06:43.9618609Z 2025-08-14T22:06:43.9618796Z Running test_nestedtensor 4/4 ... [2025-08-14 22:06:43.958006] 2025-08-14T22:06:43.9619245Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:06:43.9625388Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_nestedtensor.py', '-m', 'serial', '--shard-id=4', '--num-shards=4', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:06:43.958006] 2025-08-14T22:06:51.1845963Z 2025-08-14T22:06:51.1847041Z test_nestedtensor 4/4 was successful, full logs can be found in artifacts with path test/test-reports/test_nestedtensor_4.4_fb3315766e4523ca_.log 2025-08-14T22:06:51.1848456Z Running 1 items in this shard: test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_linear_backward_memory_usage_cpu_float32 2025-08-14T22:06:51.1849058Z 2025-08-14T22:06:51.1852171Z Running test_meta 2/5 ... [2025-08-14 22:06:51.179522] 2025-08-14T22:06:51.1852566Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:06:51.1858963Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_meta.py', '-m', 'serial', '--shard-id=2', '--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:51.179522] 2025-08-14T22:07:07.8345850Z 2025-08-14T22:07:07.8346733Z test_meta 2/5 was successful, full logs can be found in artifacts with path test/test-reports/test_meta_2.5_1cd3d18209d0f14e_.log 2025-08-14T22:07:07.8347442Z Running 0 items in this shard: 2025-08-14T22:07:07.8349105Z 2025-08-14T22:07:07.8352518Z Running test_meta 5/5 ... [2025-08-14 22:07:07.834868] 2025-08-14T22:07:07.8352956Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:07:07.8359571Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_meta.py', '-m', 'serial', '--shard-id=5', '--num-shards=5', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:07:07.835520] 2025-08-14T22:07:24.6248735Z 2025-08-14T22:07:24.6249885Z test_meta 5/5 was successful, full logs can be found in artifacts with path test/test-reports/test_meta_5.5_f0fbcf8084286921_.log 2025-08-14T22:07:24.6250627Z Running 0 items in this shard: 2025-08-14T22:07:24.6250826Z 2025-08-14T22:07:24.6254820Z Running test_utils_filelock 1/1 ... [2025-08-14 22:07:24.618910] 2025-08-14T22:07:24.6255419Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:07:24.6261631Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_utils_filelock.py', '-m', 'serial', '--shard-id=1', '--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:24.618910] 2025-08-14T22:07:29.4703824Z 2025-08-14T22:07:29.4704933Z test_utils_filelock 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_utils_filelock_1.1_2a5a7377415ba919_.log 2025-08-14T22:07:29.4705832Z Running 0 items in this shard: 2025-08-14T22:07:29.4710061Z 2025-08-14T22:07:29.4710296Z Running torch_np/test_random 1/1 ... [2025-08-14 22:07:29.470543] 2025-08-14T22:07:29.4710729Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:07:29.4717557Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_random.py', '-m', 'serial', '--shard-id=1', '--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:29.471179] 2025-08-14T22:07:34.1849316Z 2025-08-14T22:07:34.1850310Z torch_np/test_random 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_random_1.1_34eef1e5b9e9e107_.log 2025-08-14T22:07:34.1851121Z Running 0 items in this shard: 2025-08-14T22:07:34.1851318Z 2025-08-14T22:07:34.1855843Z Running profiler/test_kineto 1/1 ... [2025-08-14 22:07:34.181894] 2025-08-14T22:07:34.1856345Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:07:34.1862450Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'profiler/test_kineto.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:07:34.181894] 2025-08-14T22:07:39.1250872Z 2025-08-14T22:07:39.1251883Z profiler/test_kineto 1/1 was successful, full logs can be found in artifacts with path test/test-reports/profiler.test_kineto_1.1_527e18116ba049f1_.log 2025-08-14T22:07:39.1252672Z Running 0 items in this shard: 2025-08-14T22:07:39.1256801Z 2025-08-14T22:07:39.1257042Z Running test_compile_benchmark_util 1/1 ... [2025-08-14 22:07:39.115170] 2025-08-14T22:07:39.1257501Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:07:39.1264160Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_compile_benchmark_util.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:07:39.115170] 2025-08-14T22:07:43.9765404Z 2025-08-14T22:07:43.9766709Z test_compile_benchmark_util 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_compile_benchmark_util_1.1_50781741497f1eaa_.log 2025-08-14T22:07:43.9767592Z Running 0 items in this shard: 2025-08-14T22:07:43.9767792Z 2025-08-14T22:07:43.9772052Z Running test_optim 1/1 ... [2025-08-14 22:07:43.969233] 2025-08-14T22:07:43.9772506Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:07:43.9778695Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', '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:07:43.969233] 2025-08-14T22:07:50.6741317Z 2025-08-14T22:07:50.6742234Z test_optim 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_optim_1.1_56195ff472037cd6_.log 2025-08-14T22:07:50.6743193Z Running 0 items in this shard: 2025-08-14T22:07:50.6743582Z 2025-08-14T22:07:50.6783797Z Running test_decomp 1/17 ... [2025-08-14 22:07:50.674770] 2025-08-14T22:07:50.6784270Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:07:50.6785353Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=1', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:07:50.675436] 2025-08-14T22:07:59.7588890Z 2025-08-14T22:07:59.7589862Z test_decomp 1/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_1.17_7ee78bbbf3a680bf_.log 2025-08-14T22:07:59.7590561Z Running 0 items in this shard: 2025-08-14T22:07:59.7590781Z 2025-08-14T22:07:59.7595167Z Running test_decomp 4/17 ... [2025-08-14 22:07:59.746706] 2025-08-14T22:07:59.7595590Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:07:59.7601859Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=4', '--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:59.746706] 2025-08-14T22:08:09.1062428Z 2025-08-14T22:08:09.1063581Z test_decomp 4/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_4.17_613ebabf545c8f47_.log 2025-08-14T22:08:09.1064475Z Running 0 items in this shard: 2025-08-14T22:08:09.1064679Z 2025-08-14T22:08:09.1068735Z Running test_decomp 6/17 ... [2025-08-14 22:08:09.103583] 2025-08-14T22:08:09.1069133Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:08:09.1076167Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=6', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:08:09.107138] 2025-08-14T22:08:18.1421880Z 2025-08-14T22:08:18.1423294Z test_decomp 6/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_6.17_2f1d8a7a9b9a0520_.log 2025-08-14T22:08:18.1424164Z Running 0 items in this shard: 2025-08-14T22:08:18.1424376Z 2025-08-14T22:08:18.1430340Z Running test_decomp 7/17 ... [2025-08-14 22:08:18.142452] 2025-08-14T22:08:18.1430762Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:08:18.1439484Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=7', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:08:18.143607] 2025-08-14T22:08:27.0999006Z 2025-08-14T22:08:27.0999759Z test_decomp 7/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_7.17_60914155cde382ca_.log 2025-08-14T22:08:27.1000468Z Running 0 items in this shard: 2025-08-14T22:08:27.1000693Z 2025-08-14T22:08:27.1007271Z Running test_decomp 11/17 ... [2025-08-14 22:08:27.100335] 2025-08-14T22:08:27.1007726Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:08:27.1018324Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=11', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:08:27.100974] 2025-08-14T22:08:36.1434016Z 2025-08-14T22:08:36.1434924Z test_decomp 11/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_11.17_f1a3bb72ab52bfe9_.log 2025-08-14T22:08:36.1435673Z Running 0 items in this shard: 2025-08-14T22:08:36.1435868Z 2025-08-14T22:08:36.1440144Z Running test_decomp 13/17 ... [2025-08-14 22:08:36.134649] 2025-08-14T22:08:36.1440552Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:08:36.1447048Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=13', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:08:36.134649] 2025-08-14T22:08:45.3163111Z 2025-08-14T22:08:45.3164410Z test_decomp 13/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_13.17_5c35438c910ec9f5_.log 2025-08-14T22:08:45.3165126Z Running 0 items in this shard: 2025-08-14T22:08:45.3165376Z 2025-08-14T22:08:45.3165547Z Running test_decomp 14/17 ... [2025-08-14 22:08:45.311216] 2025-08-14T22:08:45.3165950Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:08:45.3167031Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'serial', '--shard-id=14', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:08:45.311974] 2025-08-14T22:08:54.3172772Z 2025-08-14T22:08:54.3173732Z test_decomp 14/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_14.17_f946321dbd8af2ae_.log 2025-08-14T22:08:54.3174495Z Running 0 items in this shard: 2025-08-14T22:08:54.3174705Z 2025-08-14T22:08:54.3179159Z Running xpu/test_conv 1/1 ... [2025-08-14 22:08:54.316833] 2025-08-14T22:08:54.3179574Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:08:54.3186090Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'xpu/test_conv.py', '-m', 'serial', '--shard-id=1', '--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:54.317976] 2025-08-14T22:09:00.2701455Z 2025-08-14T22:09:00.2702383Z xpu/test_conv 1/1 was successful, full logs can be found in artifacts with path test/test-reports/xpu.test_conv_1.1_bd93bdcf753cc85c_.log 2025-08-14T22:09:00.2703113Z Running 0 items in this shard: 2025-08-14T22:09:00.2703329Z 2025-08-14T22:09:00.2709706Z Running test_ops_jit 2/3 ... [2025-08-14 22:09:00.270575] 2025-08-14T22:09:00.2710389Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:09:00.2724091Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_jit.py', '-m', 'serial', '--shard-id=2', '--num-shards=3', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:09:00.271870] 2025-08-14T22:09:07.0684674Z 2025-08-14T22:09:07.0685763Z test_ops_jit 2/3 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_jit_2.3_b60c2a8b9f5a224c_.log 2025-08-14T22:09:07.0686546Z Running 0 items in this shard: 2025-08-14T22:09:07.0686786Z 2025-08-14T22:09:07.0691361Z Running test_ops_jit 3/3 ... [2025-08-14 22:09:07.068647] 2025-08-14T22:09:07.0691795Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:09:07.0698518Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_jit.py', '-m', 'serial', '--shard-id=3', '--num-shards=3', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:09:07.069283] 2025-08-14T22:09:13.7148472Z 2025-08-14T22:09:13.7149706Z test_ops_jit 3/3 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_jit_3.3_f17ea427d59afbd5_.log 2025-08-14T22:09:13.7150558Z Running 0 items in this shard: 2025-08-14T22:09:13.7150787Z 2025-08-14T22:09:13.7155086Z Running lazy/test_step_closures 1/1 ... [2025-08-14 22:09:13.714970] 2025-08-14T22:09:13.7155670Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:09:13.7161779Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'lazy/test_step_closures.py', '-m', 'serial', '--shard-id=1', '--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:13.715604] 2025-08-14T22:09:18.4259836Z 2025-08-14T22:09:18.4261044Z lazy/test_step_closures 1/1 was successful, full logs can be found in artifacts with path test/test-reports/lazy.test_step_closures_1.1_f9c09fadde3f4077_.log 2025-08-14T22:09:18.4261895Z Running 0 items in this shard: 2025-08-14T22:09:18.4262238Z 2025-08-14T22:09:18.4266464Z Running test_ops_gradients 1/2 ... [2025-08-14 22:09:18.419437] 2025-08-14T22:09:18.4266945Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:09:18.4273058Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_gradients.py', '-m', 'serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:09:18.419437] 2025-08-14T22:09:26.7246309Z 2025-08-14T22:09:26.7247202Z test_ops_gradients 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_gradients_1.2_0baf5e7592ee8bb5_.log 2025-08-14T22:09:26.7247994Z Running 0 items in this shard: 2025-08-14T22:09:26.7248191Z 2025-08-14T22:09:26.7252668Z Running test_cuda_expandable_segments 1/1 ... [2025-08-14 22:09:26.722586] 2025-08-14T22:09:26.7255073Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:09:26.7259540Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cuda_expandable_segments.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:09:26.722586] 2025-08-14T22:09:32.9753530Z 2025-08-14T22:09:32.9756431Z test_cuda_expandable_segments 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_expandable_segments_1.1_779c34368097d1d2_.log 2025-08-14T22:09:32.9757218Z 2025-08-14T22:09:32.9760421Z Running test_ops 4/9 ... [2025-08-14 22:09:32.975519] 2025-08-14T22:09:32.9761010Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:09:32.9767872Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'serial', '--shard-id=4', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:09:32.976155] 2025-08-14T22:09:32.9769234Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-14T22:09:32.9769739Z Uploading artifacts took 0.00 seconds 2025-08-14T22:09:53.8993204Z 2025-08-14T22:09:53.8994550Z test_ops 4/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_4.9_48abaabec1e9dd61_.log 2025-08-14T22:09:53.8995243Z Running 0 items in this shard: 2025-08-14T22:09:53.8995478Z 2025-08-14T22:09:53.8999612Z Running test_ops 5/9 ... [2025-08-14 22:09:53.899423] 2025-08-14T22:09:53.9000026Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:09:53.9006507Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'serial', '--shard-id=5', '--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:53.899423] 2025-08-14T22:10:14.4865319Z 2025-08-14T22:10:14.4866209Z test_ops 5/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_5.9_1fad3e15c3e3b330_.log 2025-08-14T22:10:14.4867042Z Running 0 items in this shard: 2025-08-14T22:10:14.4867244Z 2025-08-14T22:10:14.4874360Z Running test_ops 6/9 ... [2025-08-14 22:10:14.486820] 2025-08-14T22:10:14.4874786Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:10:14.4881421Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'serial', '--shard-id=6', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:10:14.486820] 2025-08-14T22:10:35.0637963Z 2025-08-14T22:10:35.0639113Z test_ops 6/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_6.9_8249a7a0f86aa44d_.log 2025-08-14T22:10:35.0639822Z Running 0 items in this shard: 2025-08-14T22:10:35.0640063Z 2025-08-14T22:10:35.0644734Z Running cpp_extensions/libtorch_agnostic_extension/test/test_libtorch_agnostic 1/1 ... [2025-08-14 22:10:35.064313] 2025-08-14T22:10:35.0645568Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:10:35.0652077Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'cpp_extensions/libtorch_agnostic_extension/test/test_libtorch_agnostic.py', '-m', 'serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:10:35.064313] 2025-08-14T22:10:40.2084298Z 2025-08-14T22:10:40.2085960Z cpp_extensions/libtorch_agnostic_extension/test/test_libtorch_agnostic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp_extensions.libtorch_agnostic_extension.test.test_libtorch_agnostic_1.1_91272ddda761032f_.log 2025-08-14T22:10:40.2087232Z Running 0 items in this shard: 2025-08-14T22:10:40.2087435Z 2025-08-14T22:10:40.2090732Z Running functorch/test_ops 3/8 ... [2025-08-14 22:10:40.206307] 2025-08-14T22:10:40.2091174Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:10:40.2097648Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'serial', '--shard-id=3', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:10:40.206307] 2025-08-14T22:10:50.1393641Z 2025-08-14T22:10:50.1394837Z functorch/test_ops 3/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_3.8_a5d1492297d644e1_.log 2025-08-14T22:10:50.1395748Z Running 0 items in this shard: 2025-08-14T22:10:50.1395950Z 2025-08-14T22:10:50.1402060Z Running functorch/test_ops 4/8 ... [2025-08-14 22:10:50.139633] 2025-08-14T22:10:50.1403651Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:10:50.1414123Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'serial', '--shard-id=4', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:10:50.140932] 2025-08-14T22:10:59.8456476Z 2025-08-14T22:10:59.8457451Z functorch/test_ops 4/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_4.8_152bd6494492f168_.log 2025-08-14T22:10:59.8458247Z Running 0 items in this shard: 2025-08-14T22:10:59.8458469Z 2025-08-14T22:10:59.8462828Z Running functorch/test_ops 5/8 ... [2025-08-14 22:10:59.836837] 2025-08-14T22:10:59.8463248Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:10:59.8472637Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'serial', '--shard-id=5', '--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:59.847006] 2025-08-14T22:11:09.5858281Z 2025-08-14T22:11:09.5859161Z functorch/test_ops 5/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_5.8_478f08b673b2fada_.log 2025-08-14T22:11:09.5862072Z Running 0 items in this shard: 2025-08-14T22:11:09.5862312Z 2025-08-14T22:11:09.5867790Z Running functorch/test_aotdispatch 4/7 ... [2025-08-14 22:11:09.586242] 2025-08-14T22:11:09.5868355Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:11:09.5874955Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_aotdispatch.py', '-m', 'serial', '--shard-id=4', '--num-shards=7', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:11:09.586242] 2025-08-14T22:11:17.8288264Z 2025-08-14T22:11:17.8289618Z functorch/test_aotdispatch 4/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_4.7_9b6cf6a92d660d1f_.log 2025-08-14T22:11:17.8290510Z Running 0 items in this shard: 2025-08-14T22:11:17.8290717Z 2025-08-14T22:11:17.8296979Z Running functorch/test_aotdispatch 5/7 ... [2025-08-14 22:11:17.829166] 2025-08-14T22:11:17.8297578Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:11:17.8308499Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_aotdispatch.py', '-m', 'serial', '--shard-id=5', '--num-shards=7', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:11:17.830466] 2025-08-14T22:11:25.7464681Z 2025-08-14T22:11:25.7465905Z functorch/test_aotdispatch 5/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_5.7_bee9cf08d83438f3_.log 2025-08-14T22:11:25.7466755Z Running 0 items in this shard: 2025-08-14T22:11:25.7466939Z 2025-08-14T22:11:25.7471226Z Running functorch/test_aotdispatch 6/7 ... [2025-08-14 22:11:25.744649] 2025-08-14T22:11:25.7471714Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:11:25.7478513Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_aotdispatch.py', '-m', 'serial', '--shard-id=6', '--num-shards=7', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:11:25.747212] 2025-08-14T22:11:33.6413083Z 2025-08-14T22:11:33.6414057Z functorch/test_aotdispatch 6/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_6.7_f35782c53866ad2e_.log 2025-08-14T22:11:33.6414971Z Running 0 items in this shard: 2025-08-14T22:11:33.6415153Z 2025-08-14T22:11:33.6419579Z Running test_accelerator 1/1 ... [2025-08-14 22:11:33.640907] 2025-08-14T22:11:33.6419979Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:11:33.6426633Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_accelerator.py', '-m', 'serial', '--shard-id=1', '--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:33.640907] 2025-08-14T22:11:38.3243056Z 2025-08-14T22:11:38.3243900Z test_accelerator 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_accelerator_1.1_f64255fd28775196_.log 2025-08-14T22:11:38.3244553Z 2025-08-14T22:11:43.1550576Z Running inductor/test_extension_backend 1/1 ... [2025-08-14 22:11:43.154187] 2025-08-14T22:11:43.1551090Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:11:43.1558009Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_extension_backend.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:11:43.154187] 2025-08-14T22:11:43.2062147Z Running inductor/test_torchbind 1/1 ... [2025-08-14 22:11:43.204788] 2025-08-14T22:11:43.2062737Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:11:43.2069298Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchbind.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:11:43.204788] 2025-08-14T22:11:43.6140355Z Running dynamo/test_trace_rules 1/1 ... [2025-08-14 22:11:43.613678] 2025-08-14T22:11:43.6140827Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:11:43.6147920Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_trace_rules.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:11:43.613678] 2025-08-14T22:11:48.6395694Z 2025-08-14T22:11:48.6396735Z dynamo/test_trace_rules 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_trace_rules_1.1_be4386a625b5d332_.log 2025-08-14T22:11:48.6397669Z 2025-08-14T22:11:54.2810324Z Running test_type_hints 1/1 ... [2025-08-14 22:11:54.280496] 2025-08-14T22:11:54.2810739Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:11:54.2817589Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_type_hints.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:11:54.280496] 2025-08-14T22:11:54.3142898Z 2025-08-14T22:11:54.3144582Z inductor/test_torchbind 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchbind_1.1_9478654cc471d823_.log 2025-08-14T22:11:54.3145674Z 2025-08-14T22:11:56.7807982Z 2025-08-14T22:11:56.7809899Z inductor/test_extension_backend 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_extension_backend_1.1_c7cf4329a2059730_.log 2025-08-14T22:11:56.7810706Z 2025-08-14T22:11:59.1782588Z 2025-08-14T22:11:59.1783747Z test_type_hints 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_type_hints_1.1_e75c221695e994dd_.log 2025-08-14T22:11:59.1784817Z Running 1 items in this shard: test/test_type_hints.py::TestTypeHints::test_doc_examples 2025-08-14T22:11:59.1785361Z 2025-08-14T22:11:59.9303716Z Running test_public_bindings 1/1 ... [2025-08-14 22:11:59.923399] 2025-08-14T22:11:59.9304421Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:11:59.9305983Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_public_bindings.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:11:59.923399] 2025-08-14T22:12:02.3361098Z Running test_cuda 1/1 ... [2025-08-14 22:12:02.335819] 2025-08-14T22:12:02.3361839Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:12:02.3369222Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_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:12:02.335819] 2025-08-14T22:12:04.7825348Z Running test_dataloader 1/2 ... [2025-08-14 22:12:04.772913] 2025-08-14T22:12:04.7825832Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:12:04.7832336Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_dataloader.py', '-m', 'not serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:12:04.772913] 2025-08-14T22:12:05.2274254Z 2025-08-14T22:12:05.2275608Z test_public_bindings 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_public_bindings_1.1_cb3ba5599e6facbc_.log 2025-08-14T22:12:05.2277616Z Running 4 items in this shard: test/test_public_bindings.py::TestPublicBindings::test_correct_module_names, test/test_public_bindings.py::TestPublicBindings::test_modules_can_be_imported, test/test_public_bindings.py::TestPublicBindings::test_no_new_bindings, test/test_public_bindings.py::TestPublicBindings::test_no_new_reexport_callables 2025-08-14T22:12:05.2279075Z 2025-08-14T22:12:09.4622116Z 2025-08-14T22:12:09.4623016Z test_cuda 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_1.1_139772adf2c3dc4a_.log 2025-08-14T22:12:09.4684215Z Running 212 items in this shard: test/test_cuda.py::TestCuda::test_arithmetic_large_tensor, test/test_cuda.py::TestCuda::test_batch_norm_gather_stats, test/test_cuda.py::TestCuda::test_bincount_ext, test/test_cuda.py::TestCuda::test_caching_allocator_record_stream_oom, test/test_cuda.py::TestCuda::test_caching_pinned_memory, test/test_cuda.py::TestCuda::test_check_error, test/test_cuda.py::TestCuda::test_copy_non_blocking, test/test_cuda.py::TestCuda::test_copy_non_blocking_type_conversion, test/test_cuda.py::TestCuda::test_cublas_allow_bf16_reduced_precision_reduction_get_set, test/test_cuda.py::TestCuda::test_cublas_allow_fp16_accumulation_get_set, test/test_cuda.py::TestCuda::test_cublas_allow_fp16_reduced_precision_reduction_get_set, test/test_cuda.py::TestCuda::test_cublas_allow_tf32_get_set, test/test_cuda.py::TestCuda::test_cublas_multiple_threads_same_device, test/test_cuda.py::TestCuda::test_cublas_workspace_explicit_allocation, test/test_cuda.py::TestCuda::test_cuda_get_device_capability, test/test_cuda.py::TestCuda::test_cuda_get_device_name, test/test_cuda.py::TestCuda::test_cuda_get_device_properties, test/test_cuda.py::TestCuda::test_cuda_graph_allocator_propagates_stream, test/test_cuda.py::TestCuda::test_cuda_graph_error_options, test/test_cuda.py::TestCuda::test_cuda_graph_raw_graph, test/test_cuda.py::TestCuda::test_cuda_graph_raw_graph_keep_graph_false, test/test_cuda.py::TestCuda::test_cuda_graph_raw_graph_reset_and_recapture, test/test_cuda.py::TestCuda::test_cuda_graph_tensor_item_not_allowed, test/test_cuda.py::TestCuda::test_cuda_memory_leak_detection_propagates_errors, test/test_cuda.py::TestCuda::test_cudart_register, test/test_cuda.py::TestCuda::test_cudnn_allow_tf32_get_set, test/test_cuda.py::TestCuda::test_cudnn_multiple_threads_same_device, test/test_cuda.py::TestCuda::test_cusparse_multiple_threads_same_device, test/test_cuda.py::TestCuda::test_device_context_manager, test/test_cuda.py::TestCuda::test_device_count_not_cached_pre_init, test/test_cuda.py::TestCuda::test_events, test/test_cuda.py::TestCuda::test_events_elapsedtime, test/test_cuda.py::TestCuda::test_fixed_cuda_assert_async, test/test_cuda.py::TestCuda::test_float32_matmul_precision_get_set, test/test_cuda.py::TestCuda::test_fp32_precision_with_float32_matmul_precision, test/test_cuda.py::TestCuda::test_fp32_precision_with_tf32, test/test_cuda.py::TestCuda::test_gather_bool, test/test_cuda.py::TestCuda::test_gds_fails_in_ci, test/test_cuda.py::TestCuda::test_generic_stream_event, test/test_cuda.py::TestCuda::test_get_device_index, test/test_cuda.py::TestCuda::test_graph_capture_oom, test/test_cuda.py::TestCuda::test_graph_capture_reset_recapture, test/test_cuda.py::TestCuda::test_graph_capture_simple, test/test_cuda.py::TestCuda::test_graph_concurrent_replay, test/test_cuda.py::TestCuda::test_graph_debugdump, test/test_cuda.py::TestCuda::test_graph_error, test/test_cuda.py::TestCuda::test_graph_is_current_stream_capturing, test/test_cuda.py::TestCuda::test_graph_make_graphed_callables_same_pool, test/test_cuda.py::TestCuda::test_graph_memory_stats_and_use_result_after_destroy_graph, test/test_cuda.py::TestCuda::test_graph_optims_with_explicitly_capturable_param_groups, test/test_cuda.py::TestCuda::test_graph_record_stream, test/test_cuda.py::TestCuda::test_graph_rng_distributions, test/test_cuda.py::TestCuda::test_graph_rng_functional, test/test_cuda.py::TestCuda::test_graph_three_successive, test/test_cuda.py::TestCuda::test_graph_timing, test/test_cuda.py::TestCuda::test_graph_two_successive, test/test_cuda.py::TestCuda::test_graph_warn_if_has_zero_nodes, test/test_cuda.py::TestCuda::test_graphsafe_set_get_rng_state, test/test_cuda.py::TestCuda::test_hip_device_count, test/test_cuda.py::TestCuda::test_hipblaslt_allow_tf32, test/test_cuda.py::TestCuda::test_index_out_of_bounds_exception_cuda, test/test_cuda.py::TestCuda::test_invalid_status_for_legacy_api, test/test_cuda.py::TestCuda::test_is_pinned_no_context, test/test_cuda.py::TestCuda::test_lazy_init, test/test_cuda.py::TestCuda::test_manual_seed, test/test_cuda.py::TestCuda::test_matmul_device_mismatch, test/test_cuda.py::TestCuda::test_matmul_memory_use, test/test_cuda.py::TestCuda::test_mean_fp16, test/test_cuda.py::TestCuda::test_memory_allocation, test/test_cuda.py::TestCuda::test_memory_stats, test/test_cuda.py::TestCuda::test_memory_stats_of_multiple_generators_and_graphs, test/test_cuda.py::TestCuda::test_min_max_inits, test/test_cuda.py::TestCuda::test_multi_device_context_manager, test/test_cuda.py::TestCuda::test_multi_device_stream_context_manager, test/test_cuda.py::TestCuda::test_multinomial_ext, test/test_cuda.py::TestCuda::test_multinomial_invalid_probs_cuda, test/test_cuda.py::TestCuda::test_noncontiguous_pinned_memory, test/test_cuda.py::TestCuda::test_norm_type_conversion, test/test_cuda.py::TestCuda::test_nvtx, test/test_cuda.py::TestCuda::test_out_of_memory, test/test_cuda.py::TestCuda::test_pinned_memory_empty_cache, test/test_cuda.py::TestCuda::test_pinned_memory_use_background_threads, test/test_cuda.py::TestCuda::test_pinned_memory_with_cudaregister, test/test_cuda.py::TestCuda::test_pinned_memory_with_cudaregister_multithread, test/test_cuda.py::TestCuda::test_preferred_blas_library_settings, test/test_cuda.py::TestCuda::test_prod_large, test/test_cuda.py::TestCuda::test_randint_randomness_for_large_range, test/test_cuda.py::TestCuda::test_random_no_reused_random_states_float32, test/test_cuda.py::TestCuda::test_random_no_reused_random_states_float64, test/test_cuda.py::TestCuda::test_record_stream, test/test_cuda.py::TestCuda::test_record_stream_on_shifted_view, test/test_cuda.py::TestCuda::test_reduction_gpu_memory_accessing, test/test_cuda.py::TestCuda::test_rocm_backward_pass_guard, test/test_cuda.py::TestCuda::test_serialization_array_with_empty, test/test_cuda.py::TestCuda::test_serialization_array_with_storage, test/test_cuda.py::TestCuda::test_specify_improper_device_name, test/test_cuda.py::TestCuda::test_stream_compatibility, test/test_cuda.py::TestCuda::test_stream_context_manager, test/test_cuda.py::TestCuda::test_stream_event_repr, test/test_cuda.py::TestCuda::test_streaming_backwards_callback, test/test_cuda.py::TestCuda::test_streaming_backwards_multiple_streams, test/test_cuda.py::TestCuda::test_streaming_backwards_sync, test/test_cuda.py::TestCuda::test_streaming_backwards_sync_graph_root, test/test_cuda.py::TestCuda::test_streams, test/test_cuda.py::TestCuda::test_sum_fp16, test/test_cuda.py::TestCuda::test_tiny_half_norm_, test/test_cuda.py::TestCuda::test_to_cpu_blocking_by_default, test/test_cuda.py::TestCuda::test_to_numpy, test/test_cuda.py::TestCuda::test_torch_manual_seed_seeds_cuda_devices, test/test_cuda.py::TestCuda::test_type_conversions, test/test_cuda.py::TestCuda::test_uuid, test/test_cuda.py::TestCudaMallocAsync::test_allocator_fuzz, test/test_cuda.py::TestCudaMallocAsync::test_allocator_settings, test/test_cuda.py::TestCudaMallocAsync::test_cachingAllocator_raw_alloc, test/test_cuda.py::TestCudaMallocAsync::test_clock_speed, test/test_cuda.py::TestCudaMallocAsync::test_cpp_memory_snapshot_pickle, test/test_cuda.py::TestCudaMallocAsync::test_cycles, test/test_cuda.py::TestCudaMallocAsync::test_device_memory_used, test/test_cuda.py::TestCudaMallocAsync::test_direct_traceback, test/test_cuda.py::TestCudaMallocAsync::test_memory_compile_regions, test/test_cuda.py::TestCudaMallocAsync::test_memory_plots, test/test_cuda.py::TestCudaMallocAsync::test_memory_plots_free_segment_stack, test/test_cuda.py::TestCudaMallocAsync::test_memory_plots_free_stack, test/test_cuda.py::TestCudaMallocAsync::test_memory_plots_history_context, test/test_cuda.py::TestCudaMallocAsync::test_memory_profiler_viz, test/test_cuda.py::TestCudaMallocAsync::test_memory_snapshot, test/test_cuda.py::TestCudaMallocAsync::test_memory_snapshot_script, test/test_cuda.py::TestCudaMallocAsync::test_memory_snapshot_with_cpp, test/test_cuda.py::TestCudaMallocAsync::test_notifies_oom, test/test_cuda.py::TestCudaMallocAsync::test_nvml_get_handler, test/test_cuda.py::TestCudaMallocAsync::test_power_draw, test/test_cuda.py::TestCudaMallocAsync::test_raises_oom_max_split_size_mb_setting_False, test/test_cuda.py::TestCudaMallocAsync::test_raises_oom_max_split_size_mb_setting_True, test/test_cuda.py::TestCudaMallocAsync::test_raw_amdsmi_device_count, test/test_cuda.py::TestCudaMallocAsync::test_raw_amdsmi_device_uuids, test/test_cuda.py::TestCudaMallocAsync::test_temperature, test/test_cuda.py::TestCudaMallocAsync::test_uuid_visible_devices, test/test_cuda.py::TestBlockStateAbsorption::test_additional_free_following_checkpoint, test/test_cuda.py::TestBlockStateAbsorption::test_allocate_in_thread_to_pool, test/test_cuda.py::TestBlockStateAbsorption::test_allocated_in_middle_of_segment, test/test_cuda.py::TestBlockStateAbsorption::test_assigning_back_deleter_fns_to_tensor, test/test_cuda.py::TestBlockStateAbsorption::test_check_pool_live_allocations, test/test_cuda.py::TestBlockStateAbsorption::test_middle_allocations_contiguous, test/test_cuda.py::TestBlockStateAbsorption::test_multiple_middle_allocations, test/test_cuda.py::TestBlockStateAbsorption::test_no_triton_on_import, test/test_cuda.py::TestBlockStateAbsorption::test_resnet, test/test_cuda.py::TestBlockStateAbsorption::test_simple, test/test_cuda.py::TestBlockStateAbsorption::test_tensor_dies_after_checkpoint, test/test_cuda.py::TestMemPool::test_mempool_empty_cache, test/test_cuda.py::TestMemPool::test_mempool_emptycache_multithread, test/test_cuda.py::TestMemPool::test_mempool_expandable, test/test_cuda.py::TestMemPool::test_mempool_id, test/test_cuda.py::TestMemPool::test_mempool_multithread, test/test_cuda.py::TestMemPool::test_mempool_with_allocator, test/test_cuda.py::TestGDS::test_gds_read_write_tensors, test/test_cuda.py::TestCudaAutocast::test_autocast_banned, test/test_cuda.py::TestCudaAutocast::test_autocast_cat_jit, test/test_cuda.py::TestCudaAutocast::test_autocast_checkpointing, test/test_cuda.py::TestCudaAutocast::test_autocast_custom_cast_inputs, test/test_cuda.py::TestCudaAutocast::test_autocast_custom_deprecated_warning, test/test_cuda.py::TestCudaAutocast::test_autocast_custom_enabled, test/test_cuda.py::TestCudaAutocast::test_autocast_ignored_types, test/test_cuda.py::TestCudaAutocast::test_autocast_linalg_fp16, test/test_cuda.py::TestCudaAutocast::test_autocast_methods_expect_builtin_promote, test/test_cuda.py::TestCudaAutocast::test_autocast_methods_fp16, test/test_cuda.py::TestCudaAutocast::test_autocast_methods_fp32, test/test_cuda.py::TestCudaAutocast::test_autocast_nn_bf16, test/test_cuda.py::TestCudaAutocast::test_autocast_nn_fp16, test/test_cuda.py::TestCudaAutocast::test_autocast_nn_fp32, test/test_cuda.py::TestCudaAutocast::test_autocast_rnn, test/test_cuda.py::TestCudaAutocast::test_autocast_torch_bf16, test/test_cuda.py::TestCudaAutocast::test_autocast_torch_expect_builtin_promote, test/test_cuda.py::TestCudaAutocast::test_autocast_torch_fp16, test/test_cuda.py::TestCudaAutocast::test_autocast_torch_fp32, test/test_cuda.py::TestCudaAutocast::test_autocast_torch_need_autocast_promote, test/test_cuda.py::TestCudaAutocast::test_cuda_autocast_deprecated_warning, test/test_cuda.py::TestCompileKernel::test_compile_kernel, test/test_cuda.py::TestCompileKernel::test_compile_kernel_advanced, test/test_cuda.py::TestCompileKernel::test_compile_kernel_as_custom_op, test/test_cuda.py::TestCompileKernel::test_compile_kernel_custom_op_validation, test/test_cuda.py::TestCudaOptimsCPU::test_grad_scaler_with_preset_grad_scale_in_place_unscale_False_AdamW_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_grad_scaler_with_preset_grad_scale_in_place_unscale_False_Adam_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_grad_scaler_with_preset_grad_scale_in_place_unscale_False_SGD_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_grad_scaler_with_preset_grad_scale_in_place_unscale_True_AdamW_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_grad_scaler_with_preset_grad_scale_in_place_unscale_True_Adam_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_grad_scaler_with_preset_grad_scale_in_place_unscale_True_SGD_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_grad_scaling_autocast_fused_optimizers_Adagrad_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_grad_scaling_autocast_fused_optimizers_AdamW_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_grad_scaling_autocast_fused_optimizers_Adam_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_grad_scaling_autocast_fused_optimizers_SGD_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_graph_grad_scaling_foreach_False_fused_False_AdamW_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_graph_grad_scaling_foreach_False_fused_False_Adam_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_graph_grad_scaling_foreach_False_fused_False_SGD_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_graph_grad_scaling_foreach_False_fused_True_AdamW_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_graph_grad_scaling_foreach_False_fused_True_Adam_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_graph_grad_scaling_foreach_False_fused_True_SGD_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_graph_grad_scaling_foreach_True_fused_False_AdamW_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_graph_grad_scaling_foreach_True_fused_False_Adam_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_graph_grad_scaling_foreach_True_fused_False_SGD_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_graph_optims_ASGD_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_graph_optims_Adadelta_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_graph_optims_AdamW_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_graph_optims_Adam_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_graph_optims_Adamax_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_graph_optims_NAdam_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_graph_optims_RAdam_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_graph_optims_RMSprop_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_graph_optims_Rprop_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_graph_scaling_fused_optimizers_AdamW_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_graph_scaling_fused_optimizers_Adam_cpu_float32, test/test_cuda.py::TestCudaOptimsCPU::test_graph_scaling_fused_optimizers_SGD_cpu_float32, test/test_cuda.py::TestCudaDeviceParametrizedCPU::test_graph_external_wait_and_record_cpu 2025-08-14T22:12:09.4745590Z 2025-08-14T22:12:10.8503314Z Running inductor/test_torchinductor_codegen_dynamic_shapes 1/1 ... [2025-08-14 22:12:10.842132] 2025-08-14T22:12:10.8503960Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:12:10.8510198Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_torchinductor_codegen_dynamic_shapes.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:12:10.842132] 2025-08-14T22:12:15.0419317Z Running inductor/test_cuda_repro 1/1 ... [2025-08-14 22:12:15.041381] 2025-08-14T22:12:15.0419899Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:12:15.0426956Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cuda_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:12:15.042015] 2025-08-14T22:12:22.2648769Z 2025-08-14T22:12:22.2650285Z inductor/test_torchinductor_codegen_dynamic_shapes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_torchinductor_codegen_dynamic_shapes_1.1_76cd0437bf01c33b_.log 2025-08-14T22:12:22.2651246Z 2025-08-14T22:12:26.3304636Z 2025-08-14T22:12:26.3305898Z inductor/test_cuda_repro 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cuda_repro_1.1_f2cabc2428e67709_.log 2025-08-14T22:12:26.3306643Z 2025-08-14T22:12:27.9242755Z Running dynamo/test_unspec 1/1 ... [2025-08-14 22:12:27.921090] 2025-08-14T22:12:27.9243275Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:12:27.9250412Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_unspec.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:12:27.921090] 2025-08-14T22:12:31.9134664Z Running inductor/test_mkldnn_pattern_matcher 1/1 ... [2025-08-14 22:12:31.913279] 2025-08-14T22:12:31.9135400Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:12:31.9142318Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_mkldnn_pattern_matcher.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:12:31.913899] 2025-08-14T22:12:33.2976112Z 2025-08-14T22:12:33.2977072Z dynamo/test_unspec 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_unspec_1.1_51258cfa370ebd37_.log 2025-08-14T22:12:33.2977732Z 2025-08-14T22:12:38.8422632Z Running inductor/test_compiled_optimizers 1/1 ... [2025-08-14 22:12:38.841457] 2025-08-14T22:12:38.8423200Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:12:38.8439736Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_compiled_optimizers.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:12:38.843223] 2025-08-14T22:12:43.0081972Z 2025-08-14T22:12:43.0083546Z inductor/test_mkldnn_pattern_matcher 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_mkldnn_pattern_matcher_1.1_49be4504efe32363_.log 2025-08-14T22:12:43.0084615Z 2025-08-14T22:12:48.6554057Z Running inductor/test_coordinate_descent_tuner 1/1 ... [2025-08-14 22:12:48.651120] 2025-08-14T22:12:48.6554646Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:12:48.6561306Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_coordinate_descent_tuner.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:12:48.651120] 2025-08-14T22:12:51.3637441Z 2025-08-14T22:12:51.3638808Z inductor/test_compiled_optimizers 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_compiled_optimizers_1.1_f744bc9a3a3721a2_.log 2025-08-14T22:12:51.3639630Z 2025-08-14T22:12:57.1638775Z Running inductor/test_dependencies 1/1 ... [2025-08-14 22:12:57.163568] 2025-08-14T22:12:57.1639352Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:12:57.1648380Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_dependencies.py', '-m', 'not serial', '--shard-id=1', '--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:57.164218] 2025-08-14T22:13:00.1006055Z 2025-08-14T22:13:00.1007515Z inductor/test_coordinate_descent_tuner 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_coordinate_descent_tuner_1.1_561ac1191c4be2fb_.log 2025-08-14T22:13:00.1008448Z 2025-08-14T22:13:05.8656384Z Running inductor/test_group_batch_fusion 1/1 ... [2025-08-14 22:13:05.859511] 2025-08-14T22:13:05.8656945Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:13:05.8663433Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_group_batch_fusion.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:13:05.859511] 2025-08-14T22:13:08.3886363Z 2025-08-14T22:13:08.3887472Z inductor/test_dependencies 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_dependencies_1.1_6c3b8ef9d1b79048_.log 2025-08-14T22:13:08.3888254Z 2025-08-14T22:13:14.0283531Z Running inductor/test_minifier 1/1 ... [2025-08-14 22:13:14.013044] 2025-08-14T22:13:14.0284062Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:13:14.0291252Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_minifier.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:13:14.028882] 2025-08-14T22:13:17.5457052Z 2025-08-14T22:13:17.5458126Z inductor/test_group_batch_fusion 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_group_batch_fusion_1.1_583a9416c7da65eb_.log 2025-08-14T22:13:17.5458900Z 2025-08-14T22:13:23.8282714Z Running inductor/test_config 1/1 ... [2025-08-14 22:13:23.827032] 2025-08-14T22:13:23.8283223Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:13:23.8290048Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_config.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:13:23.828248] 2025-08-14T22:13:25.2309935Z 2025-08-14T22:13:25.2311181Z inductor/test_minifier 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_minifier_1.1_88cf04791955c6c8_.log 2025-08-14T22:13:31.1484266Z 2025-08-14T22:13:31.1485018Z Running dynamo/test_higher_order_ops 1/1 ... [2025-08-14 22:13:31.140376] 2025-08-14T22:13:31.1485775Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:13:31.1492014Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_higher_order_ops.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:13:31.140376] 2025-08-14T22:13:35.3362332Z 2025-08-14T22:13:35.3363471Z inductor/test_config 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_config_1.1_482cfc8cdbe51b42_.log 2025-08-14T22:13:35.3364462Z 2025-08-14T22:13:41.2280723Z Running dynamo/test_activation_checkpointing 1/1 ... [2025-08-14 22:13:41.227526] 2025-08-14T22:13:41.2281401Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:13:41.2288739Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_activation_checkpointing.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:13:41.228175] 2025-08-14T22:13:43.5624944Z 2025-08-14T22:13:43.5626550Z dynamo/test_higher_order_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_higher_order_ops_1.1_48cae673a5751ac3_.log 2025-08-14T22:13:43.5628221Z 2025-08-14T22:13:49.7428966Z Running dynamo/test_misc 1/1 ... [2025-08-14 22:13:49.742683] 2025-08-14T22:13:49.7429561Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:13:49.7437540Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_misc.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:13:49.743509] 2025-08-14T22:13:52.5714674Z 2025-08-14T22:13:52.5716295Z dynamo/test_activation_checkpointing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_activation_checkpointing_1.1_40fedaf9042f4065_.log 2025-08-14T22:13:52.5717329Z 2025-08-14T22:13:57.1689788Z 2025-08-14T22:13:57.1690933Z dynamo/test_misc 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_misc_1.1_1534373f27306e93_.log 2025-08-14T22:13:57.1691724Z 2025-08-14T22:13:58.7882537Z Running dynamo/test_exc 1/1 ... [2025-08-14 22:13:58.787199] 2025-08-14T22:13:58.7883314Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:13:58.7890133Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_exc.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:13:58.787199] 2025-08-14T22:14:02.9265313Z Running inductor/test_padding 1/1 ... [2025-08-14 22:14:02.926242] 2025-08-14T22:14:02.9265829Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:14:02.9277305Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_padding.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:14:02.926954] 2025-08-14T22:14:03.9013430Z 2025-08-14T22:14:03.9014716Z dynamo/test_exc 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_exc_1.1_09a1e73d58fe9fe4_.log 2025-08-14T22:14:03.9015348Z 2025-08-14T22:14:09.9435955Z Running inductor/test_halide 1/1 ... [2025-08-14 22:14:09.940691] 2025-08-14T22:14:09.9436463Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:14:09.9443720Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_halide.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:14:09.940691] 2025-08-14T22:14:14.3937242Z 2025-08-14T22:14:14.3938654Z inductor/test_padding 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_padding_1.1_4923275f656e2c63_.log 2025-08-14T22:14:14.3939616Z 2025-08-14T22:14:20.3352581Z Running inductor/test_cpu_select_algorithm 1/1 ... [2025-08-14 22:14:20.334669] 2025-08-14T22:14:20.3353561Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:14:20.3360917Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cpu_select_algorithm.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:14:20.335854] 2025-08-14T22:14:21.2099193Z 2025-08-14T22:14:21.2100120Z inductor/test_halide 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_halide_1.1_d7458e4fc4bcb539_.log 2025-08-14T22:14:21.2103556Z 2025-08-14T22:14:27.1556532Z Running inductor/test_external_callables 1/1 ... [2025-08-14 22:14:27.155400] 2025-08-14T22:14:27.1557092Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:14:27.1565064Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_external_callables.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:14:27.156297] 2025-08-14T22:14:32.3093793Z 2025-08-14T22:14:32.3095556Z inductor/test_external_callables 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_external_callables_1.1_941df1b5de11b236_.log 2025-08-14T22:14:32.3096837Z 2025-08-14T22:14:32.3687272Z 2025-08-14T22:14:32.3688478Z inductor/test_cpu_select_algorithm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cpu_select_algorithm_1.1_00e196097ee7f727_.log 2025-08-14T22:14:32.3689430Z 2025-08-14T22:14:37.9794816Z Running inductor/test_triton_syntax 1/1 ... [2025-08-14 22:14:37.978251] 2025-08-14T22:14:37.9795310Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:14:37.9801810Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_triton_syntax.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:14:37.978251] 2025-08-14T22:14:38.1856780Z Running inductor/test_pad_mm 1/1 ... [2025-08-14 22:14:38.182681] 2025-08-14T22:14:38.1857266Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:14:38.1864108Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_pad_mm.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:14:38.185740] 2025-08-14T22:14:48.9741004Z 2025-08-14T22:14:48.9742778Z inductor/test_triton_syntax 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_triton_syntax_1.1_e451524a90f7b482_.log 2025-08-14T22:14:51.2502321Z 2025-08-14T22:14:51.2502334Z 2025-08-14T22:14:51.2503739Z inductor/test_pad_mm 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_pad_mm_1.1_6c4a0a8aeffea679_.log 2025-08-14T22:14:51.2504528Z 2025-08-14T22:14:54.9455575Z Running export/test_export 1/1 ... [2025-08-14 22:14:54.945300] 2025-08-14T22:14:54.9456194Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:14:54.9463486Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_export.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:14:54.945596] 2025-08-14T22:14:56.9225826Z Running inductor/test_memory 1/1 ... [2025-08-14 22:14:56.914296] 2025-08-14T22:14:56.9226668Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:14:56.9234150Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_memory.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:14:56.922992] 2025-08-14T22:15:09.1570022Z 2025-08-14T22:15:09.1571976Z inductor/test_memory 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_memory_1.1_494c3d3426c4abf6_.log 2025-08-14T22:15:09.1573028Z 2025-08-14T22:15:15.0383190Z Running inductor/test_triton_extension_backend 1/1 ... [2025-08-14 22:15:15.032760] 2025-08-14T22:15:15.0383776Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:15:15.0390024Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_triton_extension_backend.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:15:15.032760] 2025-08-14T22:15:19.0690494Z 2025-08-14T22:15:19.0699048Z export/test_export 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_export_1.1_8d8dea0ba4a8b6a8_.log 2025-08-14T22:15:19.0833268Z Running 435 items in this shard: test/export/test_export.py::TestDynamismExpression::test_export_assume_static_by_default, test/export/test_export.py::TestDynamismExpression::test_export_constraints_error, test/export/test_export.py::TestDynamismExpression::test_export_constraints_error_not_in_range, test/export/test_export.py::TestDynamismExpression::test_export_inline_constraints, test/export/test_export.py::TestDynamismExpression::test_export_slice_maxsize, test/export/test_export.py::TestDynamismExpression::test_export_slice_unbacked_dim1, test/export/test_export.py::TestDynamismExpression::test_export_strict_narrow_unbacked_expr, test/export/test_export.py::TestDynamismExpression::test_no_grad_param_inplace, test/export/test_export.py::TestDynamismExpression::test_reshape_view_backed_size_oblivious, test/export/test_export.py::TestExport::test__scaled_dot_product_flash_attention, test/export/test_export.py::TestExport::test_additional_inputs_constants, test/export/test_export.py::TestExport::test_allow_explicit_guards_as_runtime_asserts, test/export/test_export.py::TestExport::test_args_type_checked, test/export/test_export.py::TestExport::test_aten_lift_fresh_copy, test/export/test_export.py::TestExport::test_attention, test/export/test_export.py::TestExport::test_attr_assignment_extra, test/export/test_export.py::TestExport::test_automatic_constrain_size, test/export/test_export.py::TestExport::test_automatic_dynamic_shapes_constant_relation, test/export/test_export.py::TestExport::test_automatic_dynamic_shapes_linear_relation, test/export/test_export.py::TestExport::test_automatic_dynamic_shapes_simple_equality, test/export/test_export.py::TestExport::test_baddbmm, test/export/test_export.py::TestExport::test_basic, test/export/test_export.py::TestExport::test_basic_non_strict_fake_tensor, test/export/test_export.py::TestExport::test_basic_non_strict_real_tensor, test/export/test_export.py::TestExport::test_bincount, test/export/test_export.py::TestExport::test_buffer_util, test/export/test_export.py::TestExport::test_capture_subclass_constructor, test/export/test_export.py::TestExport::test_capture_subclass_constructor_torch_ir, test/export/test_export.py::TestExport::test_capture_subclass_wrong, test/export/test_export.py::TestExport::test_ccode_python_mod, test/export/test_export.py::TestExport::test_check_specialized_int, test/export/test_export.py::TestExport::test_checks_to_constrain_range, test/export/test_export.py::TestExport::test_cleanup_dynamic_markers, test/export/test_export.py::TestExport::test_colin_unbacked_backed_vr_sub, test/export/test_export.py::TestExport::test_colon_parameter, test/export/test_export.py::TestExport::test_compiling_state, test/export/test_export.py::TestExport::test_cond_access_identical_symint_closure, test/export/test_export.py::TestExport::test_cond_branches_return_constant_int, test/export/test_export.py::TestExport::test_cond_branches_return_same_int, test/export/test_export.py::TestExport::test_cond_buffers, test/export/test_export.py::TestExport::test_cond_contains_unbacked_no_escape, test/export/test_export.py::TestExport::test_cond_int_closure, test/export/test_export.py::TestExport::test_cond_unflatten, test/export/test_export.py::TestExport::test_cond_with_module_stack_export_with, test/export/test_export.py::TestExport::test_cond_with_module_stack_export_with_unflatten, test/export/test_export.py::TestExport::test_constant_aliasing, test/export/test_export.py::TestExport::test_constant_input_naming, test/export/test_export.py::TestExport::test_constant_no_user_inp, test/export/test_export.py::TestExport::test_constant_output, test/export/test_export.py::TestExport::test_constant_output_dup, test/export/test_export.py::TestExport::test_constant_requires_grad_const, test/export/test_export.py::TestExport::test_constant_return, test/export/test_export.py::TestExport::test_constant_tensor_mutation, test/export/test_export.py::TestExport::test_constant_tensor_with_non_functional, test/export/test_export.py::TestExport::test_constant_tensor_with_non_functional_nested, test/export/test_export.py::TestExport::test_constrain_decomp, test/export/test_export.py::TestExport::test_constrain_size_in_eager, test/export/test_export.py::TestExport::test_constrain_size_with_constrain_value, test/export/test_export.py::TestExport::test_constrain_size_with_various_cases, test/export/test_export.py::TestExport::test_conv_dynamic, test/export/test_export.py::TestExport::test_crop_like, test/export/test_export.py::TestExport::test_cse_for_symint, test/export/test_export.py::TestExport::test_custom_op_auto_functionalize, test/export/test_export.py::TestExport::test_custom_op_auto_functionalize_pre_dispatch, test/export/test_export.py::TestExport::test_custom_op_auto_warn_pre_dispatch, test/export/test_export.py::TestExport::test_custom_op_preserve, test/export/test_export.py::TestExport::test_custom_pytree, test/export/test_export.py::TestExport::test_custom_tag_metadata_re_export, test/export/test_export.py::TestExport::test_decomp_batch_norm_functional_predispatch, test/export/test_export.py::TestExport::test_decomp_item_in_prim_after_decomposition, test/export/test_export.py::TestExport::test_decomp_item_in_prim_before_decomposition, test/export/test_export.py::TestExport::test_default_decomposition_core_cia_ops, test/export/test_export.py::TestExport::test_derived_dim_1_2, test/export/test_export.py::TestExport::test_derived_dim_basic, test/export/test_export.py::TestExport::test_derived_dim_integer, test/export/test_export.py::TestExport::test_derived_dim_nested, test/export/test_export.py::TestExport::test_derived_dim_out_of_order, test/export/test_export.py::TestExport::test_derived_dim_out_of_order_repeat_derived, test/export/test_export.py::TestExport::test_derived_dim_out_of_order_simplified, test/export/test_export.py::TestExport::test_derived_dim_out_of_order_simplified_repeat_non_derived, test/export/test_export.py::TestExport::test_derived_dim_repeat_derived, test/export/test_export.py::TestExport::test_detect_leak_strict, test/export/test_export.py::TestExport::test_device_to_dynamic, test/export/test_export.py::TestExport::test_device_to_gpu, test/export/test_export.py::TestExport::test_device_to_mutation, test/export/test_export.py::TestExport::test_device_to_mutation_float, test/export/test_export.py::TestExport::test_device_to_static, test/export/test_export.py::TestExport::test_dim_1_2, test/export/test_export.py::TestExport::test_dim_auto_and_dim, test/export/test_export.py::TestExport::test_dim_dynamic, test/export/test_export.py::TestExport::test_dim_dynamic_divisibility, test/export/test_export.py::TestExport::test_dim_dynamic_specialization, test/export/test_export.py::TestExport::test_dim_hint_range_violations, test/export/test_export.py::TestExport::test_dim_hint_ranges, test/export/test_export.py::TestExport::test_disable_forced_specializations_errors, test/export/test_export.py::TestExport::test_disable_forced_specializations_ok, test/export/test_export.py::TestExport::test_distributed_all_gather, test/export/test_export.py::TestExport::test_distributed_all_gather_into_tensor, test/export/test_export.py::TestExport::test_distributed_all_reduce, test/export/test_export.py::TestExport::test_distributed_all_to_all_single, test/export/test_export.py::TestExport::test_distributed_reduce_scatter_tensor, test/export/test_export.py::TestExport::test_dont_duck_size_for_auto_dynamic, test/export/test_export.py::TestExport::test_double_lifted_constants, test/export/test_export.py::TestExport::test_draft_export_checks_aliasing, test/export/test_export.py::TestExport::test_draft_export_checks_mutation, test/export/test_export.py::TestExport::test_draft_export_checks_mutation_list, test/export/test_export.py::TestExport::test_draft_export_checks_mutation_with_nan, test/export/test_export.py::TestExport::test_draft_export_fake_kernel_inference_errors, test/export/test_export.py::TestExport::test_draft_export_infers_fake_kernel, test/export/test_export.py::TestExport::test_duplicate_modules_with_non_persistent_buffers, test/export/test_export.py::TestExport::test_dynamic_lr_shift, test/export/test_export.py::TestExport::test_dynamic_shapes_bounds, test/export/test_export.py::TestExport::test_dynamic_shapes_builder_basic, test/export/test_export.py::TestExport::test_dynamic_shapes_builder_kwargs, test/export/test_export.py::TestExport::test_dynamic_shapes_builder_pytree, test/export/test_export.py::TestExport::test_dynamic_shapes_dataclass, test/export/test_export.py::TestExport::test_dynamic_shapes_inferred_basic, test/export/test_export.py::TestExport::test_dynamic_shapes_serdes_generic, test/export/test_export.py::TestExport::test_dynamic_shapes_serdes_user_errors, test/export/test_export.py::TestExport::test_dynamic_shapes_serdes_various, test/export/test_export.py::TestExport::test_dynamic_shapes_spec_with_pytree, test/export/test_export.py::TestExport::test_dynamic_sym_round, test/export/test_export.py::TestExport::test_ends_of_bounds_oblivious, test/export/test_export.py::TestExport::test_error_does_not_reference_eager_fallback, test/export/test_export.py::TestExport::test_error_when_passing_mutating_primitive_op, test/export/test_export.py::TestExport::test_exception, test/export/test_export.py::TestExport::test_export_api_with_dynamic_shapes, test/export/test_export.py::TestExport::test_export_as_backend, test/export/test_export.py::TestExport::test_export_associative_scan_lifted_buffers, test/export/test_export.py::TestExport::test_export_associative_scan_symbol_dim, test/export/test_export.py::TestExport::test_export_associative_scan_symbol_scandim, test/export/test_export.py::TestExport::test_export_aten_to_unflatten, test/export/test_export.py::TestExport::test_export_aten_to_unflatten_subclass, test/export/test_export.py::TestExport::test_export_aten_to_unflatten_subclass_pre_dispatch, test/export/test_export.py::TestExport::test_export_cond_preserve_torch_fn_for_subgraphs, test/export/test_export.py::TestExport::test_export_cond_symbool_pred, test/export/test_export.py::TestExport::test_export_cond_warns_constant_pred, test/export/test_export.py::TestExport::test_export_custom_decomp_table_basic_pop, test/export/test_export.py::TestExport::test_export_custom_decomp_table_container_methods, test/export/test_export.py::TestExport::test_export_custom_op_lib, test/export/test_export.py::TestExport::test_export_custom_triton_kernel, test/export/test_export.py::TestExport::test_export_custom_triton_kernel_mutable, test/export/test_export.py::TestExport::test_export_decomp_torture_case_1, test/export/test_export.py::TestExport::test_export_decomp_torture_case_2, test/export/test_export.py::TestExport::test_export_decomps_dynamic, test/export/test_export.py::TestExport::test_export_decomps_simple, test/export/test_export.py::TestExport::test_export_dynamo_config, test/export/test_export.py::TestExport::test_export_for_training_run_decomp, test/export/test_export.py::TestExport::test_export_for_training_with_container_type, test/export/test_export.py::TestExport::test_export_for_training_with_dynamic_shapes, test/export/test_export.py::TestExport::test_export_for_training_with_mutation, test/export/test_export.py::TestExport::test_export_for_training_with_state_dict_hooks, test/export/test_export.py::TestExport::test_export_func_with_default_kwargs, test/export/test_export.py::TestExport::test_export_func_with_keyword_only_args, test/export/test_export.py::TestExport::test_export_func_with_kwargs, test/export/test_export.py::TestExport::test_export_func_with_pytree_kwargs, test/export/test_export.py::TestExport::test_export_func_with_var_keyword_args, test/export/test_export.py::TestExport::test_export_func_with_var_keyword_pytree_args, test/export/test_export.py::TestExport::test_export_func_with_var_postional_args, test/export/test_export.py::TestExport::test_export_function_schema, test/export/test_export.py::TestExport::test_export_graph_with_no_inputs, test/export/test_export.py::TestExport::test_export_input_mutation_bug, test/export/test_export.py::TestExport::test_export_input_mutation_dynamic_shape, test/export/test_export.py::TestExport::test_export_input_mutation_static_shape, test/export/test_export.py::TestExport::test_export_linear_preserve_dynamic_shape, test/export/test_export.py::TestExport::test_export_max_nonstrict, test/export/test_export.py::TestExport::test_export_max_onnx_reported, test/export/test_export.py::TestExport::test_export_method, test/export/test_export.py::TestExport::test_export_mod_constraints, test/export/test_export.py::TestExport::test_export_module, test/export/test_export.py::TestExport::test_export_preserve_linear_at_aot_level, test/export/test_export.py::TestExport::test_export_preserve_linear_but_not_custom_op, test/export/test_export.py::TestExport::test_export_scan_pytree_output, test/export/test_export.py::TestExport::test_export_script_module, test/export/test_export.py::TestExport::test_export_statically_known_true, test/export/test_export.py::TestExport::test_export_then_compile_tensor_ctor, test/export/test_export.py::TestExport::test_export_with_autocast, test/export/test_export.py::TestExport::test_export_with_fake_tensor_inputs, test/export/test_export.py::TestExport::test_export_with_fake_tensor_inputs_on_cuda_devices, test/export/test_export.py::TestExport::test_export_with_inline_constraints, test/export/test_export.py::TestExport::test_export_with_inline_constraints_complex, test/export/test_export.py::TestExport::test_export_with_set_grad_enabled, test/export/test_export.py::TestExport::test_export_with_wrong_inputs, test/export/test_export.py::TestExport::test_external_call_non_strict_real_tensor, test/export/test_export.py::TestExport::test_fake_inputs, test/export/test_export.py::TestExport::test_fake_weights, test/export/test_export.py::TestExport::test_filter_traceback_frames, test/export/test_export.py::TestExport::test_float_conversion, test/export/test_export.py::TestExport::test_float_conversion_from_int, test/export/test_export.py::TestExport::test_fqn, test/export/test_export.py::TestExport::test_from_node_metadata_export, test/export/test_export.py::TestExport::test_full_on_scalar_tensor, test/export/test_export.py::TestExport::test_hints_wrapper, test/export/test_export.py::TestExport::test_hoo_inline_users_issue, test/export/test_export.py::TestExport::test_if_functional, test/export/test_export.py::TestExport::test_if_post_autograd_op_preserved, test/export/test_export.py::TestExport::test_inline_script_class_method, test/export/test_export.py::TestExport::test_inline_script_class_method_recursive, test/export/test_export.py::TestExport::test_inline_script_function, test/export/test_export.py::TestExport::test_inline_script_method, test/export/test_export.py::TestExport::test_int_shape_specialization, test/export/test_export.py::TestExport::test_intermediate_shape_comp, test/export/test_export.py::TestExport::test_is_exporting, test/export/test_export.py::TestExport::test_is_non_negative_check_function, test/export/test_export.py::TestExport::test_is_nonzero, test/export/test_export.py::TestExport::test_isnonzero, test/export/test_export.py::TestExport::test_issue_113041, test/export/test_export.py::TestExport::test_issue_157289, test/export/test_export.py::TestExport::test_istft_op, test/export/test_export.py::TestExport::test_keep_composite_ops_invalid, test/export/test_export.py::TestExport::test_keep_composite_ops_linear_convd, test/export/test_export.py::TestExport::test_keep_composite_ops_linear_convd_for_training_ir, test/export/test_export.py::TestExport::test_kwarg_dynamic_shapes_diff_order, test/export/test_export.py::TestExport::test_kwargs_reorder, test/export/test_export.py::TestExport::test_layer_sharing, test/export/test_export.py::TestExport::test_lazy_module_kwargs, test/export/test_export.py::TestExport::test_lifted_constants, test/export/test_export.py::TestExport::test_linear_conv, test/export/test_export.py::TestExport::test_malformed_fqn_from_source_name, test/export/test_export.py::TestExport::test_map, test/export/test_export.py::TestExport::test_map_buffers, test/export/test_export.py::TestExport::test_mask_nonzero_static, test/export/test_export.py::TestExport::test_masked_select_dynamic, test/export/test_export.py::TestExport::test_math_pow, test/export/test_export.py::TestExport::test_mismatched_dynamic_shapes, test/export/test_export.py::TestExport::test_mixed_input, test/export/test_export.py::TestExport::test_module, test/export/test_export.py::TestExport::test_module_dict_key, test/export/test_export.py::TestExport::test_module_input, test/export/test_export.py::TestExport::test_module_input_subclasses_parameterization_nested, test/export/test_export.py::TestExport::test_module_list_slice, test/export/test_export.py::TestExport::test_module_with_dict_container_inp_out, test/export/test_export.py::TestExport::test_modules_access_for_deleted_submodule, test/export/test_export.py::TestExport::test_more_multidimensional_slicing, test/export/test_export.py::TestExport::test_multidimensional_slicing, test/export/test_export.py::TestExport::test_multinomial_dynamic, test/export/test_export.py::TestExport::test_multiple_definitions_same_name_dim, test/export/test_export.py::TestExport::test_nested_dynamic_shapes_spec, test/export/test_export.py::TestExport::test_nested_module, test/export/test_export.py::TestExport::test_nested_module_with_constant_buffer, test/export/test_export.py::TestExport::test_nested_module_with_init_buffer, test/export/test_export.py::TestExport::test_nested_module_with_parameter, test/export/test_export.py::TestExport::test_nn_module_stack, test/export/test_export.py::TestExport::test_nn_module_stack_shared_submodule, test/export/test_export.py::TestExport::test_no_check_is_size_error, test/export/test_export.py::TestExport::test_no_suggested_fixes_for_data_dependent_errors, test/export/test_export.py::TestExport::test_no_tensor_computation, test/export/test_export.py::TestExport::test_no_tensor_computation_2, test/export/test_export.py::TestExport::test_no_tensor_computation_3, test/export/test_export.py::TestExport::test_no_tensor_computation_4, test/export/test_export.py::TestExport::test_non_arg_name_dynamic_shapes_api, test/export/test_export.py::TestExport::test_non_arg_name_dynamic_shapes_api_with_container_type, test/export/test_export.py::TestExport::test_non_arg_name_dynamic_shapes_api_with_kwarg, test/export/test_export.py::TestExport::test_non_persistent_buffer, test/export/test_export.py::TestExport::test_non_strict_dynamic_shapes, test/export/test_export.py::TestExport::test_non_strict_dynamic_shapes_suggested_fixes, test/export/test_export.py::TestExport::test_none_buffers, test/export/test_export.py::TestExport::test_nonstrict_retrace_preserves_metadata, test/export/test_export.py::TestExport::test_nonzero_2, test/export/test_export.py::TestExport::test_nonzero_dynamic, test/export/test_export.py::TestExport::test_not_registered_parameter, test/export/test_export.py::TestExport::test_operator_aten_tensor_mode_variant, test/export/test_export.py::TestExport::test_output_node_name, test/export/test_export.py::TestExport::test_pad_sequence, test/export/test_export.py::TestExport::test_param_util, test/export/test_export.py::TestExport::test_partial_patched_forward, test/export/test_export.py::TestExport::test_placeholder_naming_collisions, test/export/test_export.py::TestExport::test_placeholder_naming_collisions_hoo_subgraphs, test/export/test_export.py::TestExport::test_placeholder_naming_order, test/export/test_export.py::TestExport::test_placeholder_naming_order_variadic, test/export/test_export.py::TestExport::test_placeholder_update_preserving, test/export/test_export.py::TestExport::test_predispatch_cond, test/export/test_export.py::TestExport::test_predispatch_grad_wrappers, test/export/test_export.py::TestExport::test_preserve_module_call_signature_unflatten_specialization, test/export/test_export.py::TestExport::test_preserve_requires_grad_placeholders, test/export/test_export.py::TestExport::test_preserve_shape_dynamism_for_unused_inputs, test/export/test_export.py::TestExport::test_profiling_code, test/export/test_export.py::TestExport::test_python_asserts_with_sym_int, test/export/test_export.py::TestExport::test_pytree_register_data_class, test/export/test_export.py::TestExport::test_pytree_register_nested_data_class, test/export/test_export.py::TestExport::test_raise_user_error_when_guard_on_data_dependent_operation, test/export/test_export.py::TestExport::test_range_constraints_with_replacement, test/export/test_export.py::TestExport::test_real_tensor_alias_dtype_mismatch, test/export/test_export.py::TestExport::test_real_tensor_bool_cast, test/export/test_export.py::TestExport::test_real_tensor_errors_on_aliasing_custom_op, test/export/test_export.py::TestExport::test_real_tensor_for_max_op, test/export/test_export.py::TestExport::test_real_tensor_size_mismatch, test/export/test_export.py::TestExport::test_redundant_assert_max_upper_bound, test/export/test_export.py::TestExport::test_redundant_asserts, test/export/test_export.py::TestExport::test_refine_dynamic_shapes_from_suggested_fixes, test/export/test_export.py::TestExport::test_register_constant, test/export/test_export.py::TestExport::test_repeat_interleave, test/export/test_export.py::TestExport::test_replace_unbacked_with_very_large_upperbound, test/export/test_export.py::TestExport::test_replaced_unbacked_bindings, test/export/test_export.py::TestExport::test_reshape_view_helper, test/export/test_export.py::TestExport::test_retracable_ep, test/export/test_export.py::TestExport::test_retrace_pre_autograd, test/export/test_export.py::TestExport::test_run_decomposition_supports_user_input_mutation, test/export/test_export.py::TestExport::test_run_decompositions_keep_metadata, test/export/test_export.py::TestExport::test_run_decompositions_keep_tensor_constant_metadata, test/export/test_export.py::TestExport::test_runtime_assert_for_prim, test/export/test_export.py::TestExport::test_runtime_assert_for_prm_str, test/export/test_export.py::TestExport::test_runtime_assert_with_size, test/export/test_export.py::TestExport::test_sdpa_gqa, test/export/test_export.py::TestExport::test_sequential_slicing, test/export/test_export.py::TestExport::test_set_example_inputs, test/export/test_export.py::TestExport::test_set_grad_as_side_effect, test/export/test_export.py::TestExport::test_set_grad_empty, test/export/test_export.py::TestExport::test_set_grad_unflatten, test/export/test_export.py::TestExport::test_setgrad_lifted_tensor, test/export/test_export.py::TestExport::test_shared_submodule_nn_module_stack, test/export/test_export.py::TestExport::test_simple_export_for_training, test/export/test_export.py::TestExport::test_simple_unbacked_view, test/export/test_export.py::TestExport::test_size_input, test/export/test_export.py::TestExport::test_slice_nn_module_stack, test/export/test_export.py::TestExport::test_solver_unsupported_sympy_function, test/export/test_export.py::TestExport::test_specialize_derived_dim_roots, test/export/test_export.py::TestExport::test_split_const_gm_with_lifted_constants, test/export/test_export.py::TestExport::test_stack_trace, test/export/test_export.py::TestExport::test_stack_trace_make_fx, test/export/test_export.py::TestExport::test_state_primitives, test/export/test_export.py::TestExport::test_state_shape_attribute_assignment, test/export/test_export.py::TestExport::test_state_tensors, test/export/test_export.py::TestExport::test_static_dim_constraints, test/export/test_export.py::TestExport::test_subclass_nested_attr_access, test/export/test_export.py::TestExport::test_subclass_nested_attr_access_complicated_metadata, test/export/test_export.py::TestExport::test_subclass_nested_attr_access_const_metadata, test/export/test_export.py::TestExport::test_subclass_nested_attr_access_const_metadata_not_top_level, test/export/test_export.py::TestExport::test_subclass_nested_attr_access_submodule, test/export/test_export.py::TestExport::test_subclasses_parameterization, test/export/test_export.py::TestExport::test_subclasses_parameterization_nested, test/export/test_export.py::TestExport::test_suggest_torch_checks_with_non_negative_check, test/export/test_export.py::TestExport::test_suggest_torch_checks_with_regular_check, test/export/test_export.py::TestExport::test_suggested_fixes_for_data_dependent_errors_basic, test/export/test_export.py::TestExport::test_suggested_fixes_for_data_dependent_errors_puzzlers, test/export/test_export.py::TestExport::test_suggested_fixes_new_roots, test/export/test_export.py::TestExport::test_sym_float_operators, test/export/test_export.py::TestExport::test_sym_or_sym_and, test/export/test_export.py::TestExport::test_sym_sqrt, test/export/test_export.py::TestExport::test_symbool_item, test/export/test_export.py::TestExport::test_symfloat_item, test/export/test_export.py::TestExport::test_symint_input_additional_inputs, test/export/test_export.py::TestExport::test_symint_input_basic, test/export/test_export.py::TestExport::test_symint_input_ranges, test/export/test_export.py::TestExport::test_symint_input_shapes_collection, test/export/test_export.py::TestExport::test_symint_input_specialization, test/export/test_export.py::TestExport::test_symint_item, test/export/test_export.py::TestExport::test_symint_output, test/export/test_export.py::TestExport::test_symint_tensor_return, test/export/test_export.py::TestExport::test_tensor_attribute_zero_args, test/export/test_export.py::TestExport::test_tensor_constant_aten_to, test/export/test_export.py::TestExport::test_tensor_constant_with_wrapped_method, test/export/test_export.py::TestExport::test_to_module_with_mutated_buffer, test/export/test_export.py::TestExport::test_to_module_with_mutated_buffer_multiple, test/export/test_export.py::TestExport::test_to_module_with_mutated_buffer_multiple_update_sub_later, test/export/test_export.py::TestExport::test_tolist, test/export/test_export.py::TestExport::test_torch_check_eq_commutativity, test/export/test_export.py::TestExport::test_torch_fn, test/export/test_export.py::TestExport::test_trace_under_fake, test/export/test_export.py::TestExport::test_train_eval_on_exported_preautograd_module, test/export/test_export.py::TestExport::test_unbacked_3d_matmul, test/export/test_export.py::TestExport::test_unbacked_bincount, test/export/test_export.py::TestExport::test_unbacked_bindings_for_divisible_u_symint, test/export/test_export.py::TestExport::test_unbacked_deferred_runtime_retrace, test/export/test_export.py::TestExport::test_unbacked_expand, test/export/test_export.py::TestExport::test_unbacked_infer_size, test/export/test_export.py::TestExport::test_unbacked_kth_value, test/export/test_export.py::TestExport::test_unbacked_linear_layer_norm_input, test/export/test_export.py::TestExport::test_unbacked_noncontig_lin, test/export/test_export.py::TestExport::test_unbacked_pad, test/export/test_export.py::TestExport::test_unbacked_scalar_constructor, test/export/test_export.py::TestExport::test_unbacked_slice, test/export/test_export.py::TestExport::test_unbacked_to_cond, test/export/test_export.py::TestExport::test_unbacked_to_cond_passthrough, test/export/test_export.py::TestExport::test_unbacked_unsqueeze, test/export/test_export.py::TestExport::test_unflatten_asserts, test/export/test_export.py::TestExport::test_unflatten_buffer_update_child2parent_swap, test/export/test_export.py::TestExport::test_unflatten_closure, test/export/test_export.py::TestExport::test_unflatten_isinstance, test/export/test_export.py::TestExport::test_unflatten_multiple_graphs_dispatch, test/export/test_export.py::TestExport::test_unflatten_multiple_graphs_preserve_signature_no_error, test/export/test_export.py::TestExport::test_unflatten_multiple_graphs_shared_submodule, test/export/test_export.py::TestExport::test_unflatten_multiple_graphs_state, test/export/test_export.py::TestExport::test_unflatten_no_unroll, test/export/test_export.py::TestExport::test_unflatten_placeholder_update_child2parent_swap, test/export/test_export.py::TestExport::test_unflatten_placeholder_update_grandchild2cousin_swap, test/export/test_export.py::TestExport::test_unflatten_random_dag_5, test/export/test_export.py::TestExport::test_unflatten_random_dag_6, test/export/test_export.py::TestExport::test_unflatten_random_dag_buf_8, test/export/test_export.py::TestExport::test_unflatten_random_dag_const_preserving_3, test/export/test_export.py::TestExport::test_unflatten_random_dag_const_preserving_3_1, test/export/test_export.py::TestExport::test_unflatten_random_dag_mutating_buf_4, test/export/test_export.py::TestExport::test_unflatten_random_dag_mutating_buf_6, test/export/test_export.py::TestExport::test_unflatten_random_dag_mutating_buf_9, test/export/test_export.py::TestExport::test_unflatten_random_dag_mutating_buf_preserving_10, test/export/test_export.py::TestExport::test_unflatten_random_dag_mutating_buf_preserving_4, test/export/test_export.py::TestExport::test_unflatten_random_dag_mutating_buf_preserving_4_1, test/export/test_export.py::TestExport::test_unflatten_random_dag_mutating_buf_preserving_5, test/export/test_export.py::TestExport::test_unflatten_random_dag_mutating_buf_preserving_7, test/export/test_export.py::TestExport::test_unflatten_random_dag_preserving_4, test/export/test_export.py::TestExport::test_unused_aliases, test/export/test_export.py::TestExport::test_unused_constant, test/export/test_export.py::TestExport::test_use_embedding_twice, test/export/test_export.py::TestExport::test_user_input_and_buffer_mutation, test/export/test_export.py::TestExport::test_while_loop_assert_separation, test/export/test_export.py::TestExport::test_while_loop_index_assertions, test/export/test_export.py::TestExport::test_while_loop_simple, test/export/test_export.py::TestExport::test_while_loop_tensor_constant_idx, test/export/test_export.py::TestExport::test_wrapper_module, test/export/test_export.py::TestOneOffModelExportResult::test_assert_tensor_metadata_device_index, test/export/test_export.py::TestOneOffModelExportResult::test_constant_fqn, test/export/test_export.py::TestOneOffModelExportResult::test_constant_name, test/export/test_export.py::TestOneOffModelExportResult::test_duplicated_getitem, test/export/test_export.py::TestOneOffModelExportResult::test_hf_logging_logger, test/export/test_export.py::TestOneOffModelExportResult::test_input_output_no_stacktrace, test/export/test_export.py::TestOneOffModelExportResult::test_int_list_output, test/export/test_export.py::TestOneOffModelExportResult::test_logging_logger, test/export/test_export.py::TestOneOffModelExportResult::test_nested_retrace, test/export/test_export.py::TestOneOffModelExportResult::test_none_input_output, test/export/test_export.py::TestOneOffModelExportResult::test_primitive_constant_output, test/export/test_export.py::TestOneOffModelExportResult::test_print, test/export/test_export.py::TestOneOffModelExportResult::test_print_graph_signature, test/export/test_export.py::TestOneOffModelExportResult::test_scaled_dot_product_attention_cpu, test/export/test_export.py::TestOneOffModelExportResult::test_scaled_dot_product_attention_cuda, test/export/test_export.py::TestOneOffModelExportResult::test_torchrec_jagged_tensor, test/export/test_export.py::TestOneOffModelExportResult::test_unbacked_sdpa, test/export/test_export.py::TestOneOffModelExportResult::test_warning, test/export/test_export.py::TestExportCustomClass::test_export_script_module, test/export/test_export.py::TestExportCustomClass::test_export_unbacked_lt, test/export/test_export.py::TestExportCustomClass::test_int_lift_constant, test/export/test_export.py::TestExportCustomClass::test_lift_custom_obj, test/export/test_export.py::TestExportCustomClass::test_preserve_cia_op, test/export/test_export.py::TestExportCustomClass::test_preserve_non_cia_op, test/export/test_export.py::TestExportCustomClass::test_unbacked_contiguous, test/export/test_export.py::TestExportCustomClass::test_unbacked_select_index 2025-08-14T22:15:19.0970306Z 2025-08-14T22:15:24.9215657Z Running inductor/test_analysis 1/1 ... [2025-08-14 22:15:24.920862] 2025-08-14T22:15:24.9216180Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:15:24.9223231Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_analysis.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:15:24.922075] 2025-08-14T22:15:26.5678151Z 2025-08-14T22:15:26.5679730Z inductor/test_triton_extension_backend 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_triton_extension_backend_1.1_22bd76ab59281059_.log 2025-08-14T22:15:26.5680800Z 2025-08-14T22:15:32.8584920Z Running inductor/test_inductor_utils 1/1 ... [2025-08-14 22:15:32.856189] 2025-08-14T22:15:32.8585459Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:15:32.8592235Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_inductor_utils.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:15:32.856189] 2025-08-14T22:15:36.8416674Z 2025-08-14T22:15:36.8417669Z inductor/test_analysis 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_analysis_1.1_87265abea7383029_.log 2025-08-14T22:15:36.8428961Z Running 26 items in this shard: test/inductor/test_analysis.py::TestUtils::test_tabulate2d, test/inductor/test_analysis.py::TestUtils::test_zip_dicts, test/inductor/test_analysis.py::TestAnalysisCPU::test_augment_trace_against_flop_counter_maxat0_cpu_float16, test/inductor/test_analysis.py::TestAnalysisCPU::test_augment_trace_against_flop_counter_maxat0_cpu_float32, test/inductor/test_analysis.py::TestAnalysisCPU::test_augment_trace_against_flop_counter_maxat1_cpu_float16, test/inductor/test_analysis.py::TestAnalysisCPU::test_augment_trace_against_flop_counter_maxat1_cpu_float32, test/inductor/test_analysis.py::TestAnalysisCPU::test_augment_trace_against_flop_counter_maxat2_cpu_float16, test/inductor/test_analysis.py::TestAnalysisCPU::test_augment_trace_against_flop_counter_maxat2_cpu_float32, test/inductor/test_analysis.py::TestAnalysisCPU::test_augment_trace_against_flop_counter_maxat3_cpu_float16, test/inductor/test_analysis.py::TestAnalysisCPU::test_augment_trace_against_flop_counter_maxat3_cpu_float32, test/inductor/test_analysis.py::TestAnalysisCPU::test_augment_trace_helper_unit_cpu, test/inductor/test_analysis.py::TestAnalysisCPU::test_diff_cpu_float16, test/inductor/test_analysis.py::TestAnalysisCPU::test_diff_cpu_float32, test/inductor/test_analysis.py::TestAnalysisCPU::test_diff_cpu_float64, test/inductor/test_analysis.py::TestAnalysisCPU::test_noop_cpu, test/inductor/test_analysis.py::TestAnalysisCPU::test_pointwise_bandwidth_maxat0_cpu_float16, test/inductor/test_analysis.py::TestAnalysisCPU::test_pointwise_bandwidth_maxat0_cpu_float32, test/inductor/test_analysis.py::TestAnalysisCPU::test_pointwise_bandwidth_maxat1_cpu_float16, test/inductor/test_analysis.py::TestAnalysisCPU::test_pointwise_bandwidth_maxat1_cpu_float32, test/inductor/test_analysis.py::TestAnalysisCPU::test_pointwise_bandwidth_maxat2_cpu_float16, test/inductor/test_analysis.py::TestAnalysisCPU::test_pointwise_bandwidth_maxat2_cpu_float32, test/inductor/test_analysis.py::TestAnalysisCPU::test_pointwise_bandwidth_maxat3_cpu_float16, test/inductor/test_analysis.py::TestAnalysisCPU::test_pointwise_bandwidth_maxat3_cpu_float32, test/inductor/test_analysis.py::TestAnalysisCPU::test_triton_has_metadata_maxat0_cpu_float16, test/inductor/test_analysis.py::TestAnalysisCPU::test_triton_has_metadata_maxat0_cpu_float32, test/inductor/test_analysis.py::TestAnalysisCPU::test_triton_has_metadata_maxat0_cpu_float64 2025-08-14T22:15:36.8439158Z 2025-08-14T22:15:37.8430138Z 2025-08-14T22:15:37.8431549Z inductor/test_inductor_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_inductor_utils_1.1_865844ce1da8931a_.log 2025-08-14T22:15:37.8432317Z 2025-08-14T22:15:42.4773950Z Running export/test_functionalized_assertions 1/1 ... [2025-08-14 22:15:42.469903] 2025-08-14T22:15:42.4774518Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:15:42.4781554Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_functionalized_assertions.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:15:42.469903] 2025-08-14T22:15:43.8025084Z Running inductor/test_indexing 1/1 ... [2025-08-14 22:15:43.786568] 2025-08-14T22:15:43.8025628Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:15:43.8032062Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_indexing.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:15:43.802394] 2025-08-14T22:15:48.1181990Z 2025-08-14T22:15:48.1184643Z export/test_functionalized_assertions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_functionalized_assertions_1.1_9e63d805cd475f07_.log 2025-08-14T22:15:48.1186521Z Running 2 items in this shard: test/export/test_functionalized_assertions.py::TestFuntionalAssertions::test_functional_assert_async_msg, test/export/test_functionalized_assertions.py::TestFuntionalAssertions::test_functional_sym_constrain_range 2025-08-14T22:15:48.1187653Z 2025-08-14T22:15:54.0306079Z Running inductor/test_debug_trace 1/1 ... [2025-08-14 22:15:54.030343] 2025-08-14T22:15:54.0306737Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:15:54.0313308Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_debug_trace.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:15:54.030978] 2025-08-14T22:15:54.9370751Z 2025-08-14T22:15:54.9372101Z inductor/test_indexing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_indexing_1.1_9f0642a5e845a826_.log 2025-08-14T22:15:54.9372995Z 2025-08-14T22:16:00.6661784Z Running inductor/test_async_compile 1/1 ... [2025-08-14 22:16:00.665840] 2025-08-14T22:16:00.6662280Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:16:00.6673650Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_async_compile.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:16:00.666494] 2025-08-14T22:16:05.8164777Z 2025-08-14T22:16:05.8165858Z inductor/test_debug_trace 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_debug_trace_1.1_e885589432a9c42e_.log 2025-08-14T22:16:05.8169054Z 2025-08-14T22:16:11.6268524Z Running inductor/test_minifier_utils 1/1 ... [2025-08-14 22:16:11.620127] 2025-08-14T22:16:11.6269024Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:16:11.6275816Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_minifier_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:16:11.620127] 2025-08-14T22:16:12.1592800Z 2025-08-14T22:16:12.1593767Z inductor/test_async_compile 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_async_compile_1.1_bd7675111b44d573_.log 2025-08-14T22:16:12.1594500Z 2025-08-14T22:16:17.8815186Z Running export/test_tree_utils 1/1 ... [2025-08-14 22:16:17.880262] 2025-08-14T22:16:17.8815896Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:16:17.8822836Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_tree_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:16:17.880262] 2025-08-14T22:16:23.4783883Z 2025-08-14T22:16:23.4784863Z export/test_tree_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_tree_utils_1.1_a0523147ffe73a5b_.log 2025-08-14T22:16:23.4786538Z Running 2 items in this shard: test/export/test_tree_utils.py::TestTreeUtils::test_equivalence_check, test/export/test_tree_utils.py::TestTreeUtils::test_reorder_kwargs 2025-08-14T22:16:23.4787284Z 2025-08-14T22:16:25.1363047Z 2025-08-14T22:16:25.1364793Z inductor/test_minifier_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_minifier_utils_1.1_4af6391b2371fa75_.log 2025-08-14T22:16:25.1368205Z Running 3 items in this shard: test/inductor/test_minifier_utils.py::MinifierUtilsTests::test_convert_module_to_string, test/inductor/test_minifier_utils.py::MinifierUtilsTests::test_invalid_output, test/inductor/test_minifier_utils.py::MinifierUtilsTests::test_non_exportable 2025-08-14T22:16:25.1370758Z 2025-08-14T22:16:29.1510085Z Running inductor/test_combo_kernels 1/1 ... [2025-08-14 22:16:29.143470] 2025-08-14T22:16:29.1510585Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:16:29.1517064Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_combo_kernels.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:16:29.143470] 2025-08-14T22:16:30.9421612Z Running dynamo/test_functions 1/1 ... [2025-08-14 22:16:30.941378] 2025-08-14T22:16:30.9422103Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:16:30.9458217Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_functions.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:16:30.942704] 2025-08-14T22:16:40.6736320Z 2025-08-14T22:16:40.6737518Z inductor/test_combo_kernels 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_combo_kernels_1.1_c375c764385d1ccb_.log 2025-08-14T22:16:40.6738455Z 2025-08-14T22:16:42.8802644Z 2025-08-14T22:16:42.8803869Z dynamo/test_functions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_functions_1.1_2f5bdfd8321e704a_.log 2025-08-14T22:16:42.8804736Z 2025-08-14T22:16:46.4656958Z Running inductor/test_compile_worker 1/1 ... [2025-08-14 22:16:46.462086] 2025-08-14T22:16:46.4657842Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:16:46.4664297Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_compile_worker.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:16:46.462086] 2025-08-14T22:16:48.6820703Z Running dynamo/test_base_output 1/1 ... [2025-08-14 22:16:48.676767] 2025-08-14T22:16:48.6821196Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:16:48.6828478Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_base_output.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:16:48.676767] 2025-08-14T22:16:53.7371580Z 2025-08-14T22:16:53.7372564Z dynamo/test_base_output 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_base_output_1.1_9cddb913972e6868_.log 2025-08-14T22:16:53.7373273Z 2025-08-14T22:16:57.9883991Z 2025-08-14T22:16:57.9885000Z inductor/test_compile_worker 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_compile_worker_1.1_6a3cd55200764177_.log 2025-08-14T22:16:57.9885838Z 2025-08-14T22:16:59.4024989Z Running inductor/test_utils 1/1 ... [2025-08-14 22:16:59.396073] 2025-08-14T22:16:59.4025461Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:16:59.4032153Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/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:16:59.396073] 2025-08-14T22:17:03.7719043Z Running inductor/test_metrics 1/1 ... [2025-08-14 22:17:03.769432] 2025-08-14T22:17:03.7719512Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:17:03.7726475Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_metrics.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:17:03.769432] 2025-08-14T22:17:04.7890083Z 2025-08-14T22:17:04.7891485Z inductor/test_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_utils_1.1_5158d136ba55f381_.log 2025-08-14T22:17:04.7896076Z Running 7 items in this shard: test/inductor/test_utils.py::TestUtilsCPU::testSympySubs_cpu, test/inductor/test_utils.py::TestUtilsCPU::test_flops_fx_cpu, test/inductor/test_utils.py::TestUtilsCPU::test_get_device_tflops_cpu_bfloat16, test/inductor/test_utils.py::TestUtilsCPU::test_get_device_tflops_cpu_float16, test/inductor/test_utils.py::TestUtilsCPU::test_get_device_tflops_cpu_float32, test/inductor/test_utils.py::TestUtilsCPU::test_sympy_str_cpu, test/inductor/test_utils.py::TestUtilsCPU::test_zip_schema_cpu 2025-08-14T22:17:04.7900033Z 2025-08-14T22:17:10.3994968Z Running inductor/test_autoheuristic 1/1 ... [2025-08-14 22:17:10.391185] 2025-08-14T22:17:10.3995902Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:17:10.4001968Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_autoheuristic.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:17:10.391185] 2025-08-14T22:17:14.9781147Z 2025-08-14T22:17:14.9782034Z inductor/test_metrics 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_metrics_1.1_5052e6fdf95166dd_.log 2025-08-14T22:17:14.9782736Z 2025-08-14T22:17:21.2448933Z Running dynamo/test_nops 1/1 ... [2025-08-14 22:17:21.241887] 2025-08-14T22:17:21.2449406Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:17:21.2455840Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_nops.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:17:21.241887] 2025-08-14T22:17:21.8921715Z 2025-08-14T22:17:21.8923738Z inductor/test_autoheuristic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_autoheuristic_1.1_7d5a38cf8e972d00_.log 2025-08-14T22:17:26.5719645Z 2025-08-14T22:17:26.5719659Z 2025-08-14T22:17:26.5720759Z dynamo/test_nops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_nops_1.1_93531c9d181add48_.log 2025-08-14T22:17:26.5721438Z 2025-08-14T22:17:28.1441376Z Running inductor/test_cutlass_evt 1/1 ... [2025-08-14 22:17:28.143012] 2025-08-14T22:17:28.1441969Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:17:28.1448825Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cutlass_evt.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:17:28.144225] 2025-08-14T22:17:32.6679118Z Running inductor/test_codegen_triton 1/1 ... [2025-08-14 22:17:32.667668] 2025-08-14T22:17:32.6679630Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:17:32.6692582Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_codegen_triton.py', '-m', 'not serial', '--shard-id=1', '--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:32.668376] 2025-08-14T22:17:39.3994028Z 2025-08-14T22:17:39.3995801Z inductor/test_cutlass_evt 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cutlass_evt_1.1_30bd7ff2f4f72b99_.log 2025-08-14T22:17:39.3997072Z 2025-08-14T22:17:44.1767684Z 2025-08-14T22:17:44.1769017Z inductor/test_codegen_triton 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_codegen_triton_1.1_28e1dd8e5cc91b0a_.log 2025-08-14T22:17:44.1769855Z 2025-08-14T22:17:45.2434863Z Running inductor/test_static_cuda_launcher 1/1 ... [2025-08-14 22:17:45.243262] 2025-08-14T22:17:45.2435389Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:17:45.2442212Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_static_cuda_launcher.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:17:45.243892] 2025-08-14T22:17:50.0442103Z Running dynamo/test_resume 1/1 ... [2025-08-14 22:17:50.043856] 2025-08-14T22:17:50.0442752Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:17:50.0449670Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_resume.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:17:50.044405] 2025-08-14T22:17:55.3260392Z 2025-08-14T22:17:55.3261249Z dynamo/test_resume 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_resume_1.1_c81c23185ab1b3a8_.log 2025-08-14T22:17:55.3262022Z 2025-08-14T22:17:56.4762878Z 2025-08-14T22:17:56.4764604Z inductor/test_static_cuda_launcher 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_static_cuda_launcher_1.1_b80db255afd5361c_.log 2025-08-14T22:17:56.4766389Z 2025-08-14T22:18:01.7105233Z Running inductor/test_inplacing_pass 1/1 ... [2025-08-14 22:18:01.710287] 2025-08-14T22:18:01.7106163Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:18:01.7113681Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_inplacing_pass.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:18:01.711023] 2025-08-14T22:18:02.9272564Z Running inductor/test_custom_post_grad_passes 1/1 ... [2025-08-14 22:18:02.926542] 2025-08-14T22:18:02.9273429Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:18:02.9280495Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_custom_post_grad_passes.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:18:02.927756] 2025-08-14T22:18:13.8148858Z 2025-08-14T22:18:13.8150221Z inductor/test_inplacing_pass 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_inplacing_pass_1.1_ba4dab53c16cc884_.log 2025-08-14T22:18:13.8150975Z 2025-08-14T22:18:16.0570129Z 2025-08-14T22:18:16.0571241Z inductor/test_custom_post_grad_passes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_custom_post_grad_passes_1.1_43908a2376c5c9ba_.log 2025-08-14T22:18:16.0572153Z 2025-08-14T22:18:19.5604537Z Running export/test_tools 1/1 ... [2025-08-14 22:18:19.552200] 2025-08-14T22:18:19.5605016Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:18:19.5612119Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_tools.py', '-m', 'not serial', '--shard-id=1', '--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:19.552200] 2025-08-14T22:18:21.6438194Z Running dynamo/test_subgraphs 1/1 ... [2025-08-14 22:18:21.643607] 2025-08-14T22:18:21.6438696Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:18:21.6445726Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_subgraphs.py', '-m', 'not serial', '--shard-id=1', '--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:21.644313] 2025-08-14T22:18:26.6784650Z 2025-08-14T22:18:26.6786027Z dynamo/test_subgraphs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_subgraphs_1.1_3fd89ed3d8bc0127_.log 2025-08-14T22:18:26.6786817Z 2025-08-14T22:18:28.0368971Z 2025-08-14T22:18:28.0369972Z test_dataloader 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_dataloader_1.2_0549adc024d5382b_.log 2025-08-14T22:18:28.0405811Z Running 93 items in this shard: test/test_dataloader.py::TestDatasetRandomSplit::test_incomplete_fractional_splits, test/test_dataloader.py::TestDatasetRandomSplit::test_slicing_of_subset_of_subset, test/test_dataloader.py::TestDatasetRandomSplit::test_splits_are_mutually_exclusive, test/test_dataloader.py::TestDatasetRandomSplit::test_splits_indexing_type, test/test_dataloader.py::TestTensorDataset::test_getitem, test/test_dataloader.py::TestTensorDataset::test_len, test/test_dataloader.py::TestTensorDataset::test_many_tensors, test/test_dataloader.py::TestStackDataset::test_getitem, test/test_dataloader.py::TestStackDataset::test_getitems, test/test_dataloader.py::TestStackDataset::test_getitems_raises_index_error, test/test_dataloader.py::TestStackDataset::test_getitems_value_error, test/test_dataloader.py::TestStackDataset::test_mixed, test/test_dataloader.py::TestStackDataset::test_single, test/test_dataloader.py::TestStackDataset::test_size_mismatch, test/test_dataloader.py::TestConcatDataset::test_concat_two_non_singletons, test/test_dataloader.py::TestConcatDataset::test_concat_two_non_singletons_with_empty, test/test_dataloader.py::TestConcatDataset::test_iterable_dataset_err, test/test_dataloader.py::TestDataLoader::test_builtin_collection_conversion, test/test_dataloader.py::TestDataLoader::test_default_collate_bad_numpy_types, test/test_dataloader.py::TestDataLoader::test_default_collate_mapping_keep_type, test/test_dataloader.py::TestDataLoader::test_default_collate_sequence_dont_keep_type, test/test_dataloader.py::TestDataLoader::test_default_collate_sequence_keep_type, test/test_dataloader.py::TestDataLoader::test_default_collate_shared_tensor, test/test_dataloader.py::TestDataLoader::test_default_convert_sequence_dont_keep_type, test/test_dataloader.py::TestDataLoader::test_duplicating_data_with_drop_last, test/test_dataloader.py::TestDataLoader::test_error, test/test_dataloader.py::TestDataLoader::test_error_in_init, test/test_dataloader.py::TestDataLoader::test_excessive_thread_creation_warning, test/test_dataloader.py::TestDataLoader::test_fd_limit_exceeded, test/test_dataloader.py::TestDataLoader::test_get_worker_info, test/test_dataloader.py::TestDataLoader::test_invalid_assign_after_init, test/test_dataloader.py::TestDataLoader::test_iterable_style_dataset, test/test_dataloader.py::TestDataLoader::test_iterabledataset_len, test/test_dataloader.py::TestDataLoader::test_len, test/test_dataloader.py::TestDataLoader::test_multi_epochs_reproducibility, test/test_dataloader.py::TestDataLoader::test_multiprocessing_contexts, test/test_dataloader.py::TestDataLoader::test_multiprocessing_iterdatapipe_with_dill, test/test_dataloader.py::TestDataLoader::test_no_segfault, test/test_dataloader.py::TestDataLoader::test_numpy, test/test_dataloader.py::TestDataLoader::test_partial_workers, test/test_dataloader.py::TestDataLoader::test_random_sampler, test/test_dataloader.py::TestDataLoader::test_random_sampler_len_with_replacement, test/test_dataloader.py::TestDataLoader::test_random_sampler_len_without_replacement, test/test_dataloader.py::TestDataLoader::test_sampler, test/test_dataloader.py::TestDataLoader::test_sampler_reproducibility, test/test_dataloader.py::TestDataLoader::test_seqential_batch_workers, test/test_dataloader.py::TestDataLoader::test_seqential_batch_workers_prefetch, test/test_dataloader.py::TestDataLoader::test_shuffle, test/test_dataloader.py::TestDataLoader::test_shuffle_batch, test/test_dataloader.py::TestDataLoader::test_worker_init_fn, test/test_dataloader.py::TestDictDataLoader::test_pin_memory_no_cuda, test/test_dataloader.py::TestDictDataLoader::test_pin_memory_with_only_device, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_batch_sampler, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_dataset_not_reset, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_default_collate_bad_numpy_types, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_default_collate_dtype, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_default_collate_mapping_keep_type, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_default_collate_numpy_memmap, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_default_collate_sequence_dont_keep_type, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_default_collate_sequence_keep_type, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_default_convert_sequence_dont_keep_type, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_default_convert_sequence_keep_type, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_duplicating_data_with_drop_last, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_error, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_get_worker_info, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_invalid_ctor_args_combinations, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_iterable_style_dataset, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_iterabledataset_len, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_large_sampler_indices, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_multiprocessing_iterdatapipe, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_numpy_scalars, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_partial_workers, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_random_sampler, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_segfault, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_seqential_batch_workers, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_seqential_batch_workers_prefetch, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_sequential_workers, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_shuffle, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_shuffle_batch_none, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_shuffle_batch_workers, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_shuffle_batch_workers_prefetch, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_shuffle_pin_memory, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_shuffle_workers, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_timeout, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_worker_init_fn, test/test_dataloader.py::TestDataLoaderPersistentWorkers::test_worker_seed_reproducibility, test/test_dataloader.py::TestNamedTupleDataLoader::test_dataloader_with_namedtuple, test/test_dataloader.py::TestCustomPinFn::test_custom_batch_pin, test/test_dataloader.py::TestConvAfterFork::test_conv_after_fork, test/test_dataloader.py::TestOutOfOrderDataLoader::test_in_order_index_ds, test/test_dataloader.py::TestOutOfOrderDataLoader::test_out_of_order_index_ds, test/test_dataloader.py::TestOutOfOrderDataLoader::test_out_of_order_iterable_ds, test/test_dataloader.py::TestDataLoaderDeviceTypeCPU::test_nested_tensor_multiprocessing_context_spawn_cpu 2025-08-14T22:18:28.0439489Z 2025-08-14T22:18:31.5277359Z 2025-08-14T22:18:31.5278527Z export/test_tools 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_tools_1.1_171a0bef7f4c5e0f_.log 2025-08-14T22:18:31.5280538Z Running 2 items in this shard: test/export/test_tools.py::TestExportTools::test_report_exportability_basic, test/export/test_tools.py::TestExportTools::test_report_exportability_with_issues 2025-08-14T22:18:31.5281868Z 2025-08-14T22:18:32.4997459Z Running test_custom_ops 1/1 ... [2025-08-14 22:18:32.499544] 2025-08-14T22:18:32.4997898Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:18:32.5005245Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_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:18:32.500175] 2025-08-14T22:18:33.7741072Z Running inductor/test_block_analysis 1/1 ... [2025-08-14 22:18:33.773844] 2025-08-14T22:18:33.7747784Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:18:33.7749005Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_block_analysis.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:18:33.774293] 2025-08-14T22:18:37.2607577Z Running inductor/test_profiler 1/1 ... [2025-08-14 22:18:37.260577] 2025-08-14T22:18:37.2608074Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:18:37.2627776Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_profiler.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:18:37.262537] 2025-08-14T22:18:45.3382796Z 2025-08-14T22:18:45.3384147Z inductor/test_block_analysis 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_block_analysis_1.1_4e83ee2265cada1f_.log 2025-08-14T22:18:45.3389561Z Running 10 items in this shard: test/inductor/test_block_analysis.py::BlockAnalysisTest::test_affine_identity_stride_3_symbol2_expr2, test/inductor/test_block_analysis.py::BlockAnalysisTest::test_affine_identity_stride_4_symbol1_expr1, test/inductor/test_block_analysis.py::BlockAnalysisTest::test_affine_identity_stride_5_symbol0_expr0, test/inductor/test_block_analysis.py::BlockAnalysisTest::test_index_with_dynamic_shapes, test/inductor/test_block_analysis.py::BlockAnalysisTest::test_mod_div_identity_dims0_strides0_symbol0_expr0, test/inductor/test_block_analysis.py::BlockAnalysisTest::test_mod_div_identity_dims1_strides1_symbol1_expr1, test/inductor/test_block_analysis.py::BlockAnalysisTest::test_mod_div_identity_dims2_strides2_symbol2_expr2, test/inductor/test_block_analysis.py::BlockAnalysisTest::test_subexpr_identity_symbol0_expr0_subexpr0, test/inductor/test_block_analysis.py::BlockAnalysisTest::test_subexpr_identity_symbol1_expr1_subexpr1, test/inductor/test_block_analysis.py::BlockAnalysisTest::test_subexpr_identity_symbol2_expr2_subexpr2 2025-08-14T22:18:45.3394185Z 2025-08-14T22:18:48.0443357Z 2025-08-14T22:18:48.0444584Z inductor/test_profiler 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_profiler_1.1_60d352ae909c5fe3_.log 2025-08-14T22:18:48.0445278Z 2025-08-14T22:18:50.9596068Z Running dynamo/test_view 1/1 ... [2025-08-14 22:18:50.958394] 2025-08-14T22:18:50.9596523Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:18:50.9603309Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_view.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:18:50.958394] 2025-08-14T22:18:53.6062425Z Running inductor/test_aot_inductor_utils 1/1 ... [2025-08-14 22:18:53.606045] 2025-08-14T22:18:53.6063047Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:18:53.6071301Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_aot_inductor_utils.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:18:53.606876] 2025-08-14T22:18:55.8239796Z 2025-08-14T22:18:55.8240705Z dynamo/test_view 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_view_1.1_343143d62ac8bd30_.log 2025-08-14T22:18:55.8241346Z 2025-08-14T22:19:01.6148025Z Running inductor/test_ordered_set 1/1 ... [2025-08-14 22:19:01.614480] 2025-08-14T22:19:01.6148504Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:19:01.6154928Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_ordered_set.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:19:01.615258] 2025-08-14T22:19:05.2700124Z 2025-08-14T22:19:05.2701413Z inductor/test_aot_inductor_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_aot_inductor_utils_1.1_50545769c2607136_.log 2025-08-14T22:19:05.2702320Z Running 0 items in this shard: 2025-08-14T22:19:05.2702506Z 2025-08-14T22:19:06.4199350Z 2025-08-14T22:19:06.4200414Z inductor/test_ordered_set 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_ordered_set_1.1_c489afdad022dbfe_.log 2025-08-14T22:19:06.4201115Z 2025-08-14T22:19:10.9071915Z Running dynamo/test_dicts 1/1 ... [2025-08-14 22:19:10.906638] 2025-08-14T22:19:10.9072490Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:19:10.9079684Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_dicts.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:19:10.907318] 2025-08-14T22:19:12.0608441Z Running dynamo/test_autograd_function 1/1 ... [2025-08-14 22:19:12.047289] 2025-08-14T22:19:12.0609131Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:19:12.0615542Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_autograd_function.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:19:12.047289] 2025-08-14T22:19:13.8595801Z 2025-08-14T22:19:13.8596592Z test_custom_ops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_custom_ops_1.1_28b338018851c885_.log 2025-08-14T22:19:13.8685543Z Running 280 items in this shard: test/test_custom_ops.py::TestCustomOp::test_abstract_impl_on_existing_op, test/test_custom_ops.py::TestCustomOp::test_abstract_impl_on_existing_op_with_CompositeExplicitAutograd, test/test_custom_ops.py::TestCustomOp::test_abstract_impl_on_existing_op_with_CompositeImplicitAutograd, test/test_custom_ops.py::TestCustomOp::test_abstract_impl_on_existing_op_with_meta, test/test_custom_ops.py::TestCustomOp::test_autogen_aten_ops_are_pt2_compliant, test/test_custom_ops.py::TestCustomOp::test_autograd_function_backed_op, test/test_custom_ops.py::TestCustomOp::test_autograd_notimplemented, test/test_custom_ops.py::TestCustomOp::test_autograd_notimplemented_gradmode, test/test_custom_ops.py::TestCustomOp::test_backward_dict_grad_for_nontensor, test/test_custom_ops.py::TestCustomOp::test_backward_dict_invalid_keys, test/test_custom_ops.py::TestCustomOp::test_backward_dict_requires_keys_for_input_optional_tensors, test/test_custom_ops.py::TestCustomOp::test_backward_dict_requires_keys_for_input_tensors, test/test_custom_ops.py::TestCustomOp::test_backward_grads_are_tensor_or_none, test/test_custom_ops.py::TestCustomOp::test_backward_impl_on_existing_op, test/test_custom_ops.py::TestCustomOp::test_backward_impl_on_existing_op_CompositeImplicitAutograd, test/test_custom_ops.py::TestCustomOp::test_backward_impl_on_existing_op_incorrect_schema_mutable, test/test_custom_ops.py::TestCustomOp::test_backward_impl_on_existing_op_incorrect_schema_no_output, test/test_custom_ops.py::TestCustomOp::test_backward_impl_on_existing_op_incorrect_schema_views, test/test_custom_ops.py::TestCustomOp::test_backward_impl_on_existing_op_with_key_key_Autograd, test/test_custom_ops.py::TestCustomOp::test_backward_impl_on_existing_op_with_key_key_AutogradCPU, test/test_custom_ops.py::TestCustomOp::test_backward_impl_on_existing_op_with_key_key_AutogradCUDA, test/test_custom_ops.py::TestCustomOp::test_backward_output_differentiability_non_tensor, test/test_custom_ops.py::TestCustomOp::test_backward_output_differentiability_numel, test/test_custom_ops.py::TestCustomOp::test_backward_output_differentiability_tensorlist, test/test_custom_ops.py::TestCustomOp::test_backward_output_differentiability_type, test/test_custom_ops.py::TestCustomOp::test_backward_partially_registered, test/test_custom_ops.py::TestCustomOp::test_backward_returns_dict, test/test_custom_ops.py::TestCustomOp::test_backward_tensorlist_input_requires_list_grads, test/test_custom_ops.py::TestCustomOp::test_backward_tensorlist_input_requires_list_grads_none_or_Tensor, test/test_custom_ops.py::TestCustomOp::test_backward_tensorlist_input_requires_list_grads_with_same_numel, test/test_custom_ops.py::TestCustomOp::test_basic_make_fx, test/test_custom_ops.py::TestCustomOp::test_builtin_aten_ops_are_pt2_compliant, test/test_custom_ops.py::TestCustomOp::test_builtin_torchscript_ops, test/test_custom_ops.py::TestCustomOp::test_data_dependent_basic, test/test_custom_ops.py::TestCustomOp::test_data_dependent_compile, test/test_custom_ops.py::TestCustomOp::test_data_dependent_fake_tracing, test/test_custom_ops.py::TestCustomOp::test_data_dependent_nms_dynamic_compile, test/test_custom_ops.py::TestCustomOp::test_define_and_impl, test/test_custom_ops.py::TestCustomOp::test_define_bad_schema, test/test_custom_ops.py::TestCustomOp::test_define_validation, test/test_custom_ops.py::TestCustomOp::test_define_with_tags_list, test/test_custom_ops.py::TestCustomOp::test_define_with_tags_single, test/test_custom_ops.py::TestCustomOp::test_define_with_tags_tuple, test/test_custom_ops.py::TestCustomOp::test_defined_in_python, test/test_custom_ops.py::TestCustomOp::test_duplicate_impl, test/test_custom_ops.py::TestCustomOp::test_functionalize_error, test/test_custom_ops.py::TestCustomOp::test_impl_abstract_overload, test/test_custom_ops.py::TestCustomOp::test_impl_cpu, test/test_custom_ops.py::TestCustomOp::test_impl_device_cpu, test/test_custom_ops.py::TestCustomOp::test_impl_device_cuda, test/test_custom_ops.py::TestCustomOp::test_impl_device_function, test/test_custom_ops.py::TestCustomOp::test_impl_device_invalid, test/test_custom_ops.py::TestCustomOp::test_impl_function, test/test_custom_ops.py::TestCustomOp::test_impl_invalid_devices, test/test_custom_ops.py::TestCustomOp::test_impl_meta, test/test_custom_ops.py::TestCustomOp::test_impl_multiple, test/test_custom_ops.py::TestCustomOp::test_impl_on_existing_op, test/test_custom_ops.py::TestCustomOp::test_impl_on_existing_op_with_cpu_registration_key_CPU, test/test_custom_ops.py::TestCustomOp::test_impl_on_existing_op_with_cpu_registration_key_CUDA, test/test_custom_ops.py::TestCustomOp::test_impl_on_existing_op_with_cpu_registration_key_CompositeExplicitAutograd, test/test_custom_ops.py::TestCustomOp::test_impl_on_existing_op_with_cpu_registration_key_CompositeImplicitAutograd, test/test_custom_ops.py::TestCustomOp::test_impl_separate, test/test_custom_ops.py::TestCustomOp::test_incorrect_schema_types, test/test_custom_ops.py::TestCustomOp::test_infer_schema_no_return, test/test_custom_ops.py::TestCustomOp::test_infer_schema_supported, test/test_custom_ops.py::TestCustomOp::test_infer_schema_unsupported, test/test_custom_ops.py::TestCustomOp::test_invalid_qualname, test/test_custom_ops.py::TestCustomOp::test_invalid_schemas, test/test_custom_ops.py::TestCustomOp::test_is_functional_schema, test/test_custom_ops.py::TestCustomOp::test_is_tensorlist_like_type, test/test_custom_ops.py::TestCustomOp::test_legacy_define, test/test_custom_ops.py::TestCustomOp::test_legacy_impl, test/test_custom_ops.py::TestCustomOp::test_lifetime, test/test_custom_ops.py::TestCustomOp::test_load_library, test/test_custom_ops.py::TestCustomOp::test_meta_for_data_dependent_shape_operation, test/test_custom_ops.py::TestCustomOp::test_name_must_match, test/test_custom_ops.py::TestCustomOp::test_new_data_dependent_symint, test/test_custom_ops.py::TestCustomOp::test_not_implemented_error, test/test_custom_ops.py::TestCustomOp::test_override_cea, test/test_custom_ops.py::TestCustomOp::test_override_fake, test/test_custom_ops.py::TestCustomOp::test_override_impl, test/test_custom_ops.py::TestCustomOp::test_override_meta, test/test_custom_ops.py::TestCustomOp::test_private_ctor, test/test_custom_ops.py::TestCustomOp::test_reserved_ns, test/test_custom_ops.py::TestCustomOp::test_resolve_packet, test/test_custom_ops.py::TestCustomOp::test_save_for_backward_inputs_are_namedtuple, test/test_custom_ops.py::TestCustomOp::test_schema_matches_signature, test/test_custom_ops.py::TestCustomOp::test_sequences, test/test_custom_ops.py::TestCustomOp::test_supported_param_types, test/test_custom_ops.py::TestCustomOp::test_supported_return_types_multi_return, test/test_custom_ops.py::TestCustomOp::test_supported_return_types_single_return, test/test_custom_ops.py::TestCustomOp::test_supported_schemas, test/test_custom_ops.py::TestCustomOp::test_symints, test/test_custom_ops.py::TestCustomOp::test_unsupported_param_types, test/test_custom_ops.py::TestCustomOp::test_unsupported_schemas, test/test_custom_ops.py::MiniOpTest::test_aot_dispatch_dynamic__test_delayed_error, test/test_custom_ops.py::MiniOpTest::test_aot_dispatch_dynamic__test_delayed_error_no_requires_grad, test/test_custom_ops.py::MiniOpTest::test_aot_dispatch_dynamic__test_incorrect_schema, test/test_custom_ops.py::MiniOpTest::test_aot_dispatch_dynamic__test_inplace, test/test_custom_ops.py::MiniOpTest::test_aot_dispatch_dynamic__test_mm, test/test_custom_ops.py::MiniOpTest::test_aot_dispatch_dynamic__test_mm_errors, test/test_custom_ops.py::MiniOpTest::test_aot_dispatch_dynamic__test_mm_fake, test/test_custom_ops.py::MiniOpTest::test_aot_dispatch_dynamic__test_mm_meta, test/test_custom_ops.py::MiniOpTest::test_aot_dispatch_dynamic__test_no_abstract, test/test_custom_ops.py::MiniOpTest::test_aot_dispatch_dynamic__test_nonzero, test/test_custom_ops.py::MiniOpTest::test_aot_dispatch_static__test_delayed_error, test/test_custom_ops.py::MiniOpTest::test_aot_dispatch_static__test_delayed_error_no_requires_grad, test/test_custom_ops.py::MiniOpTest::test_aot_dispatch_static__test_incorrect_schema, test/test_custom_ops.py::MiniOpTest::test_aot_dispatch_static__test_inplace, test/test_custom_ops.py::MiniOpTest::test_aot_dispatch_static__test_mm, test/test_custom_ops.py::MiniOpTest::test_aot_dispatch_static__test_mm_errors, test/test_custom_ops.py::MiniOpTest::test_aot_dispatch_static__test_mm_fake, test/test_custom_ops.py::MiniOpTest::test_aot_dispatch_static__test_mm_meta, test/test_custom_ops.py::MiniOpTest::test_aot_dispatch_static__test_no_abstract, test/test_custom_ops.py::MiniOpTest::test_aot_dispatch_static__test_nonzero, test/test_custom_ops.py::MiniOpTest::test_autograd_registration__test_delayed_error, test/test_custom_ops.py::MiniOpTest::test_autograd_registration__test_delayed_error_no_requires_grad, test/test_custom_ops.py::MiniOpTest::test_autograd_registration__test_incorrect_schema, test/test_custom_ops.py::MiniOpTest::test_autograd_registration__test_inplace, test/test_custom_ops.py::MiniOpTest::test_autograd_registration__test_mm, test/test_custom_ops.py::MiniOpTest::test_autograd_registration__test_mm_errors, test/test_custom_ops.py::MiniOpTest::test_autograd_registration__test_mm_fake, test/test_custom_ops.py::MiniOpTest::test_autograd_registration__test_mm_meta, test/test_custom_ops.py::MiniOpTest::test_autograd_registration__test_no_abstract, test/test_custom_ops.py::MiniOpTest::test_autograd_registration__test_nonzero, test/test_custom_ops.py::MiniOpTest::test_delayed_error, test/test_custom_ops.py::MiniOpTest::test_delayed_error_no_requires_grad, test/test_custom_ops.py::MiniOpTest::test_dont_generate, test/test_custom_ops.py::MiniOpTest::test_faketensor__test_delayed_error, test/test_custom_ops.py::MiniOpTest::test_faketensor__test_delayed_error_no_requires_grad, test/test_custom_ops.py::MiniOpTest::test_faketensor__test_incorrect_schema, test/test_custom_ops.py::MiniOpTest::test_faketensor__test_inplace, test/test_custom_ops.py::MiniOpTest::test_faketensor__test_mm, test/test_custom_ops.py::MiniOpTest::test_faketensor__test_mm_errors, test/test_custom_ops.py::MiniOpTest::test_faketensor__test_mm_fake, test/test_custom_ops.py::MiniOpTest::test_faketensor__test_mm_meta, test/test_custom_ops.py::MiniOpTest::test_faketensor__test_no_abstract, test/test_custom_ops.py::MiniOpTest::test_faketensor__test_nonzero, test/test_custom_ops.py::MiniOpTest::test_incorrect_schema, test/test_custom_ops.py::MiniOpTest::test_inplace, test/test_custom_ops.py::MiniOpTest::test_mm, test/test_custom_ops.py::MiniOpTest::test_mm_errors, test/test_custom_ops.py::MiniOpTest::test_mm_fake, test/test_custom_ops.py::MiniOpTest::test_mm_meta, test/test_custom_ops.py::MiniOpTest::test_no_abstract, test/test_custom_ops.py::MiniOpTest::test_nonzero, test/test_custom_ops.py::MiniOpTest::test_pt2_compliant_tag_aten_mm, test/test_custom_ops.py::MiniOpTest::test_pt2_compliant_tag_aten_nonzero, test/test_custom_ops.py::MiniOpTest::test_pt2_compliant_tag_aten_sin_, test/test_custom_ops.py::MiniOpTest::test_pt2_compliant_tag_mini_op_test_delayed_error, test/test_custom_ops.py::MiniOpTest::test_pt2_compliant_tag_mini_op_test_incorrect_schema, test/test_custom_ops.py::MiniOpTest::test_pt2_compliant_tag_mini_op_test_no_abstract, test/test_custom_ops.py::MiniOpTest::test_schema__test_delayed_error, test/test_custom_ops.py::MiniOpTest::test_schema__test_delayed_error_no_requires_grad, test/test_custom_ops.py::MiniOpTest::test_schema__test_incorrect_schema, test/test_custom_ops.py::MiniOpTest::test_schema__test_inplace, test/test_custom_ops.py::MiniOpTest::test_schema__test_mm, test/test_custom_ops.py::MiniOpTest::test_schema__test_mm_errors, test/test_custom_ops.py::MiniOpTest::test_schema__test_mm_fake, test/test_custom_ops.py::MiniOpTest::test_schema__test_mm_meta, test/test_custom_ops.py::MiniOpTest::test_schema__test_no_abstract, test/test_custom_ops.py::MiniOpTest::test_schema__test_nonzero, test/test_custom_ops.py::TestCustomOpAPI::test_any_output_is_alias_to_input_or_output, test/test_custom_ops.py::TestCustomOpAPI::test_any_requires_grad, test/test_custom_ops.py::TestCustomOpAPI::test_basic, test/test_custom_ops.py::TestCustomOpAPI::test_compile, test/test_custom_ops.py::TestCustomOpAPI::test_default_values, test/test_custom_ops.py::TestCustomOpAPI::test_disallows_output_aliasing, test/test_custom_ops.py::TestCustomOpAPI::test_factory_function, test/test_custom_ops.py::TestCustomOpAPI::test_fake, test/test_custom_ops.py::TestCustomOpAPI::test_kwarg_only_tensors, test/test_custom_ops.py::TestCustomOpAPI::test_layout_constraint_tags, test/test_custom_ops.py::TestCustomOpAPI::test_library_get_kernel, test/test_custom_ops.py::TestCustomOpAPI::test_library_get_kernel_invalid, test/test_custom_ops.py::TestCustomOpAPI::test_library_get_kernel_with_conditional_dispatch, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_autocast, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_autocast_list_input, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_autocast_low_level, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_autocast_multiple_times, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_autocast_multiple_times_different_devices, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_autograd, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_autograd_low_level, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_fake, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_fake_source_idx_0, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_fake_source_idx_1, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_fake_source_idx_2, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_fake_source_idx_3, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_fake_source_idx_4, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_fake_source_idx_5, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_kernel, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_kernel_low_level, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_torch_dispatch, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_torch_dispatch_low_level, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_torch_dispatch_rule_mode, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_torch_dispatch_rule_subclass, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_vmap, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_vmap_library_decorator, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_vmap_op_decorator, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_vmap_register_multiple_times, test/test_custom_ops.py::TestCustomOpAPI::test_library_register_vmap_register_multiple_times_2, test/test_custom_ops.py::TestCustomOpAPI::test_library_schema_infer, test/test_custom_ops.py::TestCustomOpAPI::test_manual_schema, test/test_custom_ops.py::TestCustomOpAPI::test_manual_schema_error, test/test_custom_ops.py::TestCustomOpAPI::test_multi_types, test/test_custom_ops.py::TestCustomOpAPI::test_mutated, test/test_custom_ops.py::TestCustomOpAPI::test_mutated_error, test/test_custom_ops.py::TestCustomOpAPI::test_mutated_unknown, test/test_custom_ops.py::TestCustomOpAPI::test_no_grad_skips_autograd, test/test_custom_ops.py::TestCustomOpAPI::test_overloading, test/test_custom_ops.py::TestCustomOpAPI::test_register_autograd_defaults, test/test_custom_ops.py::TestCustomOpAPI::test_register_autograd_error_cases, test/test_custom_ops.py::TestCustomOpAPI::test_register_autograd_kwargonly_low_level, test/test_custom_ops.py::TestCustomOpAPI::test_register_vmap_defaults, test/test_custom_ops.py::TestCustomOpAPI::test_register_vmap_kwargonly_low_level, test/test_custom_ops.py::TestCustomOpAPI::test_replacement, test/test_custom_ops.py::TestCustomOpAPI::test_set_kernel_enabled, test/test_custom_ops.py::TestCustomOpAPI::test_split_device, test/test_custom_ops.py::TestCustomOpAPI::test_supports_tensorlist, test/test_custom_ops.py::MiniOpTestOther::test_aot_dispatch_dynamic__test_nonzero_again, test/test_custom_ops.py::MiniOpTestOther::test_aot_dispatch_static__test_nonzero_again, test/test_custom_ops.py::MiniOpTestOther::test_autograd_registration__test_nonzero_again, test/test_custom_ops.py::MiniOpTestOther::test_faketensor__test_nonzero_again, test/test_custom_ops.py::MiniOpTestOther::test_nonzero_again, test/test_custom_ops.py::MiniOpTestOther::test_pt2_compliant_tag_aten_mm, test/test_custom_ops.py::MiniOpTestOther::test_pt2_compliant_tag_aten_nonzero, test/test_custom_ops.py::MiniOpTestOther::test_pt2_compliant_tag_aten_sin_, test/test_custom_ops.py::MiniOpTestOther::test_pt2_compliant_tag_mini_op_test_delayed_error, test/test_custom_ops.py::MiniOpTestOther::test_pt2_compliant_tag_mini_op_test_incorrect_schema, test/test_custom_ops.py::MiniOpTestOther::test_pt2_compliant_tag_mini_op_test_no_abstract, test/test_custom_ops.py::MiniOpTestOther::test_schema__test_nonzero_again, test/test_custom_ops.py::TestGenerateOpcheckTests::test_MiniOpTest, test/test_custom_ops.py::TestGenerateOpcheckTests::test_dont_generate_decorator, test/test_custom_ops.py::TestGenerateOpcheckTests::test_failures_dict_validation, test/test_custom_ops.py::TestGenerateOpcheckTests::test_generate_repro_no_save_data, test/test_custom_ops.py::TestGenerateOpcheckTests::test_generate_repro_save_data, test/test_custom_ops.py::TestGenerateOpcheckTests::test_is_inside_opcheck_mode, test/test_custom_ops.py::TestGenerateOpcheckTests::test_opcheck, test/test_custom_ops.py::TestGenerateOpcheckTests::test_opcheck_bad_op, test/test_custom_ops.py::TestGenerateOpcheckTests::test_opcheck_customopdef, test/test_custom_ops.py::TestGenerateOpcheckTests::test_opcheck_does_not_require_extra_deps, test/test_custom_ops.py::TestTypeConversion::test_mixed_types, test/test_custom_ops.py::TestTypeConversion::test_optional, test/test_custom_ops.py::TestTypeConversion::test_simple_tuple, test/test_custom_ops.py::TestTypeConversion::test_supported_types, test/test_custom_ops.py::TestOpProfiles::test_duplicate_registration_custom_op, test/test_custom_ops.py::TestOpProfiles::test_duplicate_registration_impl, test/test_custom_ops.py::TestOpProfiles::test_fake_registration, test/test_custom_ops.py::TestOpProfiles::test_save_to_file, test/test_custom_ops.py::TestOpProfiles::test_version, test/test_custom_ops.py::TestOpProfiles::test_yaml, test/test_custom_ops.py::TestCustomOpTestingCPU::test_aot_autograd_check_degenerate_cases_check_gradients_False_dynamic_False_cpu, test/test_custom_ops.py::TestCustomOpTestingCPU::test_aot_autograd_check_degenerate_cases_check_gradients_False_dynamic_True_cpu, test/test_custom_ops.py::TestCustomOpTestingCPU::test_aot_autograd_check_degenerate_cases_check_gradients_auto_dynamic_False_cpu, test/test_custom_ops.py::TestCustomOpTestingCPU::test_aot_autograd_check_degenerate_cases_check_gradients_auto_dynamic_True_cpu, test/test_custom_ops.py::TestCustomOpTestingCPU::test_assert_raises_regex_cpu, test/test_custom_ops.py::TestCustomOpTestingCPU::test_autograd_registered_at_backend_cpu, test/test_custom_ops.py::TestCustomOpTestingCPU::test_autograd_registration_check_autograd_kernel_cpu, test/test_custom_ops.py::TestCustomOpTestingCPU::test_autograd_registration_check_compositeimplicitautograd_cpu, test/test_custom_ops.py::TestCustomOpTestingCPU::test_autograd_registration_check_incorrect_composite_cpu, test/test_custom_ops.py::TestCustomOpTestingCPU::test_autograd_registration_check_incorrect_cpu, test/test_custom_ops.py::TestCustomOpTestingCPU::test_global_state_mutation_cpu, test/test_custom_ops.py::TestCustomOpTestingCPU::test_incorrect_abstract_impl_cpu, test/test_custom_ops.py::TestCustomOpTestingCPU::test_incorrect_schema_mutation_cpu, test/test_custom_ops.py::TestCustomOpTestingCPU::test_incorrect_schema_view_cpu, test/test_custom_ops.py::TestCustomOpTestingCPU::test_missing_abstract_impl_cpu, test/test_custom_ops.py::TestCustomOpTestingCPU::test_missing_functionalization_cpu, test/test_custom_ops.py::TestCustomOpTestingCPU::test_opcheck_fails_basic_cpu, test/test_custom_ops.py::TestCustomOpTestingCPU::test_opcheck_opinfo_NumpyCatCustomOp_cpu_float32, test/test_custom_ops.py::TestCustomOpTestingCPU::test_opcheck_opinfo_NumpyCubeCustomOp_cpu_float32, test/test_custom_ops.py::TestCustomOpTestingCPU::test_opcheck_opinfo_NumpyMulCustomOp_cpu_float32, test/test_custom_ops.py::TestCustomOpTestingCPU::test_opcheck_opinfo_NumpyMulScalarCustomOp_cpu_float32, test/test_custom_ops.py::TestCustomOpTestingCPU::test_opcheck_opinfo_NumpyNMSCustomOp_cpu_float32, test/test_custom_ops.py::TestCustomOpTestingCPU::test_opcheck_opinfo_NumpyNonzeroCustomOp_cpu_float32, test/test_custom_ops.py::TestCustomOpTestingCPU::test_opcheck_opinfo_NumpySortCustomOp_cpu_float32, test/test_custom_ops.py::TestCustomOpTestingCPU::test_opcheck_opinfo_NumpySplitCopyCustomOp_cpu_float32, test/test_custom_ops.py::TestCustomOpTestingCPU::test_opcheck_opinfo_NumpySplitCopyWithIntCustomOp_cpu_float32, test/test_custom_ops.py::TestCustomOpTestingCPU::test_opcheck_opinfo_NumpyTakeCustomOp_cpu_float32, test/test_custom_ops.py::TestCustomOpTestingCPU::test_opcheck_opinfo_NumpyViewCopyCustomOp_cpu_float32, test/test_custom_ops.py::TestCustomOpTestingCPU::test_opcheck_unbacked_stride_cpu, test/test_custom_ops.py::TestCustomOpTestingCPU::test_single_element_tuple_output_cpu 2025-08-14T22:19:13.8770014Z 2025-08-14T22:19:16.0529419Z 2025-08-14T22:19:16.0530481Z dynamo/test_dicts 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_dicts_1.1_43e025cbd8875e3f_.log 2025-08-14T22:19:16.0531130Z 2025-08-14T22:19:19.7845185Z Running export/test_package 1/1 ... [2025-08-14 22:19:19.779668] 2025-08-14T22:19:19.7845671Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:19:19.7852318Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_package.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:19:19.779668] 2025-08-14T22:19:21.7720804Z Running inductor/test_benchmarking 1/1 ... [2025-08-14 22:19:21.771893] 2025-08-14T22:19:21.7721442Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:19:21.7729507Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_benchmarking.py', '-m', 'not serial', '--shard-id=1', '--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:21.772775] 2025-08-14T22:19:23.1794429Z 2025-08-14T22:19:23.1795624Z dynamo/test_autograd_function 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_autograd_function_1.1_12db80ab994f11ac_.log 2025-08-14T22:19:23.1796364Z 2025-08-14T22:19:25.6118520Z 2025-08-14T22:19:25.6119665Z export/test_package 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_package_1.1_d7ae61d9c5a3c534_.log 2025-08-14T22:19:25.6121464Z Running 4 items in this shard: test/export/test_package.py::TestPackage::test_basic, test/export/test_package.py::TestPackage::test_error, test/export/test_package.py::TestPackage::test_more_than_once, test/export/test_package.py::TestPackage::test_overloads 2025-08-14T22:19:25.6122664Z 2025-08-14T22:19:28.9130456Z Running inductor/test_inductor_scheduler 1/1 ... [2025-08-14 22:19:28.910420] 2025-08-14T22:19:28.9130990Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:19:28.9137731Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_inductor_scheduler.py', '-m', 'not serial', '--shard-id=1', '--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:28.910420] 2025-08-14T22:19:31.3178712Z Running dynamo/test_compile 1/1 ... [2025-08-14 22:19:31.315576] 2025-08-14T22:19:31.3179181Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:19:31.3186152Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_compile.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:19:31.315576] 2025-08-14T22:19:32.7478249Z 2025-08-14T22:19:32.7479564Z inductor/test_benchmarking 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_benchmarking_1.1_62a7c54ac5512802_.log 2025-08-14T22:19:32.7480325Z 2025-08-14T22:19:36.4814738Z 2025-08-14T22:19:36.4816096Z dynamo/test_compile 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_compile_1.1_f5f28fd6ed03ee73_.log 2025-08-14T22:19:36.4816938Z 2025-08-14T22:19:38.4454800Z Running export/test_db 1/1 ... [2025-08-14 22:19:38.445259] 2025-08-14T22:19:38.4455255Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:19:38.4462336Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_db.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:19:38.445893] 2025-08-14T22:19:40.0968819Z 2025-08-14T22:19:40.0970081Z inductor/test_inductor_scheduler 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_inductor_scheduler_1.1_c73cbeb4a53b4a74_.log 2025-08-14T22:19:40.0973604Z Running 6 items in this shard: test/inductor/test_inductor_scheduler.py::TestSchedulerCPU::test_disable_get_estimated_runtime_logging_cpu_float16, test/inductor/test_inductor_scheduler.py::TestSchedulerCPU::test_disable_get_estimated_runtime_logging_cpu_float32, test/inductor/test_inductor_scheduler.py::TestSchedulerCPU::test_flop_counter_op_options0_cpu_float16, test/inductor/test_inductor_scheduler.py::TestSchedulerCPU::test_flop_counter_op_options0_cpu_float32, test/inductor/test_inductor_scheduler.py::TestSchedulerCPU::test_flop_counter_op_options1_cpu_float16, test/inductor/test_inductor_scheduler.py::TestSchedulerCPU::test_flop_counter_op_options1_cpu_float32 2025-08-14T22:19:40.0976505Z 2025-08-14T22:19:42.3869833Z Running dynamo/test_export_mutations 1/1 ... [2025-08-14 22:19:42.384535] 2025-08-14T22:19:42.3870516Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:19:42.3880122Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_export_mutations.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:19:42.387254] 2025-08-14T22:19:43.5568725Z 2025-08-14T22:19:43.5569573Z export/test_db 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_db_1.1_fa638664f4d99b20_.log 2025-08-14T22:19:43.5583854Z Running 36 items in this shard: test/export/test_db.py::ExampleTests::test_exportdb_not_supported_case_dynamic_shape_round, test/export/test_db.py::ExampleTests::test_exportdb_not_supported_case_model_attr_mutation, test/export/test_db.py::ExampleTests::test_exportdb_not_supported_case_optional_input, test/export/test_db.py::ExampleTests::test_exportdb_not_supported_case_unsupported_operator, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_assume_constant_result, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_autograd_function, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_class_method, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_cond_branch_class_method, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_cond_branch_nested_function, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_cond_branch_nonlocal_variables, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_cond_closed_over_variable, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_cond_operands, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_cond_predicate, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_constrain_as_size_example, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_constrain_as_value_example, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_decorator, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_dictionary, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_dynamic_shape_assert, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_dynamic_shape_constructor, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_dynamic_shape_if_guard, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_dynamic_shape_map, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_dynamic_shape_slicing, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_dynamic_shape_view, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_fn_with_kwargs, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_list_contains, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_list_unpack, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_nested_function, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_null_context_manager, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_pytree_flatten, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_scalar_output, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_specialized_attribute, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_static_for_loop, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_static_if, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_tensor_setattr, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_type_reflection_method, test/export/test_db.py::ExampleTests::test_exportdb_supported_case_user_input_mutation 2025-08-14T22:19:43.5596736Z 2025-08-14T22:19:46.1395106Z Running dynamo/test_graph_deduplication 1/1 ... [2025-08-14 22:19:46.138767] 2025-08-14T22:19:46.1395645Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:19:46.1402142Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_graph_deduplication.py', '-m', 'not serial', '--shard-id=1', '--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:46.139989] 2025-08-14T22:19:47.4522295Z 2025-08-14T22:19:47.4523669Z dynamo/test_export_mutations 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_export_mutations_1.1_e56dcee4ff1e39d4_.log 2025-08-14T22:19:49.1729891Z 2025-08-14T22:19:49.1730485Z Running dynamo/test_guard_serialization 1/1 ... [2025-08-14 22:19:49.171205] 2025-08-14T22:19:49.1730981Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:19:49.1737720Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_guard_serialization.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:19:49.171205] 2025-08-14T22:19:51.1104480Z 2025-08-14T22:19:51.1105932Z dynamo/test_graph_deduplication 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_graph_deduplication_1.1_09e182c897dd2ac0_.log 2025-08-14T22:19:51.1106862Z 2025-08-14T22:19:53.1288858Z Running inductor/test_split_cat_fx_aten_passes 1/1 ... [2025-08-14 22:19:53.123913] 2025-08-14T22:19:53.1289375Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:19:53.1296031Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_split_cat_fx_aten_passes.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:19:53.123913] 2025-08-14T22:19:57.0341793Z Running export/test_passes 1/1 ... [2025-08-14 22:19:57.027224] 2025-08-14T22:19:57.0342507Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:19:57.0348884Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_passes.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:19:57.027224] 2025-08-14T22:20:00.3143950Z 2025-08-14T22:20:00.3144890Z dynamo/test_guard_serialization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_guard_serialization_1.1_60d58c496fa7dd23_.log 2025-08-14T22:20:00.3146463Z 2025-08-14T22:20:04.4691444Z 2025-08-14T22:20:04.4692575Z inductor/test_split_cat_fx_aten_passes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_split_cat_fx_aten_passes_1.1_460fa1732aaef427_.log 2025-08-14T22:20:04.4693400Z 2025-08-14T22:20:06.0934332Z Running export/test_unflatten 1/1 ... [2025-08-14 22:20:06.093041] 2025-08-14T22:20:06.0934867Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:20:06.0942368Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_unflatten.py', '-m', 'not serial', '--shard-id=1', '--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.093692] 2025-08-14T22:20:10.2892692Z Running export/test_swap 1/1 ... [2025-08-14 22:20:10.287445] 2025-08-14T22:20:10.2893187Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:20:10.2900361Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_swap.py', '-m', 'not serial', '--shard-id=1', '--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:10.287445] 2025-08-14T22:20:15.3846027Z 2025-08-14T22:20:15.3847245Z export/test_swap 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_swap_1.1_27ecf7e616ffeae3_.log 2025-08-14T22:20:15.3853260Z Running 18 items in this shard: test/export/test_swap.py::TestSwap_nonstrict::test_custom_input_args, test/export/test_swap.py::TestSwap_nonstrict::test_custom_input_kwargs, test/export/test_swap.py::TestSwap_nonstrict::test_custom_output, test/export/test_swap.py::TestSwap_nonstrict::test_dedup_sym_size, test/export/test_swap.py::TestSwap_nonstrict::test_nested_leaf, test/export/test_swap.py::TestSwap_nonstrict::test_remove_duplicate_pytree_different_order, test/export/test_swap.py::TestSwap_nonstrict::test_remove_duplicate_pytree_simple, test/export/test_swap.py::TestSwap_nonstrict::test_unflatten_preserve_signature, test/export/test_swap.py::TestSwap_nonstrict::test_unflatten_preserve_with_unused_input, test/export/test_swap.py::TestSwap_strict::test_custom_input_args, test/export/test_swap.py::TestSwap_strict::test_custom_input_kwargs, test/export/test_swap.py::TestSwap_strict::test_custom_output, test/export/test_swap.py::TestSwap_strict::test_dedup_sym_size, test/export/test_swap.py::TestSwap_strict::test_nested_leaf, test/export/test_swap.py::TestSwap_strict::test_remove_duplicate_pytree_different_order, test/export/test_swap.py::TestSwap_strict::test_remove_duplicate_pytree_simple, test/export/test_swap.py::TestSwap_strict::test_unflatten_preserve_signature, test/export/test_swap.py::TestSwap_strict::test_unflatten_preserve_with_unused_input 2025-08-14T22:20:15.3859228Z 2025-08-14T22:20:21.1948414Z Running export/test_schema 1/1 ... [2025-08-14 22:20:21.194059] 2025-08-14T22:20:21.1948924Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:20:21.1955027Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_schema.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:20:21.195230] 2025-08-14T22:20:27.3177617Z 2025-08-14T22:20:27.3179055Z export/test_schema 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_schema_1.1_971ad04060111a5b_.log 2025-08-14T22:20:27.3181134Z Running 5 items in this shard: test/export/test_schema.py::TestSchema::test_schema_check, test/export/test_schema.py::TestSchema::test_schema_comparison, test/export/test_schema.py::TestSchema::test_schema_compatibility, test/export/test_schema.py::TestSchema::test_schema_diff, test/export/test_schema.py::TestSchema::test_thrift_schema_unchanged 2025-08-14T22:20:27.3182580Z 2025-08-14T22:20:32.4324226Z 2025-08-14T22:20:32.4325561Z export/test_unflatten 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_unflatten_1.1_a56e6fc7459472c7_.log 2025-08-14T22:20:32.4335789Z Running 28 items in this shard: test/export/test_unflatten.py::TestUnflatten::test_assert_tensor_metadata_stack, test/export/test_unflatten.py::TestUnflatten::test_attr_as_submod_input, test/export/test_unflatten.py::TestUnflatten::test_dedup_sym_size, test/export/test_unflatten.py::TestUnflatten::test_double_nested_submodule, test/export/test_unflatten.py::TestUnflatten::test_duplicate_placeholder, test/export/test_unflatten.py::TestUnflatten::test_fx_trace, test/export/test_unflatten.py::TestUnflatten::test_nested_leaf_non_strict, test/export/test_unflatten.py::TestUnflatten::test_placeholder_and_get_attr_ordering_after_unflattened, test/export/test_unflatten.py::TestUnflatten::test_simple_alias, test/export/test_unflatten.py::TestUnflatten::test_unflatten_buffer_mutation, test/export/test_unflatten.py::TestUnflatten::test_unflatten_constant_obj, test/export/test_unflatten.py::TestUnflatten::test_unflatten_constant_tensor, test/export/test_unflatten.py::TestUnflatten::test_unflatten_container_type, test/export/test_unflatten.py::TestUnflatten::test_unflatten_eager, test/export/test_unflatten.py::TestUnflatten::test_unflatten_empty_branch, test/export/test_unflatten.py::TestUnflatten::test_unflatten_nested, test/export/test_unflatten.py::TestUnflatten::test_unflatten_nested_access, test/export/test_unflatten.py::TestUnflatten::test_unflatten_none, test/export/test_unflatten.py::TestUnflatten::test_unflatten_param_list_dict, test/export/test_unflatten.py::TestUnflatten::test_unflatten_preserve_signature, test/export/test_unflatten.py::TestUnflatten::test_unflatten_preserve_with_unused_input, test/export/test_unflatten.py::TestUnflatten::test_unflatten_requires_grad_param, test/export/test_unflatten.py::TestUnflatten::test_unflatten_shared_submodule, test/export/test_unflatten.py::TestUnflatten::test_unflatten_skipped_call_module, test/export/test_unflatten.py::TestUnflatten::test_unflatten_submodule_ordering, test/export/test_unflatten.py::TestUnflatten::test_unflatten_with_inplace_compile, test/export/test_unflatten.py::TestUnflatten::test_unflatten_wrong_input, test/export/test_unflatten.py::TestUnflatten::test_unflattened_module_nodes_has_meta_val 2025-08-14T22:20:32.4345148Z 2025-08-14T22:20:33.3456238Z Running dynamo/test_einops 1/1 ... [2025-08-14 22:20:33.345322] 2025-08-14T22:20:33.3456754Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:20:33.3463428Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_einops.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:20:33.345322] 2025-08-14T22:20:38.0017100Z Running inductor/test_minifier_isolate 1/1 ... [2025-08-14 22:20:38.001281] 2025-08-14T22:20:38.0017623Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:20:38.0024722Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_minifier_isolate.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:20:38.001933] 2025-08-14T22:20:38.1509665Z 2025-08-14T22:20:38.1511158Z dynamo/test_einops 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_einops_1.1_d02141a8946105f7_.log 2025-08-14T22:20:38.1511878Z 2025-08-14T22:20:42.4452685Z 2025-08-14T22:20:42.4454090Z export/test_passes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_passes_1.1_0be5c64fcc29aac4_.log 2025-08-14T22:20:42.4464274Z Running 26 items in this shard: test/export/test_passes.py::TestPasses::test_constant_folding_pass, test/export/test_passes.py::TestPasses::test_custom_obj_tuple_out, test/export/test_passes.py::TestPasses::test_fakify_script_objects, test/export/test_passes.py::TestPasses::test_fakify_script_objects_properly_handle_containers, test/export/test_passes.py::TestPasses::test_functionalization_with_view_copy, test/export/test_passes.py::TestPasses::test_inline_, test/export/test_passes.py::TestPasses::test_math_ops, test/export/test_passes.py::TestPasses::test_move_device_submod, test/export/test_passes.py::TestPasses::test_move_to_device_pass, test/export/test_passes.py::TestPasses::test_predispatch_autocast, test/export/test_passes.py::TestPasses::test_predispatch_autocast_and_set_grad, test/export/test_passes.py::TestPasses::test_predispatch_set_grad, test/export/test_passes.py::TestPasses::test_remove_auto_functionalized_pass, test/export/test_passes.py::TestPasses::test_remove_auto_functionalized_pass_tuple, test/export/test_passes.py::TestPasses::test_remove_effect_token_kwargs, test/export/test_passes.py::TestPasses::test_runtime_assert_inline_constraints_for_cond, test/export/test_passes.py::TestPasses::test_runtime_assert_inline_constraints_for_item, test/export/test_passes.py::TestPasses::test_runtime_assert_inline_constraints_for_nonzero, test/export/test_passes.py::TestPasses::test_runtime_assert_multiple_dims, test/export/test_passes.py::TestPasses::test_runtime_assert_one_dim, test/export/test_passes.py::TestPasses::test_runtime_assert_some_dims_not_specified, test/export/test_passes.py::TestPasses::test_runtime_assert_some_inps_not_used, test/export/test_passes.py::TestPasses::test_sequential_split, test/export/test_passes.py::TestPasses::test_sequential_split_graph, test/export/test_passes.py::TestPasses::test_view_to_view_copy, test/export/test_passes.py::TestPasses::test_views_op_having_view_copy 2025-08-14T22:20:42.4473580Z 2025-08-14T22:20:44.0408418Z Running dynamo/test_export 1/1 ... [2025-08-14 22:20:44.040397] 2025-08-14T22:20:44.0408921Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:20:44.0416359Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_export.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:20:44.041041] 2025-08-14T22:20:48.4076708Z Running dynamo/test_base_hop 1/1 ... [2025-08-14 22:20:48.402604] 2025-08-14T22:20:48.4077188Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:20:48.4084453Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_base_hop.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:20:48.408165] 2025-08-14T22:20:48.9713932Z 2025-08-14T22:20:48.9715300Z inductor/test_minifier_isolate 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_minifier_isolate_1.1_56e29603ac188899_.log 2025-08-14T22:20:48.9716236Z 2025-08-14T22:20:49.7124792Z 2025-08-14T22:20:49.7126041Z dynamo/test_export 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_export_1.1_62e4044afcc31f19_.log 2025-08-14T22:20:49.7126702Z 2025-08-14T22:20:53.8761673Z 2025-08-14T22:20:53.8762906Z dynamo/test_base_hop 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_base_hop_1.1_4a5d7a296ed614c8_.log 2025-08-14T22:20:53.8763585Z 2025-08-14T22:20:54.9195626Z Running test_content_store 1/1 ... [2025-08-14 22:20:54.919135] 2025-08-14T22:20:54.9196141Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:20:54.9206708Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_content_store.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:20:54.920434] 2025-08-14T22:20:55.3056494Z Running dynamo/test_optimizers 1/1 ... [2025-08-14 22:20:55.297825] 2025-08-14T22:20:55.3056991Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:20:55.3063831Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_optimizers.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:20:55.297825] 2025-08-14T22:20:59.7176174Z Running export/test_lift_unlift 1/1 ... [2025-08-14 22:20:59.717423] 2025-08-14T22:20:59.7176805Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:20:59.7218269Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_lift_unlift.py', '-m', 'not serial', '--shard-id=1', '--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:59.720848] 2025-08-14T22:21:00.2791884Z 2025-08-14T22:21:00.2793433Z dynamo/test_optimizers 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_optimizers_1.1_bf8a8abfce0957ce_.log 2025-08-14T22:21:00.2794175Z 2025-08-14T22:21:05.0678408Z 2025-08-14T22:21:05.0679684Z export/test_lift_unlift 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_lift_unlift_1.1_8e496a000b7f2701_.log 2025-08-14T22:21:05.0681887Z Running 5 items in this shard: test/export/test_lift_unlift.py::TestLift::test_duplicate_constant_access, test/export/test_lift_unlift.py::TestLift::test_lift_basic, test/export/test_lift_unlift.py::TestLift::test_lift_nested, test/export/test_lift_unlift.py::TestLift::test_unlift_nonpersistent_buffer, test/export/test_lift_unlift.py::ConstantAttrMapTest::test_dict_api 2025-08-14T22:21:05.0683569Z 2025-08-14T22:21:05.7695887Z Running dynamo/test_compiler_bisector 1/1 ... [2025-08-14 22:21:05.769197] 2025-08-14T22:21:05.7696411Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:21:05.7703946Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_compiler_bisector.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:21:05.770208] 2025-08-14T22:21:10.7332308Z Running test_model_exports_to_core_aten 1/1 ... [2025-08-14 22:21:10.733014] 2025-08-14T22:21:10.7332822Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:21:10.7339781Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_model_exports_to_core_aten.py', '-m', 'not serial', '--shard-id=1', '--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.733761] 2025-08-14T22:21:11.3693255Z 2025-08-14T22:21:11.3694279Z test_content_store 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_content_store_1.1_50c6f353c7aa97b8_.log 2025-08-14T22:21:11.3696685Z Running 4 items in this shard: test/test_content_store.py::TestContentStoreCPU::test_basic_cpu, test/test_content_store.py::TestContentStoreCPU::test_load_tensor_cpu, test/test_content_store.py::TestContentStoreCPU::test_repeated_hash_cpu, test/test_content_store.py::TestContentStoreCPU::test_scalar_cpu 2025-08-14T22:21:11.3698006Z 2025-08-14T22:21:15.9886751Z 2025-08-14T22:21:15.9888055Z test_model_exports_to_core_aten 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_model_exports_to_core_aten_1.1_741c5dc9323606fa_.log 2025-08-14T22:21:15.9889294Z Running 1 items in this shard: test/test_model_exports_to_core_aten.py::TestQuantizePT2EModels::test_vit_aten_export 2025-08-14T22:21:15.9889808Z 2025-08-14T22:21:16.9586585Z Running dynamo/test_input_attr_tracking 1/1 ... [2025-08-14 22:21:16.942717] 2025-08-14T22:21:16.9587168Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:21:16.9593856Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_input_attr_tracking.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:21:16.959156] 2025-08-14T22:21:17.2948200Z 2025-08-14T22:21:17.2949598Z dynamo/test_compiler_bisector 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_compiler_bisector_1.1_dc8b0b58d3c08a81_.log 2025-08-14T22:21:17.2950485Z 2025-08-14T22:21:21.6906158Z Running export/test_hop 1/1 ... [2025-08-14 22:21:21.689891] 2025-08-14T22:21:21.6906648Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:21:21.6912246Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_hop.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:21:21.690516] 2025-08-14T22:21:22.0302794Z 2025-08-14T22:21:22.0304285Z dynamo/test_input_attr_tracking 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_input_attr_tracking_1.1_4b23113431c77e69_.log 2025-08-14T22:21:22.0305082Z 2025-08-14T22:21:22.8745441Z Running export/test_converter 1/1 ... [2025-08-14 22:21:22.873954] 2025-08-14T22:21:22.8747470Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:21:22.8752982Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_converter.py', '-m', 'not serial', '--shard-id=1', '--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.874640] 2025-08-14T22:21:27.4841737Z Running dynamo/test_callback 1/1 ... [2025-08-14 22:21:27.483963] 2025-08-14T22:21:27.4842271Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:21:27.4849329Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_callback.py', '-m', 'not serial', '--shard-id=1', '--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:27.484604] 2025-08-14T22:21:28.0856479Z 2025-08-14T22:21:28.0857663Z export/test_hop 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_hop_1.1_d7d2cf88d5de9e7d_.log 2025-08-14T22:21:28.0872448Z Running 36 items in this shard: test/export/test_hop.py::TestHOPCPU::test_aot_export_auto_functionalize_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_aot_export_cond_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_aot_export_flex_attention_backward_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_aot_export_flex_attention_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_aot_export_invoke_quant_packed_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_aot_export_invoke_quant_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_aot_export_invoke_subgraph_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_aot_export_scan_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_aot_export_while_loop_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_pre_dispatch_export_auto_functionalize_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_pre_dispatch_export_cond_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_pre_dispatch_export_flex_attention_backward_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_pre_dispatch_export_flex_attention_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_pre_dispatch_export_invoke_quant_packed_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_pre_dispatch_export_invoke_quant_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_pre_dispatch_export_invoke_subgraph_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_pre_dispatch_export_scan_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_pre_dispatch_export_while_loop_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_retrace_export_auto_functionalize_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_retrace_export_cond_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_retrace_export_flex_attention_backward_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_retrace_export_flex_attention_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_retrace_export_invoke_quant_packed_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_retrace_export_invoke_quant_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_retrace_export_invoke_subgraph_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_retrace_export_scan_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_retrace_export_while_loop_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_serialize_export_auto_functionalize_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_serialize_export_cond_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_serialize_export_flex_attention_backward_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_serialize_export_flex_attention_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_serialize_export_invoke_quant_packed_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_serialize_export_invoke_quant_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_serialize_export_invoke_subgraph_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_serialize_export_scan_simple_cpu_float32, test/export/test_hop.py::TestHOPCPU::test_serialize_export_while_loop_simple_cpu_float32 2025-08-14T22:21:28.0886602Z 2025-08-14T22:21:33.6767796Z Running export/test_pass_infra 1/1 ... [2025-08-14 22:21:33.669366] 2025-08-14T22:21:33.6768340Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:21:33.6775276Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_pass_infra.py', '-m', 'not serial', '--shard-id=1', '--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:33.669366] 2025-08-14T22:21:38.2456613Z 2025-08-14T22:21:38.2457946Z dynamo/test_callback 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_callback_1.1_21227fafe4b5d9f9_.log 2025-08-14T22:21:38.2458755Z 2025-08-14T22:21:38.6905492Z 2025-08-14T22:21:38.6906750Z export/test_converter 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_converter_1.1_d6b03908077152ce_.log 2025-08-14T22:21:38.6922509Z Running 48 items in this shard: test/export/test_converter.py::TestConverter::test_aten___getitem___dict, test/export/test_converter.py::TestConverter::test_aten___getitem___list, test/export/test_converter.py::TestConverter::test_aten___is__, test/export/test_converter.py::TestConverter::test_aten___isnot__, test/export/test_converter.py::TestConverter::test_aten___not__, test/export/test_converter.py::TestConverter::test_aten_add_t, test/export/test_converter.py::TestConverter::test_aten_append_t, test/export/test_converter.py::TestConverter::test_aten_dim, test/export/test_converter.py::TestConverter::test_aten_floordiv, test/export/test_converter.py::TestConverter::test_aten_len, test/export/test_converter.py::TestConverter::test_aten_tensor_dtype_int, test/export/test_converter.py::TestConverter::test_aten_tensor_dynamic, test/export/test_converter.py::TestConverter::test_aten_tensor_prim_dtype, test/export/test_converter.py::TestConverter::test_aten_to_dtype_with_mutating_storage, test/export/test_converter.py::TestConverter::test_context_manager, test/export/test_converter.py::TestConverter::test_convert_func_without_param, test/export/test_converter.py::TestConverter::test_convert_if_basic, test/export/test_converter.py::TestConverter::test_convert_if_duplicate_attr_names, test/export/test_converter.py::TestConverter::test_convert_if_multiple_out, test/export/test_converter.py::TestConverter::test_convert_if_tuple_out, test/export/test_converter.py::TestConverter::test_convert_nn_module_with_nested_buffer, test/export/test_converter.py::TestConverter::test_convert_nn_module_with_nested_if_and_buffer, test/export/test_converter.py::TestConverter::test_convert_nn_module_with_nested_if_and_param, test/export/test_converter.py::TestConverter::test_convert_nn_module_with_nested_param, test/export/test_converter.py::TestConverter::test_convert_retrace_nested_scripted_modules, test/export/test_converter.py::TestConverter::test_convert_script_object, test/export/test_converter.py::TestConverter::test_get_tensor_constants, test/export/test_converter.py::TestConverter::test_hidden_input_name, test/export/test_converter.py::TestConverter::test_implicit_constant_to_tensor_handling, test/export/test_converter.py::TestConverter::test_prim_SetAttr, test/export/test_converter.py::TestConverter::test_prim_device, test/export/test_converter.py::TestConverter::test_prim_device_cuda, test/export/test_converter.py::TestConverter::test_prim_dtype, test/export/test_converter.py::TestConverter::test_prim_max, test/export/test_converter.py::TestConverter::test_prim_min, test/export/test_converter.py::TestConverter::test_prim_tolist, test/export/test_converter.py::TestConverter::test_profiler__record_function, test/export/test_converter.py::TestConverter::test_raise_exception, test/export/test_converter.py::TestConverter::test_ts2ep_convert_quantized_model, test/export/test_converter.py::TestConverter::test_ts2ep_convert_quantized_model_with_opcontext, test/export/test_converter.py::TestConverter::test_ts2ep_convert_quantized_model_with_opcontext_and_constant, test/export/test_converter.py::TestConverter::test_ts2ep_converter_basic, test/export/test_converter.py::TestConverter::test_ts2ep_converter_container_output, test/export/test_converter.py::TestConverter::test_ts2ep_converter_contains, test/export/test_converter.py::TestConverter::test_ts2ep_converter_custom_op, test/export/test_converter.py::TestConverter::test_ts2ep_converter_unpack, test/export/test_converter.py::TestConverter::test_ts2ep_multi_outputs_on_call_ops, test/export/test_converter.py::TestConverter::test_ts2ep_with_loop 2025-08-14T22:21:38.6937486Z 2025-08-14T22:21:43.9260271Z Running dynamo/test_aot_autograd_cache 1/1 ... [2025-08-14 22:21:43.925095] 2025-08-14T22:21:43.9260830Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:21:43.9267340Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_aot_autograd_cache.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:21:43.925095] 2025-08-14T22:21:44.3640986Z Running dynamo/test_cudagraphs_expandable_segments 1/1 ... [2025-08-14 22:21:44.363755] 2025-08-14T22:21:44.3641593Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:21:44.3648385Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_cudagraphs_expandable_segments.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:21:44.363755] 2025-08-14T22:21:48.3450247Z 2025-08-14T22:21:48.3451814Z export/test_pass_infra 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_pass_infra_1.1_15131716d6f703ad_.log 2025-08-14T22:21:48.3454851Z Running 5 items in this shard: test/export/test_pass_infra.py::TestPassInfra::test_cond, test/export/test_pass_infra.py::TestPassInfra::test_export_pass_base, test/export/test_pass_infra.py::TestPassInfra::test_graph_signature_updated_after_transformation, test/export/test_pass_infra.py::TestPassInfra::test_node_name_stability, test/export/test_pass_infra.py::TestPassInfra::test_replace_hook_basic 2025-08-14T22:21:48.3456743Z 2025-08-14T22:21:49.7521933Z 2025-08-14T22:21:49.7523737Z dynamo/test_cudagraphs_expandable_segments 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_cudagraphs_expandable_segments_1.1_31a36c9d46bd1a20_.log 2025-08-14T22:21:49.7524719Z 2025-08-14T22:21:53.9970225Z Running test_sparse_semi_structured 1/1 ... [2025-08-14 22:21:53.991648] 2025-08-14T22:21:53.9970761Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:21:53.9977800Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_sparse_semi_structured.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:21:53.991648] 2025-08-14T22:21:54.9602582Z 2025-08-14T22:21:54.9603989Z dynamo/test_aot_autograd_cache 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_aot_autograd_cache_1.1_af5b9a8477603989_.log 2025-08-14T22:21:54.9604858Z 2025-08-14T22:21:55.3412487Z Running export/test_serialize 1/1 ... [2025-08-14 22:21:55.341035] 2025-08-14T22:21:55.3413090Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:21:55.3421125Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_serialize.py', '-m', 'not serial', '--shard-id=1', '--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:55.341881] 2025-08-14T22:22:00.4869792Z Running dynamo/test_torchrec 1/1 ... [2025-08-14 22:22:00.485079] 2025-08-14T22:22:00.4870503Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:00.4876847Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_torchrec.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:22:00.485079] 2025-08-14T22:22:05.1778771Z 2025-08-14T22:22:05.1780188Z test_sparse_semi_structured 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_sparse_semi_structured_1.1_5d2f565ee3d19487_.log 2025-08-14T22:22:05.1801444Z Running 42 items in this shard: test/test_sparse_semi_structured.py::SparseSemiStructuredTensorCompileTest::test_mlp_contiguous_relu_compile_cusparselt, test/test_sparse_semi_structured.py::SparseSemiStructuredTensorCompileTest::test_mlp_contiguous_relu_compile_cutlass, test/test_sparse_semi_structured.py::SparseSemiStructuredTensorCompileTest::test_sp24_compile, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_indices, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_linear, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_min_sparse_shape, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_mlp, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_mm_sparse_first_NN, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_mm_sparse_first_NT, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_mm_sparse_first_TN, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_mm_sparse_second_NN, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_mm_sparse_second_NT, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_to_sparse_semi_structured, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_unsupported_dim, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_unsupported_dtype, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_unsupported_shape, test/test_sparse_semi_structured.py::TestSparseSemiStructured::test_values, test/test_sparse_semi_structured.py::TestSparseSemiStructuredTraining::test_gemm, test/test_sparse_semi_structured.py::TestSparseSemiStructuredTraining::test_pack_both_ways_edge_case1, test/test_sparse_semi_structured.py::TestSparseSemiStructuredTraining::test_pack_both_ways_id, test/test_sparse_semi_structured.py::TestSparseSemiStructuredTraining::test_pack_both_ways_meta_correctness, test/test_sparse_semi_structured.py::TestSparseSemiStructuredTraining::test_prune_dense_static_sort, test/test_sparse_semi_structured.py::TestSparseSemiStructuredTraining::test_pruning_algo_largest_abs_values_greedy, test/test_sparse_semi_structured.py::TestSparseSemiStructuredTraining::test_sp24_apply, test/test_sparse_semi_structured.py::TestSparseSemiStructuredTraining::test_sp24_apply_dense, test/test_sparse_semi_structured.py::TestSparseSemiStructuredTraining::test_sp24_matmuls, test/test_sparse_semi_structured.py::TestSparseSemiStructuredTraining::test_sp24_matmuls_bmm, test/test_sparse_semi_structured.py::TestSparseSemiStructuredTraining::test_sp24_matmuls_mat_vec, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUTLASS::test_conversions, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUTLASS::test_conversions_all_patterns, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUTLASS::test_linear_cutlass, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUTLASS::test_sparse_semi_structured_ops_cutlass, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUSPARSELT::test_cslt_sparse_mm_alpha, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUSPARSELT::test_cslt_sparse_mm_alpha_compile_autotune, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUSPARSELT::test_cslt_sparse_mm_alpha_mixed_dtype, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUSPARSELT::test_cslt_sparse_mm_mixed_dtype, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUSPARSELT::test_cslt_sparse_mm_search, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUSPARSELT::test_csrc_cslt_sparse_mm_search, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUSPARSELT::test_cusparselt_backend, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUSPARSELT::test_sparse_fp8fp8_mm, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUSPARSELT::test_sparse_semi_structured_scaled_mm, test/test_sparse_semi_structured.py::TestSparseSemiStructuredCUSPARSELT::test_sparse_semi_structured_scaled_mm_fp8 2025-08-14T22:22:05.1819686Z 2025-08-14T22:22:05.5338764Z 2025-08-14T22:22:05.5339984Z dynamo/test_torchrec 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_torchrec_1.1_29caa53c92becf71_.log 2025-08-14T22:22:05.5340877Z 2025-08-14T22:22:10.8434937Z Running export/test_verifier 1/1 ... [2025-08-14 22:22:10.843284] 2025-08-14T22:22:10.8435509Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:10.8442964Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_verifier.py', '-m', 'not serial', '--shard-id=1', '--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.844089] 2025-08-14T22:22:11.4870946Z Running inductor/test_cudagraph_trees_expandable_segments 1/1 ... [2025-08-14 22:22:11.486806] 2025-08-14T22:22:11.4879577Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:11.4881221Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'inductor/test_cudagraph_trees_expandable_segments.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:22:11.487453] 2025-08-14T22:22:23.4933637Z 2025-08-14T22:22:23.4935003Z inductor/test_cudagraph_trees_expandable_segments 1/1 was successful, full logs can be found in artifacts with path test/test-reports/inductor.test_cudagraph_trees_expandable_segments_1.1_81c711066575d5bc_.log 2025-08-14T22:22:23.4935948Z 2025-08-14T22:22:24.3284498Z 2025-08-14T22:22:24.3285947Z export/test_verifier 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_verifier_1.1_68a53274a954363b_.log 2025-08-14T22:22:24.3291155Z Running 10 items in this shard: test/export/test_verifier.py::TestVerifier::test_ep_verifier_basic, test/export/test_verifier.py::TestVerifier::test_ep_verifier_buffer_mutate, test/export/test_verifier.py::TestVerifier::test_ep_verifier_invalid_buffer, test/export/test_verifier.py::TestVerifier::test_ep_verifier_invalid_output, test/export/test_verifier.py::TestVerifier::test_ep_verifier_invalid_param, test/export/test_verifier.py::TestVerifier::test_verifier_basic, test/export/test_verifier.py::TestVerifier::test_verifier_call_module, test/export/test_verifier.py::TestVerifier::test_verifier_higher_order, test/export/test_verifier.py::TestVerifier::test_verifier_nested_invalid_module, test/export/test_verifier.py::TestVerifier::test_verifier_no_functional 2025-08-14T22:22:24.3294756Z 2025-08-14T22:22:25.0784022Z 2025-08-14T22:22:25.0785199Z export/test_serialize 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_serialize_1.1_a3cf5fd0ae9957a9_.log 2025-08-14T22:22:25.0820563Z Running 101 items in this shard: test/export/test_serialize.py::TestSerialize::test_canonicalize, test/export/test_serialize.py::TestSerialize::test_export_example_inputs_preserved, test/export/test_serialize.py::TestSerialize::test_export_with_extension_op_serialization, test/export/test_serialize.py::TestSerialize::test_int_list, test/export/test_serialize.py::TestSerialize::test_kwargs_default, test/export/test_serialize.py::TestSerialize::test_metadata_parsing_with_layer_split, test/export/test_serialize.py::TestSerialize::test_metadata_run_decomp_serder, test/export/test_serialize.py::TestSerialize::test_multi_return_some_unused, test/export/test_serialize.py::TestSerialize::test_nested_layer_split, test/export/test_serialize.py::TestSerialize::test_nonfinite_inputs, test/export/test_serialize.py::TestSerialize::test_predispatch_export_with_autograd_op, test/export/test_serialize.py::TestSerialize::test_rational_ranges, test/export/test_serialize.py::TestSerialize::test_serialize_constant_outputs, test/export/test_serialize.py::TestSerialize::test_serialize_infinite_sym_int, test/export/test_serialize.py::TestSerialize::test_serialize_list_returns, test/export/test_serialize.py::TestSerialize::test_serialize_multiple_returns_from_node, test/export/test_serialize.py::TestSerialize::test_serialize_param_mutation, test/export/test_serialize.py::TestSerialize::test_serialize_sym_float, test/export/test_serialize.py::TestSerialize::test_serialize_sym_int, test/export/test_serialize.py::TestSerialize::test_symint_list, test/export/test_serialize.py::TestDeserialize::test_arg_from, test/export/test_serialize.py::TestDeserialize::test_auto_functionalize, test/export/test_serialize.py::TestDeserialize::test_basic, test/export/test_serialize.py::TestDeserialize::test_cond, test/export/test_serialize.py::TestDeserialize::test_constraints, test/export/test_serialize.py::TestDeserialize::test_custom_obj, test/export/test_serialize.py::TestDeserialize::test_custom_obj_list_out, test/export/test_serialize.py::TestDeserialize::test_custom_obj_tuple_out, test/export/test_serialize.py::TestDeserialize::test_device, test/export/test_serialize.py::TestDeserialize::test_dynamic, test/export/test_serialize.py::TestDeserialize::test_export_no_inputs, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_assume_constant_result, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_autograd_function, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_class_method, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_cond_branch_class_method, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_cond_branch_nested_function, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_cond_branch_nonlocal_variables, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_cond_closed_over_variable, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_cond_operands, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_cond_predicate, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_constrain_as_size_example, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_constrain_as_value_example, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_decorator, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_dictionary, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_dynamic_shape_assert, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_dynamic_shape_constructor, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_dynamic_shape_if_guard, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_dynamic_shape_map, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_dynamic_shape_slicing, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_dynamic_shape_view, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_fn_with_kwargs, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_list_contains, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_list_unpack, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_nested_function, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_null_context_manager, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_pytree_flatten, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_scalar_output, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_specialized_attribute, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_static_for_loop, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_static_if, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_tensor_setattr, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_type_reflection_method, test/export/test_serialize.py::TestDeserialize::test_exportdb_supported_case_user_input_mutation, test/export/test_serialize.py::TestDeserialize::test_get_attr, test/export/test_serialize.py::TestDeserialize::test_get_attr_list, test/export/test_serialize.py::TestDeserialize::test_hoo_symint_input, test/export/test_serialize.py::TestDeserialize::test_list_of_optional_tensors, test/export/test_serialize.py::TestDeserialize::test_map, test/export/test_serialize.py::TestDeserialize::test_module, test/export/test_serialize.py::TestDeserialize::test_module_meta, test/export/test_serialize.py::TestDeserialize::test_multi_return, test/export/test_serialize.py::TestDeserialize::test_multiple_getitem, test/export/test_serialize.py::TestDeserialize::test_none_input, test/export/test_serialize.py::TestDeserialize::test_optional_tuple, test/export/test_serialize.py::TestDeserialize::test_positional_argument_with_default_value, test/export/test_serialize.py::TestDeserialize::test_pytree_namedtuple, test/export/test_serialize.py::TestDeserialize::test_serialize_float8, test/export/test_serialize.py::TestDeserialize::test_shape, test/export/test_serialize.py::TestDeserialize::test_sym_bool, test/export/test_serialize.py::TestDeserialize::test_sym_bool_dynamic_shapes, test/export/test_serialize.py::TestDeserialize::test_sym_bool_torch_check_equal, test/export/test_serialize.py::TestDeserialize::test_sym_float, test/export/test_serialize.py::TestDeserialize::test_sym_int_torch_check_equal, test/export/test_serialize.py::TestDeserialize::test_sym_ite, test/export/test_serialize.py::TestDeserialize::test_tensor_tensor_list, test/export/test_serialize.py::TestDeserialize::test_unbacked_bindings_serialize, test/export/test_serialize.py::TestSchemaVersioning::test_error, test/export/test_serialize.py::TestSaveLoad::test_save_buffer, test/export/test_serialize.py::TestSaveLoad::test_save_constants, test/export/test_serialize.py::TestSaveLoad::test_save_extra, test/export/test_serialize.py::TestSaveLoad::test_save_file, test/export/test_serialize.py::TestSaveLoad::test_save_path, test/export/test_serialize.py::TestSaveLoad::test_version_error, test/export/test_serialize.py::TestSerializeCustomClass::test_backed_size_oblivious_serdes, test/export/test_serialize.py::TestSerializeCustomClass::test_custom_class, test/export/test_serialize.py::TestSerializeCustomClass::test_custom_class_containing_fake_tensor, test/export/test_serialize.py::TestSerializeCustomClass::test_custom_class_input_to_function, test/export/test_serialize.py::TestSerializeCustomClass::test_custom_tag_metadata_copy, test/export/test_serialize.py::TestSerializeCustomClass::test_custom_tag_metadata_decomp, test/export/test_serialize.py::TestSerializeCustomClass::test_custom_tag_metadata_serialization, test/export/test_serialize.py::TestSerializeCustomClass::test_unbacked_range_serdes 2025-08-14T22:22:25.0854003Z 2025-08-14T22:22:29.0776952Z Running dynamo/test_generator 1/1 ... [2025-08-14 22:22:29.074802] 2025-08-14T22:22:29.0777438Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:29.0784139Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_generator.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:22:29.077942] 2025-08-14T22:22:29.9305643Z Running export/test_sparse 1/2 ... [2025-08-14 22:22:29.924382] 2025-08-14T22:22:29.9306331Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:29.9312531Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/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:22:29.924382] 2025-08-14T22:22:30.8017742Z Running functorch/test_eager_transforms 1/1 ... [2025-08-14 22:22:30.801259] 2025-08-14T22:22:30.8018357Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:30.8025655Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_eager_transforms.py', '-m', 'not serial', '--shard-id=1', '--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:30.801884] 2025-08-14T22:22:34.0094399Z 2025-08-14T22:22:34.0096051Z dynamo/test_generator 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_generator_1.1_34b9a7f3750ca050_.log 2025-08-14T22:22:34.0096875Z 2025-08-14T22:22:39.8988211Z Running export/test_draft_export 1/1 ... [2025-08-14 22:22:39.895952] 2025-08-14T22:22:39.8989176Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:39.8999687Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'export/test_draft_export.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:22:39.895952] 2025-08-14T22:22:51.8172378Z 2025-08-14T22:22:51.8173634Z export/test_draft_export 1/1 was successful, full logs can be found in artifacts with path test/test-reports/export.test_draft_export_1.1_2619b33e55846a28_.log 2025-08-14T22:22:51.8182992Z Running 21 items in this shard: test/export/test_draft_export.py::TestDraftExport::test_complex_data_dependent_expr, test/export/test_draft_export.py::TestDraftExport::test_constantify_unbacked_symbol, test/export/test_draft_export.py::TestDraftExport::test_cuda_memory_usage, test/export/test_draft_export.py::TestDraftExport::test_data_dependent_failure, test/export/test_draft_export.py::TestDraftExport::test_dedup_data_dependent_failure, test/export/test_draft_export.py::TestDraftExport::test_fake_infer_dense_in_memory_check, test/export/test_draft_export.py::TestDraftExport::test_masked_linear, test/export/test_draft_export.py::TestDraftExport::test_missing_meta_kernel_custom_op_basic, test/export/test_draft_export.py::TestDraftExport::test_missing_meta_kernel_custom_op_multiple_profiles, test/export/test_draft_export.py::TestDraftExport::test_missing_meta_kernel_custom_op_update_profile, test/export/test_draft_export.py::TestDraftExport::test_missing_meta_kernel_guard, test/export/test_draft_export.py::TestDraftExport::test_missing_meta_kernel_impl, test/export/test_draft_export.py::TestDraftExport::test_offsets, test/export/test_draft_export.py::TestDraftExport::test_override_incorrectly_aliasing_kernel, test/export/test_draft_export.py::TestDraftExport::test_override_mismatched_fake_kernel_with_unbacked_symbols, test/export/test_draft_export.py::TestDraftExport::test_override_size_and_dtype_mismatched_fake_kernels, test/export/test_draft_export.py::TestDraftExport::test_shape_failure, test/export/test_draft_export.py::TestDraftExport::test_side_effect1, test/export/test_draft_export.py::TestDraftExport::test_side_effect_inps, test/export/test_draft_export.py::TestDraftExport::test_torchbind, test/export/test_draft_export.py::TestDraftExport::test_unbacked_div_mod_replacement 2025-08-14T22:22:51.8190572Z 2025-08-14T22:22:57.5513368Z Running dynamo/test_comptime 1/1 ... [2025-08-14 22:22:57.551151] 2025-08-14T22:22:57.5513926Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:22:57.5521802Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'dynamo/test_comptime.py', '-m', 'not serial', '--shard-id=1', '--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.551964] 2025-08-14T22:22:59.8911284Z 2025-08-14T22:22:59.8912649Z functorch/test_eager_transforms 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_eager_transforms_1.1_d2447263f246ba10_.log 2025-08-14T22:22:59.9072105Z Running 355 items in this shard: test/functorch/test_eager_transforms.py::TestSliceArgnums::test_argnums_reorders, test/functorch/test_eager_transforms.py::TestSliceArgnums::test_duplicate_argnums, test/functorch/test_eager_transforms.py::TestSliceArgnums::test_flat_args_with_negative_int_argnum, test/functorch/test_eager_transforms.py::TestSliceArgnums::test_flat_args_with_positive_int_argnum, test/functorch/test_eager_transforms.py::TestSliceArgnums::test_flat_args_with_tuple_argnum, test/functorch/test_eager_transforms.py::TestSliceArgnums::test_invalid_argnum_type, test/functorch/test_eager_transforms.py::TestSliceArgnums::test_not_enough_argnums, test/functorch/test_eager_transforms.py::TestSliceArgnums::test_out_of_bounds_argnum_values, test/functorch/test_eager_transforms.py::TestSliceArgnums::test_pytree_args, test/functorch/test_eager_transforms.py::TestMakeFunctional::test_buffer_tying, test/functorch/test_eager_transforms.py::TestMakeFunctional::test_combine_state_for_ensemble_error, test/functorch/test_eager_transforms.py::TestMakeFunctional::test_combine_state_for_ensemble_smoke, test/functorch/test_eager_transforms.py::TestMakeFunctional::test_correctness_mnist_mechanism_functional_call, test/functorch/test_eager_transforms.py::TestMakeFunctional::test_correctness_mnist_mechanism_make_functional, test/functorch/test_eager_transforms.py::TestMakeFunctional::test_disable_autograd_tracking_disable_autograd_tracking_False, test/functorch/test_eager_transforms.py::TestMakeFunctional::test_disable_autograd_tracking_disable_autograd_tracking_True, test/functorch/test_eager_transforms.py::TestMakeFunctional::test_make_functional_state_correctly_returned_after_forward_mechanism_functional_call, test/functorch/test_eager_transforms.py::TestMakeFunctional::test_make_functional_state_correctly_returned_after_forward_mechanism_make_functional, test/functorch/test_eager_transforms.py::TestMakeFunctional::test_parameter_tying, test/functorch/test_eager_transforms.py::TestMakeFunctional::test_parameter_tying_ensemble, test/functorch/test_eager_transforms.py::TestMakeFunctional::test_parameter_tying_grad, test/functorch/test_eager_transforms.py::TestMakeFunctional::test_stack_module_state_error, test/functorch/test_eager_transforms.py::TestMakeFunctional::test_stack_module_state_leaf, test/functorch/test_eager_transforms.py::TestMakeFunctional::test_stack_module_state_mismatch_error, test/functorch/test_eager_transforms.py::TestMakeFunctional::test_stack_module_state_smoke, test/functorch/test_eager_transforms.py::TestMakeFunctional::test_using_detach_functional_call_detach_params_False, test/functorch/test_eager_transforms.py::TestMakeFunctional::test_using_detach_functional_call_detach_params_True, test/functorch/test_eager_transforms.py::TestMakeFunctional::test_with_buffers_disable_autograd_tracking_disable_autograd_tracking_False, test/functorch/test_eager_transforms.py::TestMakeFunctional::test_with_buffers_disable_autograd_tracking_disable_autograd_tracking_True, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_advanced_indexing_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_argnums_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_composed_with_autograd_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_composite_complicated_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_composite_simple_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_composite_two_ops_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_conj_bit_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_dtype_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_escaped_wrappers_are_ignored_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_escaped_wrappers_are_marked_as_dead_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_fn_with_kwargs_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_functional_init_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_functional_init_with_buffers_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_grad_aux_pytree_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_grad_aux_tensor_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_grad_of_vjp_composition_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_grad_of_vjp_of_grad_composition_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_grad_pytree_inputs_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_inplace_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_inplace_on_captures_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_inplace_on_view_base_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_inplace_on_view_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_invalid_argnums_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_is_cuda_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_manual_seed_inside_grad_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_negative_argnums_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_nesting_simple_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_no_grad_inside_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_no_grad_mixed_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_no_grad_nested_complicated_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_no_grad_nested_simple_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_no_grad_outside_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_no_grad_outside_vjp_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_no_grad_outside_vjp_fn_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_no_grad_outside_vjp_only_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_no_grad_value_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_numel_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_out_of_order_argnums_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_primitive_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_print_captured_tensor_inside_transform_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_shape_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_tensor_ctor_inside_grad_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_tensor_print_grad_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_tensor_print_grad_grad_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_tensor_print_vmap_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_tensor_print_vmap_grad_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_tensor_print_vmap_vmap_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_unrelated_grad_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_unrelated_hessian_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_unrelated_vjp_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_unrelated_vjp_multiple_inputs_outputs_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_view_inplace_simple_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_views_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_vjp_aux_pytree_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_vjp_aux_tensor_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_vjp_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_vjp_of_grad_composition_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_vjp_outputs_can_any_pytree_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_vjp_pytree_error_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_vjp_pytree_input_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_vjp_pytree_output_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_vjp_two_outputs_cpu, test/functorch/test_eager_transforms.py::TestGradTransformCPU::test_zero_grad_cpu, test/functorch/test_eager_transforms.py::TestVmapOfGradCPU::test_log_softmax_cpu, test/functorch/test_eager_transforms.py::TestVmapOfGradCPU::test_new_empty_materializes_tensor_cpu, test/functorch/test_eager_transforms.py::TestVmapOfGradCPU::test_new_zeros_materializes_tensor_cpu, test/functorch/test_eager_transforms.py::TestVmapOfGradCPU::test_per_sample_grads_embeddingnet_mechanism_functional_call_cpu, test/functorch/test_eager_transforms.py::TestVmapOfGradCPU::test_per_sample_grads_embeddingnet_mechanism_make_functional_cpu, test/functorch/test_eager_transforms.py::TestVmapOfGradCPU::test_per_sample_grads_inplace_view_cpu, test/functorch/test_eager_transforms.py::TestVmapOfGradCPU::test_per_sample_grads_simple_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_against_reference_correctness_different_devices_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_against_reference_correctness_different_devices_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_against_reference_default_arg_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_against_reference_default_arg_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_against_reference_multi_input_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_against_reference_multi_input_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_against_reference_multi_input_multi_output_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_against_reference_multi_input_multi_output_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_against_reference_simple_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_against_reference_simple_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_against_reference_unrelated_outputs_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_against_reference_unrelated_outputs_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_against_reference_zero_dim_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_against_reference_zero_dim_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_argnums_defaults_to_zero_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_argnums_defaults_to_zero_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_argnums_effect_on_return_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_argnums_effect_on_return_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_argnums_tuple_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_argnums_tuple_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_aux_pytree_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_aux_pytree_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_aux_tensor_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_aux_tensor_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_chunk_jacrev__preallocate_and_copy_False_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_chunk_jacrev__preallocate_and_copy_True_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_chunk_jacrev_chunksize_one__preallocate_and_copy_False_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_chunk_jacrev_chunksize_one__preallocate_and_copy_True_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_chunk_jacrev_composition__preallocate_and_copy_False_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_chunk_jacrev_composition__preallocate_and_copy_True_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_complex_error_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_diff_numel_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_diff_numel_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_dimensionality_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_dimensionality_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_empty_argnums_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_empty_argnums_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_empty_output_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_empty_output_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_float_argnums_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_float_argnums_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_hessian_simple_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_inplace_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_inplace_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_jac_with_non_tensor_args_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_jac_with_non_tensor_args_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_multiple_args_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_multiple_args_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_multiple_inputs_outputs_pytree_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_multiple_inputs_outputs_pytree_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_multiple_inputs_outputs_pytree_multidim_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_multiple_inputs_outputs_pytree_multidim_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_multiple_inputs_pytree_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_multiple_inputs_pytree_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_multiple_outputs_multiple_argnums_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_multiple_outputs_multiple_argnums_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_multiple_outputs_pytree_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_multiple_outputs_pytree_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_multiple_outputs_single_argnums_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_multiple_outputs_single_argnums_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_negative_argnums_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_negative_argnums_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_nested_jac_simple_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_nested_jac_simple_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_out_of_bounds_argnums_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_out_of_bounds_argnums_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_outputs_can_any_pytree_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_outputs_can_any_pytree_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_repeated_argnums_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_repeated_argnums_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_simple_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_simple_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_simple_not_flat_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_simple_not_flat_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_take_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_take_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_unrelated_input_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_unrelated_input_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_unrelated_output_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_unrelated_output_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_vmap_on_jac_simple_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestJacCPU::test_vmap_on_jac_simple_jacrev_cpu, test/functorch/test_eager_transforms.py::TestJvpCPU::test_autograd_function_disables_fwd_grad_cpu, test/functorch/test_eager_transforms.py::TestJvpCPU::test_aux_pytree_cpu, test/functorch/test_eager_transforms.py::TestJvpCPU::test_aux_tensor_cpu, test/functorch/test_eager_transforms.py::TestJvpCPU::test_disable_fwd_grad_inside_cpu, test/functorch/test_eager_transforms.py::TestJvpCPU::test_disable_fwd_grad_mixed_cpu, test/functorch/test_eager_transforms.py::TestJvpCPU::test_disable_fwd_grad_outside_cpu, test/functorch/test_eager_transforms.py::TestJvpCPU::test_inplace_on_captures_cpu, test/functorch/test_eager_transforms.py::TestJvpCPU::test_inputs_are_tuples_of_tensors_cpu, test/functorch/test_eager_transforms.py::TestJvpCPU::test_jvp_inside_autograd_function_cpu, test/functorch/test_eager_transforms.py::TestJvpCPU::test_jvp_new_tensor_cpu, test/functorch/test_eager_transforms.py::TestJvpCPU::test_multiple_inputs_cpu, test/functorch/test_eager_transforms.py::TestJvpCPU::test_multiple_inputs_outputs_cpu, test/functorch/test_eager_transforms.py::TestJvpCPU::test_multiple_outputs_cpu, test/functorch/test_eager_transforms.py::TestJvpCPU::test_nonempty_primals_and_tangents_cpu, test/functorch/test_eager_transforms.py::TestJvpCPU::test_outputs_can_any_pytree_cpu, test/functorch/test_eager_transforms.py::TestJvpCPU::test_primals_tangents_length_mismatch_cpu, test/functorch/test_eager_transforms.py::TestJvpCPU::test_pytree_inputs_cpu, test/functorch/test_eager_transforms.py::TestJvpCPU::test_pytree_inputs_error_cases_cpu, test/functorch/test_eager_transforms.py::TestJvpCPU::test_simple_cpu, test/functorch/test_eager_transforms.py::TestJvpCPU::test_strict_mode_cpu, test/functorch/test_eager_transforms.py::TestJvpCPU::test_unrelated_input_cpu, test/functorch/test_eager_transforms.py::TestJvpCPU::test_unrelated_output_cpu, test/functorch/test_eager_transforms.py::TestJvpCPU::test_zerotensor_vmapjvp_interaction_cpu, test/functorch/test_eager_transforms.py::TestLinearizeCPU::test_linearize_basic_cpu_float32, test/functorch/test_eager_transforms.py::TestLinearizeCPU::test_linearize_composition_grad_cpu_float32, test/functorch/test_eager_transforms.py::TestLinearizeCPU::test_linearize_composition_vmap_cpu_float32, test/functorch/test_eager_transforms.py::TestLinearizeCPU::test_linearize_errors_cpu, test/functorch/test_eager_transforms.py::TestLinearizeCPU::test_linearize_nested_input_nested_output_cpu_float32, test/functorch/test_eager_transforms.py::TestLinearizeCPU::test_linearize_return_cpu_float32, test/functorch/test_eager_transforms.py::TestVmapJvpInplaceViewCPU::test_all_dual_base_inplace_cpu, test/functorch/test_eager_transforms.py::TestVmapJvpInplaceViewCPU::test_all_dual_base_view_inplace_cpu, test/functorch/test_eager_transforms.py::TestVmapJvpInplaceViewCPU::test_all_dual_no_view_cpu, test/functorch/test_eager_transforms.py::TestVmapJvpInplaceViewCPU::test_right_dual_base_prop_cpu, test/functorch/test_eager_transforms.py::TestVmapJvpInplaceViewCPU::test_right_dual_view_prop_cpu, test/functorch/test_eager_transforms.py::TestHessianCPU::test_hessian_vectorize_correctness_multi_input_cpu, test/functorch/test_eager_transforms.py::TestHessianCPU::test_hessian_vectorize_correctness_simple_cpu, test/functorch/test_eager_transforms.py::TestHessianCPU::test_hessian_vectorize_correctness_unrelated_outputs_cpu, test/functorch/test_eager_transforms.py::TestHessianCPU::test_jacfwd_different_levels_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_autograd_function_no_setup_context_transform_functionalize_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_autograd_function_no_setup_context_transform_grad_and_value_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_autograd_function_no_setup_context_transform_grad_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_autograd_function_no_setup_context_transform_hessian_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_autograd_function_no_setup_context_transform_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_autograd_function_no_setup_context_transform_jacrev_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_autograd_function_no_setup_context_transform_vmap_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_autograd_functional_jacfwd_inside_transform_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_autograd_functional_jacrev_inside_transform_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_autograd_functional_jvp_inside_transform_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_autograd_functional_vjp_inside_transform_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_can_use_functionalize_when_key_is_excluded_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_can_use_grad_when_key_is_excluded_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_can_use_vmap_when_key_is_excluded_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_deprecation_transforms_transform_functionalize_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_deprecation_transforms_transform_grad_and_value_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_deprecation_transforms_transform_grad_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_deprecation_transforms_transform_hessian_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_deprecation_transforms_transform_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_deprecation_transforms_transform_jacrev_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_deprecation_vmap_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_grad_grad_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_grad_vjp_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_grad_vmap_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_jvp_supports_saved_tensor_hooks_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_make_fx_jacrev_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_make_fx_vjp_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_make_fx_vmap_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_no_warning_on_import_functorch_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_requires_grad_inside_transform_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_retain_grad_inside_transform_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_transforms_dont_support_saved_tensor_hooks_transform_grad_and_value_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_transforms_dont_support_saved_tensor_hooks_transform_grad_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_transforms_dont_support_saved_tensor_hooks_transform_hessian_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_transforms_dont_support_saved_tensor_hooks_transform_jacrev_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_vjp_doesnt_support_saved_tensor_hooks_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_vjp_grad_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_vjp_vjp_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_vjp_vmap_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_vmap_grad_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_vmap_vjp_cpu, test/functorch/test_eager_transforms.py::TestComposabilityCPU::test_vmap_vmap_cpu, test/functorch/test_eager_transforms.py::TestExamplesCorrectnessCPU::test_ensemble_regression_mechanism_functional_call_cpu, test/functorch/test_eager_transforms.py::TestExamplesCorrectnessCPU::test_ensemble_regression_mechanism_make_functional_cpu, test/functorch/test_eager_transforms.py::TestExamplesCorrectnessCPU::test_find_learning_rate_ensembling_AlphaDropout_mechanism_functional_call_cpu, test/functorch/test_eager_transforms.py::TestExamplesCorrectnessCPU::test_find_learning_rate_ensembling_AlphaDropout_mechanism_make_functional_cpu, test/functorch/test_eager_transforms.py::TestExamplesCorrectnessCPU::test_find_learning_rate_ensembling_Dropout_mechanism_functional_call_cpu, test/functorch/test_eager_transforms.py::TestExamplesCorrectnessCPU::test_find_learning_rate_ensembling_Dropout_mechanism_make_functional_cpu, test/functorch/test_eager_transforms.py::TestExamplesCorrectnessCPU::test_find_learning_rate_ensembling_FeatureAlphaDropout_mechanism_functional_call_cpu, test/functorch/test_eager_transforms.py::TestExamplesCorrectnessCPU::test_find_learning_rate_ensembling_FeatureAlphaDropout_mechanism_make_functional_cpu, test/functorch/test_eager_transforms.py::TestExamplesCorrectnessCPU::test_lennard_jones_batched_jac_jac_jacfwd_cpu, test/functorch/test_eager_transforms.py::TestExamplesCorrectnessCPU::test_lennard_jones_batched_jac_jac_jacrev_cpu, test/functorch/test_eager_transforms.py::TestExamplesCorrectnessCPU::test_maml_omniglot_mechanism_functional_call_cpu, test/functorch/test_eager_transforms.py::TestExamplesCorrectnessCPU::test_maml_omniglot_mechanism_make_functional_cpu, test/functorch/test_eager_transforms.py::TestExamplesCorrectnessCPU::test_maml_regression_mechanism_functional_call_cpu, test/functorch/test_eager_transforms.py::TestExamplesCorrectnessCPU::test_maml_regression_mechanism_make_functional_cpu, test/functorch/test_eager_transforms.py::TestExamplesCorrectnessCPU::test_resnet18_per_sample_grads_mechanism_functional_call_cpu, test/functorch/test_eager_transforms.py::TestExamplesCorrectnessCPU::test_resnet18_per_sample_grads_mechanism_make_functional_cpu, test/functorch/test_eager_transforms.py::TestExamplesCorrectnessCPU::test_update_batch_norm_mechanism_functional_call_originally_track_running_stats_False_cpu, test/functorch/test_eager_transforms.py::TestExamplesCorrectnessCPU::test_update_batch_norm_mechanism_functional_call_originally_track_running_stats_True_cpu, test/functorch/test_eager_transforms.py::TestExamplesCorrectnessCPU::test_update_batch_norm_mechanism_make_functional_originally_track_running_stats_False_cpu, test/functorch/test_eager_transforms.py::TestExamplesCorrectnessCPU::test_update_batch_norm_mechanism_make_functional_originally_track_running_stats_True_cpu, test/functorch/test_eager_transforms.py::TestHigherOrderOperatorInteractionCPU::test_basic_sum_cpu, test/functorch/test_eager_transforms.py::TestHigherOrderOperatorInteractionCPU::test_functional_call_multiple_dicts_cpu, test/functorch/test_eager_transforms.py::TestHigherOrderOperatorInteractionCPU::test_grad_grad_sum_cpu, test/functorch/test_eager_transforms.py::TestHigherOrderOperatorInteractionCPU::test_grad_name_wrapping_cpu, test/functorch/test_eager_transforms.py::TestHigherOrderOperatorInteractionCPU::test_grad_sum_cpu, test/functorch/test_eager_transforms.py::TestHigherOrderOperatorInteractionCPU::test_no_grad_inside_grad_cpu, test/functorch/test_eager_transforms.py::TestHigherOrderOperatorInteractionCPU::test_no_grad_outside_grad_cpu, test/functorch/test_eager_transforms.py::TestHigherOrderOperatorInteractionCPU::test_vmap_grad_sum_cpu, test/functorch/test_eager_transforms.py::TestHigherOrderOperatorInteractionCPU::test_vmap_sum_cpu, test/functorch/test_eager_transforms.py::TestFunctionalizeCPU::test_functionalize_fake_tensors_cpu, test/functorch/test_eager_transforms.py::TestFunctionalizeCPU::test_functionalize_fx_multi_out_op_cpu, test/functorch/test_eager_transforms.py::TestFunctionalizeCPU::test_functionalize_fx_out_op_cpu, test/functorch/test_eager_transforms.py::TestFunctionalizeCPU::test_functionalize_fx_reapply_views_simple_cpu, test/functorch/test_eager_transforms.py::TestFunctionalizeCPU::test_functionalize_fx_simple_cpu, test/functorch/test_eager_transforms.py::TestFunctionalizeCPU::test_functionalize_fx_transpose_simple_cpu, test/functorch/test_eager_transforms.py::TestFunctionalizeCPU::test_functionalize_grad_cpu, test/functorch/test_eager_transforms.py::TestFunctionalizeCPU::test_functionalize_nonfunctional_output_cpu, test/functorch/test_eager_transforms.py::TestFunctionalizeCPU::test_functionalize_opt_tensor_list_cpu, test/functorch/test_eager_transforms.py::TestFunctionalizeCPU::test_functionalize_optional_tensorlist1_cpu, test/functorch/test_eager_transforms.py::TestFunctionalizeCPU::test_functionalize_optional_tensorlist2_cpu, test/functorch/test_eager_transforms.py::TestFunctionalizeCPU::test_inplace_view_cpu, test/functorch/test_eager_transforms.py::TestFunctionalizeCPU::test_linear_cpu, test/functorch/test_eager_transforms.py::TestFunctionalizeCPU::test_multioutput_inplace_slice_view_cpu, test/functorch/test_eager_transforms.py::TestFunctionalizeCPU::test_multioutput_view_cpu, test/functorch/test_eager_transforms.py::TestFunctionalizeCPU::test_resize_program_inputs_cpu, test/functorch/test_eager_transforms.py::TestFunctionalizeCPU::test_simple_view_cpu, test/functorch/test_eager_transforms.py::TestFunctionalizeCPU::test_vmap_functionalize_jvp_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_function_returns_input_inner_requires_grad_False_save_for_jvp_save_tensors_input_mark_dirty_False_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_function_returns_input_inner_requires_grad_False_save_for_jvp_save_tensors_input_mark_dirty_True_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_function_returns_input_inner_requires_grad_False_save_for_jvp_save_tensors_neither_mark_dirty_False_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_function_returns_input_inner_requires_grad_False_save_for_jvp_save_tensors_neither_mark_dirty_True_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_function_returns_input_inner_requires_grad_False_save_for_jvp_save_tensors_output_mark_dirty_False_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_function_returns_input_inner_requires_grad_False_save_for_jvp_save_tensors_output_mark_dirty_True_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_function_returns_input_inner_requires_grad_False_save_for_vjp_save_tensors_input_mark_dirty_False_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_function_returns_input_inner_requires_grad_False_save_for_vjp_save_tensors_input_mark_dirty_True_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_function_returns_input_inner_requires_grad_False_save_for_vjp_save_tensors_neither_mark_dirty_False_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_function_returns_input_inner_requires_grad_False_save_for_vjp_save_tensors_neither_mark_dirty_True_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_function_returns_input_inner_requires_grad_False_save_for_vjp_save_tensors_output_mark_dirty_False_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_function_returns_input_inner_requires_grad_False_save_for_vjp_save_tensors_output_mark_dirty_True_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_function_returns_input_inner_requires_grad_True_save_for_jvp_save_tensors_input_mark_dirty_False_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_function_returns_input_inner_requires_grad_True_save_for_jvp_save_tensors_input_mark_dirty_True_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_function_returns_input_inner_requires_grad_True_save_for_jvp_save_tensors_neither_mark_dirty_False_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_function_returns_input_inner_requires_grad_True_save_for_jvp_save_tensors_neither_mark_dirty_True_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_function_returns_input_inner_requires_grad_True_save_for_jvp_save_tensors_output_mark_dirty_False_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_function_returns_input_inner_requires_grad_True_save_for_jvp_save_tensors_output_mark_dirty_True_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_function_returns_input_inner_requires_grad_True_save_for_vjp_save_tensors_input_mark_dirty_False_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_function_returns_input_inner_requires_grad_True_save_for_vjp_save_tensors_input_mark_dirty_True_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_function_returns_input_inner_requires_grad_True_save_for_vjp_save_tensors_neither_mark_dirty_False_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_function_returns_input_inner_requires_grad_True_save_for_vjp_save_tensors_neither_mark_dirty_True_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_function_returns_input_inner_requires_grad_True_save_for_vjp_save_tensors_output_mark_dirty_False_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_function_returns_input_inner_requires_grad_True_save_for_vjp_save_tensors_output_mark_dirty_True_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_grad_fn_name_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_needs_input_grads_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_once_differentiable_autograd_vjp_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_once_differentiable_grad_vjp_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionCPU::test_set_materialize_grads_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionVmapAPICPU::test_has_vmap_staticmethod_and_has_generate_vmap_rule_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionVmapAPICPU::test_in_dims_multiple_inputs_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionVmapAPICPU::test_in_dims_single_input_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionVmapAPICPU::test_incompatible_out_dims_error_msg_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionVmapAPICPU::test_info_object_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionVmapAPICPU::test_kwarg_only_tensors_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionVmapAPICPU::test_no_vmap_staticmethod_and_no_generate_vmap_rule_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionVmapAPICPU::test_none_returns_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionVmapAPICPU::test_should_have_two_returns_cpu, test/functorch/test_eager_transforms.py::TestAutogradFunctionVmapAPICPU::test_skips_empty_layer_cpu, test/functorch/test_eager_transforms.py::TestHelpersCPU::test_CtxWithSavedTensors_error_if_name_collision_cpu, test/functorch/test_eager_transforms.py::TestHelpersCPU::test_CtxWithSavedTensors_nesting_cpu, test/functorch/test_eager_transforms.py::TestHelpersCPU::test_CtxWithSavedTensors_overrides_saved_tensors_cpu, test/functorch/test_eager_transforms.py::TestHelpersCPU::test_CtxWithSavedTensors_passthrough_cpu, test/functorch/test_eager_transforms.py::TestHelpersCPU::test_debug_unwrap_cpu, test/functorch/test_eager_transforms.py::TestHelpersCPU::test_reductify_leaf_cpu, test/functorch/test_eager_transforms.py::TestCompileTransformsCPU::test_compile_vmap_hessian_cpu, test/functorch/test_eager_transforms.py::TestCompileTransformsCPU::test_grad_deprecated_api_cpu 2025-08-14T22:22:59.9237398Z 2025-08-14T22:23:02.7783840Z 2025-08-14T22:23:02.7785013Z dynamo/test_comptime 1/1 was successful, full logs can be found in artifacts with path test/test-reports/dynamo.test_comptime_1.1_c2f5e5e881e533a0_.log 2025-08-14T22:23:05.5773011Z 2025-08-14T22:23:05.5773493Z Running test_testing 1/1 ... [2025-08-14 22:23:05.564871] 2025-08-14T22:23:05.5773924Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:23:05.5780682Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_testing.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:23:05.564871] 2025-08-14T22:23:08.3963430Z Running test_quantization 1/1 ... [2025-08-14 22:23:08.382043] 2025-08-14T22:23:08.3963890Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:23:08.3970835Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', '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:23:08.382043] 2025-08-14T22:24:01.3349947Z 2025-08-14T22:24:01.3351297Z test_testing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_testing_1.1_3ca6e9bf8e3a26d8_.log 2025-08-14T22:24:01.4427919Z Running 2069 items in this shard: test/test_testing.py::TestTestingCPU::test_assertEqual_longMessage_cpu, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_bool, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_complex128, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_complex64, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_float16, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_float32, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_float64, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_int16, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_int32, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_int64, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_int8, test/test_testing.py::TestTestingCPU::test_assertEqual_numpy_cpu_uint8, test/test_testing.py::TestTestingCPU::test_cuda_assert_should_not_stop_common_distributed_test_suite_cpu, test/test_testing.py::TestTestingCPU::test_cuda_assert_should_stop_common_device_type_test_suite_cpu, test/test_testing.py::TestTestingCPU::test_cuda_assert_should_stop_common_utils_test_suite_cpu, test/test_testing.py::TestTestingCPU::test_get_supported_dtypes_cpu, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_bool, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_float16, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_float32, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_float64, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_int16, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_int32, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_int64, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_int8, test/test_testing.py::TestTestingCPU::test_isclose_atol_rtol_greater_than_zero_cpu_uint8, test/test_testing.py::TestTestingCPU::test_isclose_bool_cpu, test/test_testing.py::TestTestingCPU::test_isclose_complex_cpu_complex128, test/test_testing.py::TestTestingCPU::test_isclose_complex_cpu_complex64, test/test_testing.py::TestTestingCPU::test_isclose_equality_shortcut_cpu, test/test_testing.py::TestTestingCPU::test_isclose_float_cpu_float16, test/test_testing.py::TestTestingCPU::test_isclose_float_cpu_float32, test/test_testing.py::TestTestingCPU::test_isclose_float_cpu_float64, test/test_testing.py::TestTestingCPU::test_isclose_integer_cpu_int16, test/test_testing.py::TestTestingCPU::test_isclose_integer_cpu_int32, test/test_testing.py::TestTestingCPU::test_isclose_integer_cpu_int64, test/test_testing.py::TestTestingCPU::test_isclose_integer_cpu_int8, test/test_testing.py::TestTestingCPU::test_isclose_integer_cpu_uint8, test/test_testing.py::TestTestingCPU::test_isclose_nan_equality_shortcut_cpu_complex128, test/test_testing.py::TestTestingCPU::test_isclose_nan_equality_shortcut_cpu_complex64, test/test_testing.py::TestTestingCPU::test_isclose_nan_equality_shortcut_cpu_float16, test/test_testing.py::TestTestingCPU::test_isclose_nan_equality_shortcut_cpu_float32, test/test_testing.py::TestTestingCPU::test_isclose_nan_equality_shortcut_cpu_float64, test/test_testing.py::TestTestingCPU::test_setup_and_teardown_run_for_device_specific_tests_cpu, test/test_testing.py::TestTestingCPU::test_supported_dtypes_abs_cpu, test/test_testing.py::TestFrameworkUtils::test_filtering_env_var, test/test_testing.py::TestAssertClose::test_bool, test/test_testing.py::TestAssertClose::test_default_tolerance_selection_mismatching_dtypes, test/test_testing.py::TestAssertClose::test_docstring_examples, test/test_testing.py::TestAssertClose::test_matching, test/test_testing.py::TestAssertClose::test_matching_atol, test/test_testing.py::TestAssertClose::test_matching_conjugate_bit, test/test_testing.py::TestAssertClose::test_matching_nan, test/test_testing.py::TestAssertClose::test_matching_nan_with_equal_nan, test/test_testing.py::TestAssertClose::test_matching_rtol, test/test_testing.py::TestAssertClose::test_meta, test/test_testing.py::TestAssertClose::test_mismatching_dtype, test/test_testing.py::TestAssertClose::test_mismatching_dtype_no_check, test/test_testing.py::TestAssertClose::test_mismatching_layout, test/test_testing.py::TestAssertClose::test_mismatching_layout_no_check, test/test_testing.py::TestAssertClose::test_mismatching_shape, test/test_testing.py::TestAssertClose::test_mismatching_stride, test/test_testing.py::TestAssertClose::test_mismatching_stride_no_check, test/test_testing.py::TestAssertClose::test_mismatching_types, test/test_testing.py::TestAssertClose::test_mismatching_types_subclasses, test/test_testing.py::TestAssertClose::test_mismatching_types_type_equality, test/test_testing.py::TestAssertClose::test_mismatching_values, test/test_testing.py::TestAssertClose::test_mismatching_values_atol, test/test_testing.py::TestAssertClose::test_mismatching_values_rtol, test/test_testing.py::TestAssertClose::test_none, test/test_testing.py::TestAssertClose::test_none_mismatch, test/test_testing.py::TestAssertClose::test_numpy, test/test_testing.py::TestAssertClose::test_only_atol, test/test_testing.py::TestAssertClose::test_only_rtol, test/test_testing.py::TestAssertClose::test_scalar, test/test_testing.py::TestAssertClose::test_unexpected_error_compare, test/test_testing.py::TestAssertClose::test_unexpected_error_originate, test/test_testing.py::TestAssertClose::test_unknown_layout, test/test_testing.py::TestAssertClose::test_unknown_type, test/test_testing.py::TestAssertCloseErrorMessage::test_abs_diff, test/test_testing.py::TestAssertCloseErrorMessage::test_abs_diff_scalar, test/test_testing.py::TestAssertCloseErrorMessage::test_atol, test/test_testing.py::TestAssertCloseErrorMessage::test_identifier_scalars, test/test_testing.py::TestAssertCloseErrorMessage::test_identifier_tensor_likes, test/test_testing.py::TestAssertCloseErrorMessage::test_mismatched_elements, test/test_testing.py::TestAssertCloseErrorMessage::test_msg_callable, test/test_testing.py::TestAssertCloseErrorMessage::test_msg_str, test/test_testing.py::TestAssertCloseErrorMessage::test_not_close, test/test_testing.py::TestAssertCloseErrorMessage::test_not_equal, test/test_testing.py::TestAssertCloseErrorMessage::test_rel_diff, test/test_testing.py::TestAssertCloseErrorMessage::test_rel_diff_scalar, test/test_testing.py::TestAssertCloseErrorMessage::test_rtol, test/test_testing.py::TestAssertCloseErrorMessage::test_small_float_dtype, test/test_testing.py::TestAssertCloseErrorMessage::test_zero_div_zero, test/test_testing.py::TestAssertCloseContainer::test_mapping_mismatching_keys, test/test_testing.py::TestAssertCloseContainer::test_mapping_mismatching_values_msg, test/test_testing.py::TestAssertCloseContainer::test_sequence_mismatching_len, test/test_testing.py::TestAssertCloseContainer::test_sequence_mismatching_values_msg, test/test_testing.py::TestAssertCloseSparseCOO::test_matching_coalesced, test/test_testing.py::TestAssertCloseSparseCOO::test_matching_uncoalesced, test/test_testing.py::TestAssertCloseSparseCOO::test_mismatching_indices_msg, test/test_testing.py::TestAssertCloseSparseCOO::test_mismatching_nnz, test/test_testing.py::TestAssertCloseSparseCOO::test_mismatching_sparse_dims, test/test_testing.py::TestAssertCloseSparseCOO::test_mismatching_values_msg, test/test_testing.py::TestAssertCloseSparseCSR::test_matching, test/test_testing.py::TestAssertCloseSparseCSR::test_mismatching_col_indices_msg, test/test_testing.py::TestAssertCloseSparseCSR::test_mismatching_crow_indices_msg, test/test_testing.py::TestAssertCloseSparseCSR::test_mismatching_values_msg, test/test_testing.py::TestAssertCloseSparseCSC::test_matching, test/test_testing.py::TestAssertCloseSparseCSC::test_mismatching_ccol_indices_msg, test/test_testing.py::TestAssertCloseSparseCSC::test_mismatching_row_indices_msg, test/test_testing.py::TestAssertCloseSparseCSC::test_mismatching_values_msg, test/test_testing.py::TestAssertCloseSparseBSR::test_matching, test/test_testing.py::TestAssertCloseSparseBSR::test_mismatching_col_indices_msg, test/test_testing.py::TestAssertCloseSparseBSR::test_mismatching_crow_indices_msg, test/test_testing.py::TestAssertCloseSparseBSR::test_mismatching_values_msg, test/test_testing.py::TestAssertCloseSparseBSC::test_matching, test/test_testing.py::TestAssertCloseSparseBSC::test_mismatching_ccol_indices_msg, test/test_testing.py::TestAssertCloseSparseBSC::test_mismatching_row_indices_msg, test/test_testing.py::TestAssertCloseSparseBSC::test_mismatching_values_msg, test/test_testing.py::TestAssertCloseQuantized::test_matching_per_channel, test/test_testing.py::TestAssertCloseQuantized::test_matching_per_tensor, test/test_testing.py::TestAssertCloseQuantized::test_mismatching_is_quantized, test/test_testing.py::TestAssertCloseQuantized::test_mismatching_qscheme, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_exclude_zero_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types0_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types1_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types2_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high0_value_types3_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types0_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types1_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types2_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high1_value_types3_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types0_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types1_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types2_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_ge_high_low_high2_value_types3_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral1_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral1_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral1_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral1_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral1_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral1_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral2_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral2_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral2_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral2_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral2_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_high_boolean_integral2_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_high_default_smoke_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high0_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high1_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_high_nan_low_high2_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_high_outside_valid_range_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_low_high_smoke_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape0_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape1_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape2_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape3_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_memory_format_memory_format_and_shape4_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_memory_format_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape0_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape1_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape2_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape3_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape4_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape5_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_False_shape6_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape0_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape1_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape2_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape3_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape4_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape5_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_noncontiguous_noncontiguous_True_shape6_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_False_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_requires_grad_requires_grad_True_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_False_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape0_splat_shape_True_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_False_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape1_splat_shape_True_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_False_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape2_splat_shape_True_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_False_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape3_splat_shape_True_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_False_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape4_splat_shape_True_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_False_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape5_splat_shape_True_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_False_cpu_uint8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_bfloat16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_bool, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_complex128, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_complex32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_complex64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_float16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_float32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_float64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_int16, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_int32, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_int64, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_int8, test/test_testing.py::TestMakeTensorCPU::test_smoke_shape6_splat_shape_True_cpu_uint8, test/test_testing.py::TestTestParametrization::test_apply_param_specific_decorators, test/test_testing.py::TestTestParametrization::test_compose_param_specific_decorators, test/test_testing.py::TestTestParametrization::test_default_names, test/test_testing.py::TestTestParametrization::test_modules_decorator_misuse_error, test/test_testing.py::TestTestParametrization::test_multiple_handling_of_same_param_error, test/test_testing.py::TestTestParametrization::test_name_fn, test/test_testing.py::TestTestParametrization::test_ops_decorator_misuse_error, test/test_testing.py::TestTestParametrization::test_reparametrize, test/test_testing.py::TestTestParametrization::test_subtest_expected_failure_x_1, test/test_testing.py::TestTestParametrization::test_subtest_expected_failure_x_2, test/test_testing.py::TestTestParametrization::test_subtest_expected_failure_x_3, test/test_testing.py::TestTestParametrization::test_subtest_names, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_1_y_4, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_1_y_5, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_1_y_6, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_2_y_4, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_2_y_5, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_2_y_6, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_3_y_4, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_3_y_5, test/test_testing.py::TestTestParametrization::test_two_things_subtest_expected_failure_x_3_y_6, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_default_name_non_primitive_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_default_names_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_dtypes_composition_invalid_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_dtypes_composition_valid_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_empty_param_list_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_empty_param_names_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_modules_composition_names_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_modules_decorator_applies_module_and_param_specific_decorators_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_multiple_handling_of_same_param_error_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_name_fn_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_ops_composition_names_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_ops_decorator_applies_op_and_param_specific_decorators_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_param_specific_decoration_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_subtest_expected_failure_x_1_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_subtest_expected_failure_x_2_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_subtest_expected_failure_x_3_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_subtest_names_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_1_y_4_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_1_y_5_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_1_y_6_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_2_y_4_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_2_y_5_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_2_y_6_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_3_y_4_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_3_y_5_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_two_things_subtest_expected_failure_x_3_y_6_cpu, test/test_testing.py::TestTestParametrizationDeviceTypeCPU::test_unparametrized_names_cpu, test/test_testing.py::TestImports::test_circular_dependencies, test/test_testing.py::TestImports::test_lazy_imports_are_lazy, test/test_testing.py::TestImports::test_no_mutate_global_logging_on_import_path_functorch, test/test_testing.py::TestImports::test_no_mutate_global_logging_on_import_path_torch, test/test_testing.py::TestImports::test_no_warning_on_import, test/test_testing.py::TestImports::test_not_import_sympy, test/test_testing.py::TestOpInfos::test_sample_input, test/test_testing.py::TestOpInfos::test_sample_input_metadata, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_T_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___radd___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___rand___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___rdiv___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___rmod___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___rmul___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___ror___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___rpow___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___rsub___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators___rxor___cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators__chunk_cat_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_add_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_amax_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_amin_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_aminmax_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_arange_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_as_strided_scatter_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_atan2_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_bernoulli_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_bitwise_and_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_bitwise_left_shift_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_bitwise_or_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_bitwise_right_shift_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_bitwise_xor_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_bucketize_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_cat_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_cauchy_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_clamp_max_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_clamp_min_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_complex_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_copysign_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_cov_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_diag_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_diag_embed_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_diagonal_copy_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_diagonal_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_diff_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_div_floor_rounding_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_div_no_rounding_mode_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_div_trunc_rounding_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_dot_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_dsplit_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_dstack_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_empty_permuted_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_eq_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_exponential_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_eye_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_fft2_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_fft_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_fftn_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_hfft2_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_hfft_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_hfftn_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_ifft2_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_ifft_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_ifftn_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_ihfft2_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_ihfft_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_ihfftn_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_irfft2_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_irfft_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_irfftn_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_rfft2_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_rfft_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fft_rfftn_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fliplr_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_flipud_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_float_power_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_floor_divide_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fmax_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fmin_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_fmod_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_gather_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_gcd_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_ge_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_geometric_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_gradient_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_gt_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_heaviside_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_histogramdd_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_hsplit_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_hstack_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_hypot_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_igamma_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_igammac_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_index_add_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_index_select_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_isclose_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_item_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_jiterator_binary_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_jiterator_binary_return_by_ref_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_kthvalue_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_lcm_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_ldexp_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_le_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_linalg_cross_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_linalg_diagonal_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_linalg_lstsq_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_linalg_lstsq_grad_oriented_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_linspace_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_linspace_tensor_overload_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_log_normal_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_logaddexp_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_logcumsumexp_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_logical_and_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_logical_or_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_logical_xor_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_logspace_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_logspace_tensor_overload_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_lt_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_masked_fill_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_masked_scatter_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_masked_select_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_max_binary_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_maximum_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_mean_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_median_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_min_binary_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_minimum_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_movedim_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_mul_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_multinomial_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_narrow_copy_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_narrow_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_native_layer_norm_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_ne_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_neg_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nextafter_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_adaptive_avg_pool1d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_adaptive_avg_pool2d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_adaptive_avg_pool3d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_adaptive_max_pool1d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_adaptive_max_pool2d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_adaptive_max_pool3d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_avg_pool1d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_avg_pool2d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_avg_pool3d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_conv1d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_conv2d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_conv3d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_embedding_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_gaussian_nll_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_gelu_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_group_norm_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_hardtanh_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_hinge_embedding_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_huber_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_l1_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_margin_ranking_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_max_pool1d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_max_pool2d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_max_pool3d_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_multi_margin_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_multilabel_margin_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_poisson_nll_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_prelu_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_rms_norm_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_rrelu_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_soft_margin_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_softshrink_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_triplet_margin_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_nn_functional_triplet_margin_with_distance_loss_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_normal_in_place_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_ormqr_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_polar_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_pow_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_remainder_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_renorm_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_reshape_as_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_reshape_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_roll_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_rot90_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_rsub_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_scatter_add_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_scatter_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_bartlett_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_blackman_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_cosine_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_exponential_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_gaussian_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_general_cosine_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_general_hamming_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_hamming_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_hann_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_kaiser_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_signal_windows_nuttall_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_chebyshev_polynomial_t_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_chebyshev_polynomial_u_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_chebyshev_polynomial_v_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_chebyshev_polynomial_w_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_hermite_polynomial_h_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_hermite_polynomial_he_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_laguerre_polynomial_l_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_legendre_polynomial_p_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_shifted_chebyshev_polynomial_t_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_shifted_chebyshev_polynomial_u_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_shifted_chebyshev_polynomial_v_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_shifted_chebyshev_polynomial_w_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_xlog1py_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_special_zeta_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_sub_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_sum_to_size_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_t_copy_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_t_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_take_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_trace_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_tril_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_triu_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_true_divide_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_unbind_copy_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_unbind_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_uniform_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_vdot_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_view_as_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_view_copy_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_view_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_vsplit_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_vstack_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_where_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_error_generators_xlogy_cpu, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___radd___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___rand___cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___rdiv___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___rmod___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___rmul___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___ror___cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___rpow___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___rsub___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators___rxor___cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_abs_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_acos_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_acosh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_add_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_addcdiv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_addcmul_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_angle_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_asin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_asinh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_atan2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_atan_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_atanh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bfloat16_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bitwise_and_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bitwise_left_shift_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bitwise_not_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bitwise_or_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bitwise_right_shift_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bitwise_xor_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bool_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_broadcast_tensors_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_bucketize_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_byte_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_cat_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_cdouble_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_ceil_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_cfloat_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_chalf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_char_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_chunk_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_clamp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_clamp_max_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_clamp_min_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_clone_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_complex_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_conj_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_conj_physical_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_contiguous_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_copysign_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_cos_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_cosh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_deg2rad_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_diag_embed_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_diagonal_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_diagonal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_digamma_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_div_floor_rounding_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_div_no_rounding_mode_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_div_trunc_rounding_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_double_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_empty_like_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_eq_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_erf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_erfc_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_erfinv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_exp2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_exp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_expm1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_fill_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_flatten_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_float_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_float_power_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_floor_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_floor_divide_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_fmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_fmin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_fmod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_frac_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_frexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_gcd_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_ge_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_gt_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_half_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_heaviside_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_hypot_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_i0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_igamma_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_igammac_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_imag_cpu_complex64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_index_add_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_index_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_index_fill_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_index_select_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_int_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_isclose_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_isfinite_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_isinf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_isnan_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_isneginf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_isposinf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_isreal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_jiterator_binary_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_jiterator_binary_return_by_ref_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_jiterator_unary_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_lcm_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_ldexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_le_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_lgamma_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_log10_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_log1p_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_log2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_log_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_logaddexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_logical_and_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_logical_not_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_logical_or_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_logical_xor_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_logit_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_logsumexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_long_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_lt_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_max_binary_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_maximum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_min_binary_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_minimum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_movedim_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_mul_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nan_to_num_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_narrow_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_narrow_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_ne_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_neg_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nextafter_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_celu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_elu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_grid_sample_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_group_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_hardshrink_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_hardsigmoid_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_hardtanh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_hinge_embedding_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_interpolate_bicubic_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_interpolate_bilinear_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_logsigmoid_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_margin_ranking_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_mish_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_multi_margin_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_multilabel_margin_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_prelu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_relu6_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_relu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_rrelu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_selu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_silu_complex_cpu_complex64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_silu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_softplus_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_softshrink_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_softsign_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_tanhshrink_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_threshold_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_nn_functional_upsample_bilinear_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_permute_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_permute_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_polar_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_polygamma_polygamma_n_0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_polygamma_polygamma_n_1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_polygamma_polygamma_n_2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_polygamma_polygamma_n_3_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_polygamma_polygamma_n_4_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_positive_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_pow_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_rad2deg_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_real_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_reciprocal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_remainder_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_reshape_as_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_reshape_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_round_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_round_decimals_0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_round_decimals_3_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_round_decimals_neg_3_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_rsqrt_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_rsub_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_sgn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_short_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_sigmoid_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_sign_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_bartlett_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_blackman_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_cosine_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_exponential_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_gaussian_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_general_cosine_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_general_hamming_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_hamming_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_hann_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_kaiser_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signal_windows_nuttall_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_signbit_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_sin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_sinc_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_sinh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_airy_ai_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_bessel_j0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_bessel_j1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_bessel_y0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_bessel_y1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_chebyshev_polynomial_t_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_chebyshev_polynomial_u_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_chebyshev_polynomial_v_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_chebyshev_polynomial_w_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_entr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_erfcx_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_hermite_polynomial_h_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_hermite_polynomial_he_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_i0e_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_i1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_i1e_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_laguerre_polynomial_l_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_legendre_polynomial_p_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_log_ndtr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_modified_bessel_i0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_modified_bessel_i1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_modified_bessel_k0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_modified_bessel_k1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_ndtr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_ndtri_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_scaled_modified_bessel_k0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_scaled_modified_bessel_k1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_spherical_bessel_j0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_xlog1py_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_special_zeta_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_sqrt_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_square_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_sub_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_tan_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_tanh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_true_divide_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_trunc_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_unsafe_chunk_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_view_as_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_view_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_where_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_reference_generators_xlogy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_H_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_T_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___getitem___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___radd___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___rand___cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___rdiv___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___rmatmul___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___rmod___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___rmul___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___ror___cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___rpow___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___rsub___cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators___rxor___cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__batch_norm_with_update_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__chunk_cat_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__native_batch_norm_legit_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__segment_reduce_lengths_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__segment_reduce_offsets_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__softmax_backward_data_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__unsafe_masked_index_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__unsafe_masked_index_put_accumulate_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators__upsample_bilinear2d_aa_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_abs_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_acos_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_acosh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_add_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_addbmm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_addcdiv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_addcmul_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_addmm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_addmm_decomposed_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_addmv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_addr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_alias_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_all_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_allclose_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_amax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_amin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_aminmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_angle_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_any_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_arange_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_argmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_argmin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_argsort_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_argwhere_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_as_strided_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_as_strided_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_as_strided_partial_views_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_as_strided_scatter_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_asin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_asinh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_atan2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_atan_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_atanh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_atleast_1d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_atleast_2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_atleast_3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_baddbmm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bernoulli_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bfloat16_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bincount_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bitwise_and_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bitwise_left_shift_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bitwise_not_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bitwise_or_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bitwise_right_shift_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bitwise_xor_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_block_diag_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bmm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bool_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_broadcast_shapes_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_broadcast_tensors_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_broadcast_to_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_bucketize_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_byte_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cartesian_prod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cat_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cauchy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cdist_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cdouble_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_ceil_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cfloat_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_chalf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_char_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cholesky_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cholesky_inverse_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cholesky_solve_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_chunk_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_clamp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_clamp_max_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_clamp_min_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_clone_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_column_stack_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_combinations_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_complex_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_conj_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_conj_physical_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_constant_pad_nd_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_contiguous_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_copysign_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_corrcoef_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cos_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cosh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_count_nonzero_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cov_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cross_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cummax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cummin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cumprod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cumsum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_cumulative_trapezoid_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_deg2rad_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_diag_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_diag_embed_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_diagflat_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_diagonal_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_diagonal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_diagonal_scatter_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_diff_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_digamma_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_dist_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_div_floor_rounding_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_div_no_rounding_mode_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_div_trunc_rounding_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_dot_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_double_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_dsplit_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_dstack_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_einsum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_empty_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_empty_like_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_empty_permuted_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_empty_strided_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_eq_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_equal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_erf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_erfc_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_erfinv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_exp2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_exp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_expand_as_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_expand_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_expand_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_expm1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_exponential_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_eye_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_fft2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_fft_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_fftn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_fftshift_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_hfft2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_hfft_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_hfftn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_ifft2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_ifft_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_ifftn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_ifftshift_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_ihfft2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_ihfft_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_ihfftn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_irfft2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_irfft_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_irfftn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_rfft2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_rfft_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fft_rfftn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fill_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_flatten_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_flip_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fliplr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_flipud_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_float_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_float_power_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_floor_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_floor_divide_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fmin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_fmod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_frac_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_frexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_full_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_full_like_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_gather_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_gcd_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_ge_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_geometric_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_geqrf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_gradient_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_grid_sampler_2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_gt_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_half_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_hash_tensor_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_heaviside_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_histc_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_histogram_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_histogramdd_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_hsplit_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_hstack_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_hypot_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_i0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_igamma_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_igammac_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_imag_cpu_complex64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_add_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_fill_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_put_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_reduce_amax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_reduce_amin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_reduce_mean_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_reduce_prod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_index_select_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_inner_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_int_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_isclose_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_isfinite_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_isin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_isinf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_isnan_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_isneginf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_isposinf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_isreal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_istft_cpu_complex64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_item_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_jiterator_2inputs_2outputs_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_jiterator_4inputs_with_extra_args_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_jiterator_binary_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_jiterator_binary_return_by_ref_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_jiterator_unary_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_kron_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_kthvalue_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_lcm_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_ldexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_le_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_lerp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_lgamma_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_cholesky_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_cholesky_ex_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_cond_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_cross_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_det_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_diagonal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_eig_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_eigh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_eigvals_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_eigvalsh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_householder_product_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_inv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_inv_ex_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_ldl_factor_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_ldl_factor_ex_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_ldl_solve_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_lstsq_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_lstsq_grad_oriented_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_lu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_lu_factor_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_lu_factor_ex_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_lu_solve_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_matrix_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_matrix_power_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_matrix_rank_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_matrix_rank_hermitian_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_multi_dot_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_norm_subgradients_at_zero_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_pinv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_pinv_hermitian_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_pinv_singular_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_qr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_slogdet_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_solve_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_solve_ex_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_solve_triangular_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_svd_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_svdvals_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_tensorinv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_tensorsolve_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_vander_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_vecdot_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linalg_vector_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linspace_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_linspace_tensor_overload_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_log10_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_log1p_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_log2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_log_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_log_normal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_log_softmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_log_softmax_with_dtype_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logaddexp2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logaddexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logcumsumexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logdet_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logical_and_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logical_not_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logical_or_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logical_xor_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logit_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logspace_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logspace_tensor_overload_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_logsumexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_long_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_lt_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_lu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_lu_solve_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_lu_unpack_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mH_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mT_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_amax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_amin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_argmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_argmin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_cumprod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_cumsum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_fill_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_log_softmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_logaddexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_logsumexp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_mean_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_median_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_normalize_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_prod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_scatter_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_select_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_softmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_softmin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_std_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_sum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_masked_var_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_matmul_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_matrix_exp_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_max_binary_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_max_pool2d_with_indices_backward_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_max_reduction_no_dim_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_max_reduction_with_dim_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_maximum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mean_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_median_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_meshgrid_list_of_tensors_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_meshgrid_variadic_tensors_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_min_binary_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_min_reduction_no_dim_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_min_reduction_with_dim_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_minimum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mode_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_movedim_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_msort_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mul_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_multinomial_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mv_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nan_to_num_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nanmean_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nanmedian_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nanquantile_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nansum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_narrow_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_narrow_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_native_batch_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_native_dropout_backward_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_native_layer_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_ne_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_neg_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_new_empty_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_new_empty_strided_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_new_full_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_new_ones_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_new_zeros_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nextafter_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_alpha_dropout_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_avg_pool1d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_avg_pool2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_avg_pool3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_batch_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_bilinear_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_binary_cross_entropy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_celu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_channel_shuffle_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_conv1d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_conv2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_conv3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_conv_transpose1d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_conv_transpose2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_conv_transpose3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_cosine_embedding_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_cosine_similarity_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_cross_entropy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_ctc_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_dropout2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_dropout3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_dropout_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_elu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_embedding_bag_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_embedding_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_fractional_max_pool2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_fractional_max_pool3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_gaussian_nll_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_gelu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_glu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_grid_sample_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_group_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_hardshrink_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_hardsigmoid_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_hardswish_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_hardtanh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_hinge_embedding_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_huber_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_instance_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_interpolate_area_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_interpolate_bicubic_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_interpolate_bilinear_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_interpolate_linear_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_interpolate_nearest_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_interpolate_trilinear_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_kl_div_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_l1_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_layer_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_leaky_relu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_linear_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_local_response_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_logsigmoid_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_margin_ranking_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_pool1d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_pool2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_pool3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_unpool1d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_unpool1d_grad_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_unpool2d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_unpool2d_grad_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_unpool3d_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_max_unpool3d_grad_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_mish_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_mse_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_multi_head_attention_forward_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_multi_margin_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_multilabel_margin_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_nll_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_normalize_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_one_hot_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pad_circular_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pad_constant_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pad_reflect_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pad_replicate_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pad_replicate_negative_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pairwise_distance_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pdist_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pixel_shuffle_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_pixel_unshuffle_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_poisson_nll_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_prelu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_relu6_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_relu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_rms_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_rrelu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_selu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_silu_complex_cpu_complex64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_silu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_smooth_l1_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_soft_margin_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_softmin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_softmin_with_dtype_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_softplus_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_softshrink_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_softsign_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_tanhshrink_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_threshold_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_triplet_margin_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_unfold_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_upsample_bilinear_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nn_functional_upsample_nearest_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nonzero_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_nonzero_static_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_norm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_norm_fro_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_norm_inf_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_norm_nuc_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_normal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_normal_in_place_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_normal_number_mean_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_ones_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_ones_like_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_ormqr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_outer_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_pca_lowrank_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_permute_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_permute_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_pinverse_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_polar_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_polygamma_polygamma_n_0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_polygamma_polygamma_n_1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_polygamma_polygamma_n_2_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_polygamma_polygamma_n_3_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_polygamma_polygamma_n_4_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_positive_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_pow_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_prod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_put_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_qr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_quantile_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_rad2deg_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_rand_like_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_randint_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_randint_like_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_randn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_randn_like_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_ravel_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_real_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_reciprocal_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_remainder_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_renorm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_repeat_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_repeat_interleave_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_reshape_as_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_reshape_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_resize__cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_resize_as__cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_resolve_conj_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_resolve_neg_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_roll_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_rot90_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_round_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_round_decimals_0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_round_decimals_3_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_round_decimals_neg_3_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_rsqrt_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_rsub_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_scalar_tensor_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_scatter_add_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_scatter_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_scatter_reduce_amax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_scatter_reduce_amin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_scatter_reduce_mean_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_scatter_reduce_prod_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_scatter_reduce_sum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_searchsorted_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_select_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_select_scatter_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sgn_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_short_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sigmoid_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sign_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_bartlett_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_blackman_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_cosine_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_exponential_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_gaussian_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_general_cosine_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_general_hamming_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_hamming_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_hann_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_kaiser_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signal_windows_nuttall_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_signbit_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sin_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sinc_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sinh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_slice_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_slice_scatter_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_softmax_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_softmax_with_dtype_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sort_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sparse_mm_reduce_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sparse_sampled_addmm_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_airy_ai_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_bessel_j0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_bessel_j1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_bessel_y0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_bessel_y1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_chebyshev_polynomial_t_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_chebyshev_polynomial_u_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_chebyshev_polynomial_v_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_chebyshev_polynomial_w_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_entr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_erfcx_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_hermite_polynomial_h_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_hermite_polynomial_he_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_i0e_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_i1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_i1e_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_laguerre_polynomial_l_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_legendre_polynomial_p_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_log_ndtr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_modified_bessel_i0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_modified_bessel_i1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_modified_bessel_k0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_modified_bessel_k1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_ndtr_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_ndtri_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_scaled_modified_bessel_k0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_scaled_modified_bessel_k1_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_spherical_bessel_j0_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_xlog1py_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_special_zeta_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_split_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_split_list_args_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_split_with_sizes_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_split_with_sizes_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sqrt_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_square_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_squeeze_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_squeeze_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_squeeze_multiple_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_stack_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_std_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_std_mean_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_std_mean_unbiased_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_std_unbiased_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_stft_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sub_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sum_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_sum_to_size_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_svd_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_svd_lowrank_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_t_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_t_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_take_along_dim_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_take_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_tan_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_tanh_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_tensor_split_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_tensordot_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_tile_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_to_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_to_sparse_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_topk_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_torch__scaled_mm_cpu_float8_e4m3fn, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_trace_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_transpose_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_transpose_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_trapezoid_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_trapz_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_triangular_solve_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_tril_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_tril_indices_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_triu_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_triu_indices_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_true_divide_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_trunc_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unbind_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unbind_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unflatten_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unfold_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unfold_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_uniform_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unique_consecutive_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unique_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unravel_index_cpu_int64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unsafe_chunk_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unsafe_split_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unsqueeze_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_unsqueeze_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_var_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_var_mean_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_var_mean_unbiased_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_var_unbiased_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_vdot_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_view_as_complex_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_view_as_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_view_as_real_cpu_complex64, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_view_copy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_view_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_vsplit_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_vstack_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_where_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_xlogy_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_zero__cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_zeros_cpu_float32, test/test_testing.py::TestOpInfoSampleFunctionsCPU::test_opinfo_sample_generators_zeros_like_cpu_float32 2025-08-14T22:24:01.5609799Z 2025-08-14T22:24:07.8782733Z Running test_dynamic_shapes 1/1 ... [2025-08-14 22:24:07.876089] 2025-08-14T22:24:07.8783334Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:24:07.8791591Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', '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:24:07.878726] 2025-08-14T22:25:47.1852621Z 2025-08-14T22:25:47.1855834Z test_dynamic_shapes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_dynamic_shapes_1.1_3e4ab700c633c7b4_.log 2025-08-14T22:25:47.2060121Z Running 331 items in this shard: test/test_dynamic_shapes.py::TestPySymInt::test_arith_ops, test/test_dynamic_shapes.py::TestPySymInt::test_aten_ops, test/test_dynamic_shapes.py::TestPySymInt::test_avoid_unbacked_substitution, test/test_dynamic_shapes.py::TestPySymInt::test_backed_size_oblivious_01_spec, test/test_dynamic_shapes.py::TestPySymInt::test_baddbmm_symint, test/test_dynamic_shapes.py::TestPySymInt::test_binary, test/test_dynamic_shapes.py::TestPySymInt::test_data_dependent_guard, test/test_dynamic_shapes.py::TestPySymInt::test_data_dependent_guard_propagate_real_tensors, test/test_dynamic_shapes.py::TestPySymInt::test_debug_has_internal_overlap_unbacked, test/test_dynamic_shapes.py::TestPySymInt::test_deepcopy, test/test_dynamic_shapes.py::TestPySymInt::test_duck_shape, test/test_dynamic_shapes.py::TestPySymInt::test_ephemeral_source_simplification, test/test_dynamic_shapes.py::TestPySymInt::test_ephemeral_source_unified_with_non_ephemeral_source, test/test_dynamic_shapes.py::TestPySymInt::test_expect_true_basic, test/test_dynamic_shapes.py::TestPySymInt::test_expect_true_double_digits, test/test_dynamic_shapes.py::TestPySymInt::test_expect_true_prefer_later, test/test_dynamic_shapes.py::TestPySymInt::test_expect_true_refine_range, test/test_dynamic_shapes.py::TestPySymInt::test_expect_true_with_s0, test/test_dynamic_shapes.py::TestPySymInt::test_floor_clean_div_axioms, test/test_dynamic_shapes.py::TestPySymInt::test_floordiv_static, test/test_dynamic_shapes.py::TestPySymInt::test_fx_trace_intlist, test/test_dynamic_shapes.py::TestPySymInt::test_guard_int, test/test_dynamic_shapes.py::TestPySymInt::test_guard_refine_range, test/test_dynamic_shapes.py::TestPySymInt::test_int_bool, test/test_dynamic_shapes.py::TestPySymInt::test_int_conversion, test/test_dynamic_shapes.py::TestPySymInt::test_int_to_float, test/test_dynamic_shapes.py::TestPySymInt::test_max_of_unique_summation_opt, test/test_dynamic_shapes.py::TestPySymInt::test_meta_symint, test/test_dynamic_shapes.py::TestPySymInt::test_mul_int_oo_nan, test/test_dynamic_shapes.py::TestPySymInt::test_non_overlapping_and_dense, test/test_dynamic_shapes.py::TestPySymInt::test_non_overlapping_and_dense_unbacked, test/test_dynamic_shapes.py::TestPySymInt::test_numel, test/test_dynamic_shapes.py::TestPySymInt::test_numpy_sym_max, test/test_dynamic_shapes.py::TestPySymInt::test_numpy_sym_min, test/test_dynamic_shapes.py::TestPySymInt::test_prefer_deferred_runtime_assertions_over_guards, test/test_dynamic_shapes.py::TestPySymInt::test_print_readable_with_symints, test/test_dynamic_shapes.py::TestPySymInt::test_reverse_arith_ops, test/test_dynamic_shapes.py::TestPySymInt::test_roundtrip, test/test_dynamic_shapes.py::TestPySymInt::test_size_expressions, test/test_dynamic_shapes.py::TestPySymInt::test_specialize_zero_one, test/test_dynamic_shapes.py::TestPySymInt::test_statically_known_false, test/test_dynamic_shapes.py::TestPySymInt::test_statically_known_true, test/test_dynamic_shapes.py::TestPySymInt::test_stride, test/test_dynamic_shapes.py::TestPySymInt::test_sym_ceil, test/test_dynamic_shapes.py::TestPySymInt::test_sym_floor, test/test_dynamic_shapes.py::TestPySymInt::test_sym_int, test/test_dynamic_shapes.py::TestPySymInt::test_sym_ite, test/test_dynamic_shapes.py::TestPySymInt::test_sym_log2, test/test_dynamic_shapes.py::TestPySymInt::test_sym_max_multi_max_simplify, test/test_dynamic_shapes.py::TestPySymInt::test_sym_sqrt, test/test_dynamic_shapes.py::TestPySymInt::test_sym_sum, test/test_dynamic_shapes.py::TestPySymInt::test_sym_trunc, test/test_dynamic_shapes.py::TestPySymInt::test_symint_args, test/test_dynamic_shapes.py::TestPySymInt::test_symint_as_scalar, test/test_dynamic_shapes.py::TestPySymInt::test_symint_bitwise_and, test/test_dynamic_shapes.py::TestPySymInt::test_symint_bitwise_or, test/test_dynamic_shapes.py::TestPySymInt::test_symint_vargs, test/test_dynamic_shapes.py::TestPySymInt::test_sympify_symint, test/test_dynamic_shapes.py::TestPySymInt::test_sympy_optimized_add, test/test_dynamic_shapes.py::TestPySymInt::test_sympy_optimized_add_binary_search, test/test_dynamic_shapes.py::TestPySymInt::test_tensor_factory_with_symint, test/test_dynamic_shapes.py::TestPySymInt::test_tracing_sym_ite, test/test_dynamic_shapes.py::TestPySymInt::test_unbacked_substitution, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_abs, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_add, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_and, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_bitwise_and, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_bitwise_or, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_ceil, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_eq, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_float_pow, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_float_truediv, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_floor, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_ge, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_gt, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_int_floordiv, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_int_truediv, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_is_integer, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_le, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_lshift, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_lt, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_mod, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_mul, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_ne, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_neg, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_or, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_pos, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_pow_by_natural, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_round, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_rshift, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_sub, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_sym_acos, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_sym_asin, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_sym_atan, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_sym_cos, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_sym_cosh, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_sym_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_sym_ite, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_sym_log2, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_sym_max, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_sym_min, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_sym_not, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_sym_sin, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_sym_sinh, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_sym_sqrt, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_sym_tan, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_sym_tanh, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_bool_method_fn_trunc, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_abs_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_abs_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_abs_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_abs_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_add_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_add_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_add_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_add_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_and_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_and_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_and_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_and_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_bitwise_and_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_bitwise_and_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_bitwise_and_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_bitwise_and_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_bitwise_or_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_bitwise_or_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_bitwise_or_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_bitwise_or_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_ceil_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_ceil_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_ceil_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_ceil_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_eq_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_eq_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_eq_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_eq_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_float_pow_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_float_pow_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_float_pow_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_float_pow_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_float_truediv_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_float_truediv_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_float_truediv_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_float_truediv_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_floor_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_floor_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_floor_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_floor_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_ge_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_ge_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_ge_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_ge_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_gt_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_gt_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_gt_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_gt_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_int_floordiv_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_int_floordiv_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_int_floordiv_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_int_floordiv_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_int_truediv_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_int_truediv_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_int_truediv_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_int_truediv_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_is_integer_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_is_integer_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_is_integer_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_is_integer_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_le_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_le_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_le_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_le_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_lshift_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_lshift_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_lshift_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_lshift_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_lt_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_lt_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_lt_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_lt_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_mod_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_mod_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_mod_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_mod_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_mul_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_mul_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_mul_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_mul_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_ne_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_ne_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_ne_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_ne_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_neg_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_neg_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_neg_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_neg_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_or_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_or_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_or_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_or_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_pos_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_pos_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_pos_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_pos_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_pow_by_natural_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_pow_by_natural_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_pow_by_natural_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_pow_by_natural_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_round_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_round_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_round_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_round_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_rshift_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_rshift_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_rshift_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_rshift_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sub_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sub_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sub_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sub_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_acos_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_acos_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_acos_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_acos_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_asin_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_asin_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_asin_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_asin_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_atan_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_atan_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_atan_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_atan_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_cos_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_cos_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_cos_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_cos_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_cosh_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_cosh_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_cosh_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_cosh_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_float_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_float_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_float_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_float_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_ite_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_ite_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_ite_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_ite_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_log2_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_log2_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_log2_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_log2_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_max_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_max_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_max_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_max_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_min_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_min_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_min_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_min_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_not_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_not_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_not_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_not_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_sin_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_sin_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_sin_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_sin_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_sinh_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_sinh_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_sinh_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_sinh_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_sqrt_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_sqrt_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_sqrt_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_sqrt_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_tan_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_tan_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_tan_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_tan_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_tanh_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_tanh_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_tanh_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_sym_tanh_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_trunc_first_type_float_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_trunc_first_type_float_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_trunc_first_type_int_second_type_float, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_method_fn_trunc_first_type_int_second_type_int, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_non_symbolic_symnode, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_stride_symnode, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_symint_deepcopy, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_symint_hashing, test/test_dynamic_shapes.py::TestSymNumberMagicMethods::test_symnode_hashing, test/test_dynamic_shapes.py::TestFloorDiv::test_floordiv_assumptions, test/test_dynamic_shapes.py::TestFloorDiv::test_floordiv_div_by_one, test/test_dynamic_shapes.py::TestFloorDiv::test_floordiv_float_int, test/test_dynamic_shapes.py::TestFloorDiv::test_floordiv_simplify, test/test_dynamic_shapes.py::TestDimConstraints::test_dim_constraints_reduce_congruences_simple, test/test_dynamic_shapes.py::TestDimConstraints::test_dim_constraints_reduce_inequalities_error, test/test_dynamic_shapes.py::TestDimConstraints::test_dim_constraints_reduce_inequalities_simple, test/test_dynamic_shapes.py::TestDimConstraints::test_dim_constraints_solve_full, test/test_dynamic_shapes.py::TestDimConstraints::test_simplify_max_1_0, test/test_dynamic_shapes.py::TestGuardsExpressions::test_guard_or_false, test/test_dynamic_shapes.py::TestGuardsExpressions::test_guard_or_true, test/test_dynamic_shapes.py::TestGuardsExpressions::test_guards_float_div, test/test_dynamic_shapes.py::TestGuardsExpressions::test_guards_float_print, test/test_dynamic_shapes.py::TestGuardsExpressions::test_guards_gt_lt, test/test_dynamic_shapes.py::TestGuardsExpressions::test_remove_symbols_without_guarding, test/test_dynamic_shapes.py::TestUnbacked::test_deferred_neq_assert_backend_eager, test/test_dynamic_shapes.py::TestUnbacked::test_deferred_neq_assert_backend_inductor, test/test_dynamic_shapes.py::TestUnbacked::test_deferred_sym_eq_assert_backend_eager, test/test_dynamic_shapes.py::TestUnbacked::test_deferred_sym_eq_assert_backend_inductor, test/test_dynamic_shapes.py::TestUnbacked::test_deferred_sym_or_assert_backend_eager, test/test_dynamic_shapes.py::TestUnbacked::test_deferred_sym_or_assert_backend_inductor, test/test_dynamic_shapes.py::TestUnbacked::test_deferred_with_unbacked_input_backend_eager, test/test_dynamic_shapes.py::TestUnbacked::test_deferred_with_unbacked_input_backend_inductor, test/test_dynamic_shapes.py::TestUnbacked::test_has_free_symbols, test/test_dynamic_shapes.py::TestUnbacked::test_post_specialize_runtime_assert1_backend_eager, test/test_dynamic_shapes.py::TestUnbacked::test_post_specialize_runtime_assert1_backend_inductor, test/test_dynamic_shapes.py::TestUnbacked::test_post_specialize_runtime_assert2_backend_eager, test/test_dynamic_shapes.py::TestUnbacked::test_post_specialize_runtime_assert2_backend_inductor, test/test_dynamic_shapes.py::TestUbackedOps::test_invalid_view_unbacked_view, test/test_dynamic_shapes.py::TestUbackedOps::test_unbacked_contiguous, test/test_dynamic_shapes.py::TestUbackedOps::test_unbacked_non_contigious_reshape_failing, test/test_dynamic_shapes.py::TestUbackedOps::test_unbacked_reshape1, test/test_dynamic_shapes.py::TestUbackedOps::test_unbacked_reshape2, test/test_dynamic_shapes.py::TestUbackedOps::test_unbacked_select2, test/test_dynamic_shapes.py::TestUbackedOps::test_unbacked_select_index, test/test_dynamic_shapes.py::TestUbackedOps::test_unbacked_select_index_cpp_wrapper, test/test_dynamic_shapes.py::TestUbackedOps::test_unbacked_select_index_with_check, test/test_dynamic_shapes.py::TestUbackedOps::test_unbind_not_dynamic 2025-08-14T22:25:47.2268211Z 2025-08-14T22:25:53.6974746Z Running higher_order_ops/test_invoke_subgraph 1/1 ... [2025-08-14 22:25:53.697071] 2025-08-14T22:25:53.6975635Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:25:53.6985734Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'higher_order_ops/test_invoke_subgraph.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:25:53.698264] 2025-08-14T22:27:42.0336643Z 2025-08-14T22:27:42.0337988Z export/test_sparse 1/2 was successful, full logs can be found in artifacts with path test/test-reports/export.test_sparse_1.2_b0c52367319e269c_.log 2025-08-14T22:27:42.0409616Z Running 106 items in this shard: test/export/test_sparse.py::TestSparseProp::test_activation_csr, test/export/test_sparse.py::TestSparseProp::test_add, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_bfloat16_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float16_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float32_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_float64_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_eltwisenet_int64_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_bfloat16_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float16_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float32_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_float64_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_idnet_int64_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_bfloat16_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_float16_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float32_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_float64_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_sumnet_int64_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_bfloat16_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int32_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float16_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float32_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int32_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int32_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int32_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int64_SparseBSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_float64_int64_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int32_SparseCSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int64_SparseBSR, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int64_SparseCOO, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int64_SparseCSC, test/export/test_sparse.py::TestSparseProp::test_todensenet_int64_int64_SparseCSR 2025-08-14T22:27:42.0471617Z 2025-08-14T22:27:47.8192304Z 2025-08-14T22:27:47.8193462Z test_quantization 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_quantization_1.1_3edaffb2b6fbc88e_.log 2025-08-14T22:27:47.8658652Z Running 1338 items in this shard: test/test_quantization.py::TestQuantizedOps::test_adaptive_avg_pool, test/test_quantization.py::TestQuantizedOps::test_adaptive_avg_pool2d_nhwc, test/test_quantization.py::TestQuantizedOps::test_adaptive_avg_pool3d_ndhwc, test/test_quantization.py::TestQuantizedOps::test_add_scalar_relu, test/test_quantization.py::TestQuantizedOps::test_advanced_indexing, test/test_quantization.py::TestQuantizedOps::test_avg_pool2d, test/test_quantization.py::TestQuantizedOps::test_avg_pool2d_nhwc, test/test_quantization.py::TestQuantizedOps::test_avg_pool3d, test/test_quantization.py::TestQuantizedOps::test_avg_pool3d_nhwc, test/test_quantization.py::TestQuantizedOps::test_batch_norm, test/test_quantization.py::TestQuantizedOps::test_batch_norm_relu, test/test_quantization.py::TestQuantizedOps::test_cat, test/test_quantization.py::TestQuantizedOps::test_cat_nhwc, test/test_quantization.py::TestQuantizedOps::test_channel_shuffle, test/test_quantization.py::TestQuantizedOps::test_custom_module_lstm, test/test_quantization.py::TestQuantizedOps::test_custom_module_multi_head_attention, test/test_quantization.py::TestQuantizedOps::test_empty_batch, test/test_quantization.py::TestQuantizedOps::test_equal, test/test_quantization.py::TestQuantizedOps::test_group_norm, test/test_quantization.py::TestQuantizedOps::test_hardswish, test/test_quantization.py::TestQuantizedOps::test_hardtanh, test/test_quantization.py::TestQuantizedOps::test_instance_norm, test/test_quantization.py::TestQuantizedOps::test_int8_add_onednn, test/test_quantization.py::TestQuantizedOps::test_int8_batch_norm_onednn, test/test_quantization.py::TestQuantizedOps::test_int8_mul_onednn, test/test_quantization.py::TestQuantizedOps::test_interpolate, test/test_quantization.py::TestQuantizedOps::test_interpolate3d, test/test_quantization.py::TestQuantizedOps::test_leaky_relu, test/test_quantization.py::TestQuantizedOps::test_leaky_relu_observed_output, test/test_quantization.py::TestQuantizedOps::test_linear_bias_unpack, test/test_quantization.py::TestQuantizedOps::test_max_pool1d, test/test_quantization.py::TestQuantizedOps::test_max_pool2d, test/test_quantization.py::TestQuantizedOps::test_max_pool2d_cudnn, test/test_quantization.py::TestQuantizedOps::test_max_pool2d_nhwc, test/test_quantization.py::TestQuantizedOps::test_max_pool2d_pt2e, test/test_quantization.py::TestQuantizedOps::test_max_pool3d, test/test_quantization.py::TestQuantizedOps::test_max_pool3d_nhwc, test/test_quantization.py::TestQuantizedOps::test_mean, test/test_quantization.py::TestQuantizedOps::test_mul_scalar_relu, test/test_quantization.py::TestQuantizedOps::test_qadd_broadcast, test/test_quantization.py::TestQuantizedOps::test_qadd_relu_cudnn, test/test_quantization.py::TestQuantizedOps::test_qadd_relu_cudnn_nhwc, test/test_quantization.py::TestQuantizedOps::test_qadd_relu_different_qparams, test/test_quantization.py::TestQuantizedOps::test_qadd_relu_same_qparams, test/test_quantization.py::TestQuantizedOps::test_qcelu, test/test_quantization.py::TestQuantizedOps::test_qclamp, test/test_quantization.py::TestQuantizedOps::test_qelu, test/test_quantization.py::TestQuantizedOps::test_qgelu, test/test_quantization.py::TestQuantizedOps::test_qhardsigmoid, test/test_quantization.py::TestQuantizedOps::test_qlayer_norm, test/test_quantization.py::TestQuantizedOps::test_qmatmul, test/test_quantization.py::TestQuantizedOps::test_qmul_broadcast, test/test_quantization.py::TestQuantizedOps::test_qmul_relu_different_qparams, test/test_quantization.py::TestQuantizedOps::test_qmul_relu_same_qparams, test/test_quantization.py::TestQuantizedOps::test_qprelu, test/test_quantization.py::TestQuantizedOps::test_qrelu, test/test_quantization.py::TestQuantizedOps::test_qrelu6, test/test_quantization.py::TestQuantizedOps::test_qsoftmax, test/test_quantization.py::TestQuantizedOps::test_qsoftmax_qnnpack, test/test_quantization.py::TestQuantizedOps::test_qtanh, test/test_quantization.py::TestQuantizedOps::test_qthreshold, test/test_quantization.py::TestQuantizedOps::test_qtopk, test/test_quantization.py::TestQuantizedOps::test_quantized_equal, test/test_quantization.py::TestQuantizedOps::test_quantized_mean_qnnpack, test/test_quantization.py::TestQuantizedOps::test_sigmoid, test/test_quantization.py::TestQuantizedOps::test_sigmoid_dequantize_rounding_error, test/test_quantization.py::TestQuantizedOps::test_sigmoid_non_observed, test/test_quantization.py::TestQuantizedOps::test_std, test/test_quantization.py::TestQNNPackOps::test_adaptive_avg_pool2d, test/test_quantization.py::TestQNNPackOps::test_avg_pool2d, test/test_quantization.py::TestQNNPackOps::test_hardtanh, test/test_quantization.py::TestQNNPackOps::test_mean, test/test_quantization.py::TestQNNPackOps::test_qnnpack_add, test/test_quantization.py::TestQNNPackOps::test_qnnpack_add_broadcast, test/test_quantization.py::TestQNNPackOps::test_qnnpack_maxpool2d, test/test_quantization.py::TestQNNPackOps::test_qnnpack_mul, test/test_quantization.py::TestQNNPackOps::test_qnnpack_relu, test/test_quantization.py::TestQNNPackOps::test_qnnpack_sigmoid, test/test_quantization.py::TestQNNPackOps::test_qnnpack_sigmoid_sweep, test/test_quantization.py::TestQNNPackOps::test_qnnpack_tanh, test/test_quantization.py::TestQuantizedLinear::test_qlinear, test/test_quantization.py::TestQuantizedLinear::test_qlinear_add_fp8, test/test_quantization.py::TestQuantizedLinear::test_qlinear_add_pt2e, test/test_quantization.py::TestQuantizedLinear::test_qlinear_add_relu_fp8, test/test_quantization.py::TestQuantizedLinear::test_qlinear_add_relu_pt2e, test/test_quantization.py::TestQuantizedLinear::test_qlinear_cudnn, test/test_quantization.py::TestQuantizedLinear::test_qlinear_fp8, test/test_quantization.py::TestQuantizedLinear::test_qlinear_gelu_fp8, test/test_quantization.py::TestQuantizedLinear::test_qlinear_gelu_pt2e, test/test_quantization.py::TestQuantizedLinear::test_qlinear_leaky_relu, test/test_quantization.py::TestQuantizedLinear::test_qlinear_pt2e, test/test_quantization.py::TestQuantizedLinear::test_qlinear_qnnpack_free_memory_and_unpack, test/test_quantization.py::TestQuantizedLinear::test_qlinear_relu, test/test_quantization.py::TestQuantizedLinear::test_qlinear_relu_fp8, test/test_quantization.py::TestQuantizedLinear::test_qlinear_relu_pt2e, test/test_quantization.py::TestQuantizedLinear::test_qlinear_sum_fp8, test/test_quantization.py::TestQuantizedLinear::test_qlinear_sum_pt2e, test/test_quantization.py::TestQuantizedLinear::test_qlinear_sum_relu_fp8, test/test_quantization.py::TestQuantizedLinear::test_qlinear_sum_relu_pt2e, test/test_quantization.py::TestQuantizedLinear::test_qlinear_tanh, test/test_quantization.py::TestQuantizedLinear::test_qlinear_unpack, test/test_quantization.py::TestQuantizedLinear::test_qlinear_with_input_q_dq_qweight_dq_output_fp32, test/test_quantization.py::TestQuantizedLinear::test_wrapped_quantized_linear, test/test_quantization.py::TestQuantizedLinear::test_wrapped_quantized_linear_prepacked, test/test_quantization.py::TestQuantizedConv::test_benchmark, test/test_quantization.py::TestQuantizedConv::test_conv_reorder_issue_onednn, test/test_quantization.py::TestQuantizedConv::test_conv_transpose_reorder_issue_onednn, test/test_quantization.py::TestQuantizedConv::test_qconv1d, test/test_quantization.py::TestQuantizedConv::test_qconv1d_cudnn, test/test_quantization.py::TestQuantizedConv::test_qconv1d_fp8, test/test_quantization.py::TestQuantizedConv::test_qconv1d_pt2e, test/test_quantization.py::TestQuantizedConv::test_qconv1d_relu, test/test_quantization.py::TestQuantizedConv::test_qconv1d_relu_cudnn, test/test_quantization.py::TestQuantizedConv::test_qconv1d_relu_fp8, test/test_quantization.py::TestQuantizedConv::test_qconv1d_relu_pt2e, test/test_quantization.py::TestQuantizedConv::test_qconv1d_unpack, test/test_quantization.py::TestQuantizedConv::test_qconv2d, test/test_quantization.py::TestQuantizedConv::test_qconv2d_add, test/test_quantization.py::TestQuantizedConv::test_qconv2d_add_relu, test/test_quantization.py::TestQuantizedConv::test_qconv2d_cudnn, test/test_quantization.py::TestQuantizedConv::test_qconv2d_fp8, test/test_quantization.py::TestQuantizedConv::test_qconv2d_hardswish_fp8, test/test_quantization.py::TestQuantizedConv::test_qconv2d_hardswish_pt2e, test/test_quantization.py::TestQuantizedConv::test_qconv2d_hardtanh_fp8, test/test_quantization.py::TestQuantizedConv::test_qconv2d_hardtanh_pt2e, test/test_quantization.py::TestQuantizedConv::test_qconv2d_pt2e, test/test_quantization.py::TestQuantizedConv::test_qconv2d_relu, test/test_quantization.py::TestQuantizedConv::test_qconv2d_relu_cudnn, test/test_quantization.py::TestQuantizedConv::test_qconv2d_relu_fp8, test/test_quantization.py::TestQuantizedConv::test_qconv2d_relu_pt2e, test/test_quantization.py::TestQuantizedConv::test_qconv2d_sum_fp8, test/test_quantization.py::TestQuantizedConv::test_qconv2d_sum_pt2e, test/test_quantization.py::TestQuantizedConv::test_qconv2d_sum_relu_float_output_pt2e, test/test_quantization.py::TestQuantizedConv::test_qconv2d_sum_relu_fp8, test/test_quantization.py::TestQuantizedConv::test_qconv2d_sum_relu_pt2e, test/test_quantization.py::TestQuantizedConv::test_qconv2d_swish_fp8, test/test_quantization.py::TestQuantizedConv::test_qconv2d_swish_pt2e, test/test_quantization.py::TestQuantizedConv::test_qconv2d_unpack, test/test_quantization.py::TestQuantizedConv::test_qconv3d, test/test_quantization.py::TestQuantizedConv::test_qconv3d_fp8, test/test_quantization.py::TestQuantizedConv::test_qconv3d_pt2e, test/test_quantization.py::TestQuantizedConv::test_qconv3d_relu, test/test_quantization.py::TestQuantizedConv::test_qconv3d_unpack, test/test_quantization.py::TestQuantizedConv::test_qconv_transpose1d, test/test_quantization.py::TestQuantizedConv::test_qconv_transpose2d, test/test_quantization.py::TestQuantizedConv::test_qconv_transpose3d, test/test_quantization.py::TestDynamicQuantizedOps::test_dynamic_conv1d, test/test_quantization.py::TestDynamicQuantizedOps::test_dynamic_conv2d, test/test_quantization.py::TestDynamicQuantizedOps::test_dynamic_conv3d, test/test_quantization.py::TestDynamicQuantizedOps::test_dynamic_convtranspose1d, test/test_quantization.py::TestDynamicQuantizedOps::test_dynamic_convtranspose2d, test/test_quantization.py::TestDynamicQuantizedOps::test_dynamic_convtranspose3d, test/test_quantization.py::TestDynamicQuantizedOps::test_linear_dynamic_fp16_onednn, test/test_quantization.py::TestDynamicQuantizedOps::test_linear_prepack_fp16_numerics, test/test_quantization.py::TestDynamicQuantizedOps::test_qlinear, test/test_quantization.py::TestDynamicQuantizedOps::test_qlinear_dynamic_fp16, test/test_quantization.py::TestDynamicQuantizedOps::test_qlinear_legacy, test/test_quantization.py::TestDynamicQuantizedOps::test_qlstmGRU, test/test_quantization.py::TestDynamicQuantizedOps::test_qrnncell, test/test_quantization.py::TestDynamicQuantizedOps::test_unpacked_qlinear_dynamic_fp16, test/test_quantization.py::TestDynamicQuantizedOps::test_unpacked_qlinear_dynamic_fp16_opcheck, test/test_quantization.py::TestDynamicQuantizedOps::test_wrapped_fbgemm_linear_fp16, test/test_quantization.py::TestDynamicQuantizedOps::test_wrapped_fbgemm_pack_gemm_matrix_fp16_pt2_compliant, test/test_quantization.py::TestComparatorOps::test_compare_tensor_scalar, test/test_quantization.py::TestComparatorOps::test_compare_tensor_tensor, test/test_quantization.py::TestPadding::test_constant_padNd, test/test_quantization.py::TestPadding::test_reflection_pad1d, test/test_quantization.py::TestPadding::test_reflection_pad2d, test/test_quantization.py::TestQuantizedEmbeddingOps::test_embedding, test/test_quantization.py::TestQuantizedEmbeddingOps::test_embedding_2d_indices, test/test_quantization.py::TestQuantizedEmbeddingOps::test_embedding_bag_2bit, test/test_quantization.py::TestQuantizedEmbeddingOps::test_embedding_bag_2d_indices, test/test_quantization.py::TestQuantizedEmbeddingOps::test_embedding_bag_4bit, test/test_quantization.py::TestQuantizedEmbeddingOps::test_embedding_bag_byte, test/test_quantization.py::TestQuantizedFunctionalOps::test_conv1d_api, test/test_quantization.py::TestQuantizedFunctionalOps::test_conv2d_api, test/test_quantization.py::TestQuantizedFunctionalOps::test_conv3d_api, test/test_quantization.py::TestQuantizedFunctionalOps::test_grid_sample, test/test_quantization.py::TestQuantizedFunctionalOps::test_relu_api, test/test_quantization.py::TestFakeQuantizeOps::test_backward_per_channel, test/test_quantization.py::TestFakeQuantizeOps::test_backward_per_channel_cachemask_cpu, test/test_quantization.py::TestFakeQuantizeOps::test_backward_per_channel_cachemask_cuda, test/test_quantization.py::TestFakeQuantizeOps::test_backward_per_tensor, test/test_quantization.py::TestFakeQuantizeOps::test_backward_per_tensor_cachemask_cpu, test/test_quantization.py::TestFakeQuantizeOps::test_backward_per_tensor_cachemask_cuda, test/test_quantization.py::TestFakeQuantizeOps::test_fake_quant_control, test/test_quantization.py::TestFakeQuantizeOps::test_fake_quant_per_channel_qparam_range, test/test_quantization.py::TestFakeQuantizeOps::test_fake_quant_preserves_qparam_shapes_for_activations, test/test_quantization.py::TestFakeQuantizeOps::test_fake_quantize_per_channel_affine_scale_dtypes, test/test_quantization.py::TestFakeQuantizeOps::test_fake_quantize_per_tensor_affine_inf, test/test_quantization.py::TestFakeQuantizeOps::test_fixed_qparams_fq_module, test/test_quantization.py::TestFakeQuantizeOps::test_forward_backward_per_tensor_with_amp, test/test_quantization.py::TestFakeQuantizeOps::test_forward_per_channel, test/test_quantization.py::TestFakeQuantizeOps::test_forward_per_channel_cachemask_cpu, test/test_quantization.py::TestFakeQuantizeOps::test_forward_per_channel_cachemask_cuda, test/test_quantization.py::TestFakeQuantizeOps::test_forward_per_channel_half_precision_numerics, test/test_quantization.py::TestFakeQuantizeOps::test_forward_per_tensor, test/test_quantization.py::TestFakeQuantizeOps::test_forward_per_tensor_cachemask_cpu, test/test_quantization.py::TestFakeQuantizeOps::test_forward_per_tensor_cachemask_cuda, test/test_quantization.py::TestFakeQuantizeOps::test_forward_per_tensor_half_precision_numerics, test/test_quantization.py::TestFakeQuantizeOps::test_fq_module_per_tensor, test/test_quantization.py::TestFakeQuantizeOps::test_fq_serializable_per_tensor, test/test_quantization.py::TestFakeQuantizeOps::test_learnable_backward_per_channel_cpu, test/test_quantization.py::TestFakeQuantizeOps::test_learnable_backward_per_channel_cuda, test/test_quantization.py::TestFakeQuantizeOps::test_learnable_backward_per_tensor_cpu, test/test_quantization.py::TestFakeQuantizeOps::test_learnable_backward_per_tensor_cuda, test/test_quantization.py::TestFakeQuantizeOps::test_learnable_forward_per_channel_cpu, test/test_quantization.py::TestFakeQuantizeOps::test_learnable_forward_per_channel_cuda, test/test_quantization.py::TestFakeQuantizeOps::test_learnable_forward_per_tensor_cpu, test/test_quantization.py::TestFakeQuantizeOps::test_learnable_forward_per_tensor_cuda, test/test_quantization.py::TestFakeQuantizeOps::test_numerical_consistency_per_channel, test/test_quantization.py::TestFakeQuantizeOps::test_numerical_consistency_per_tensor, test/test_quantization.py::TestFusedObsFakeQuant::test_fused_backward_op_fake_quant_off, test/test_quantization.py::TestFusedObsFakeQuant::test_fused_obs_fake_quant_backward_op, test/test_quantization.py::TestFusedObsFakeQuant::test_fused_obs_fake_quant_moving_avg, test/test_quantization.py::TestFusedObsFakeQuant::test_fused_obs_fake_quant_moving_avg_per_channel, test/test_quantization.py::TestQuantizedTensor::test_bfp16_quantize, test/test_quantization.py::TestQuantizedTensor::test_choose_qparams, test/test_quantization.py::TestQuantizedTensor::test_choose_qparams_optimized, test/test_quantization.py::TestQuantizedTensor::test_clone, test/test_quantization.py::TestQuantizedTensor::test_compare_per_channel_device_numerics, test/test_quantization.py::TestQuantizedTensor::test_compare_per_tensor_device_numerics, test/test_quantization.py::TestQuantizedTensor::test_cuda_quantization_does_not_pin_memory, test/test_quantization.py::TestQuantizedTensor::test_decomposed_choose_qparams_per_token_asymmetric_backward, test/test_quantization.py::TestQuantizedTensor::test_decomposed_dequantize_per_channel, test/test_quantization.py::TestQuantizedTensor::test_decomposed_dequantize_per_tensor, test/test_quantization.py::TestQuantizedTensor::test_decomposed_dynamic_quant_pattern, test/test_quantization.py::TestQuantizedTensor::test_decomposed_quantize_per_channel, test/test_quantization.py::TestQuantizedTensor::test_decomposed_quantize_per_channel_bfloat16_input, test/test_quantization.py::TestQuantizedTensor::test_decomposed_quantize_per_channel_group, test/test_quantization.py::TestQuantizedTensor::test_decomposed_quantize_per_tensor, test/test_quantization.py::TestQuantizedTensor::test_decomposed_quantize_per_tensor_bfloat16_input, test/test_quantization.py::TestQuantizedTensor::test_decomposed_quantize_per_token, test/test_quantization.py::TestQuantizedTensor::test_dequantize_fp16_cpu, test/test_quantization.py::TestQuantizedTensor::test_dequantize_fp16_cuda, test/test_quantization.py::TestQuantizedTensor::test_fp16_saturate_op, test/test_quantization.py::TestQuantizedTensor::test_jit_serialization, test/test_quantization.py::TestQuantizedTensor::test_per_channel_qtensor_creation_cpu, test/test_quantization.py::TestQuantizedTensor::test_per_channel_qtensor_creation_cuda, test/test_quantization.py::TestQuantizedTensor::test_per_channel_qtensor_to_memory_format, test/test_quantization.py::TestQuantizedTensor::test_per_channel_to_device, test/test_quantization.py::TestQuantizedTensor::test_per_tensor_qtensor_to_memory_format, test/test_quantization.py::TestQuantizedTensor::test_per_tensor_to_device, test/test_quantization.py::TestQuantizedTensor::test_pickle_checkpoint_qtensor, test/test_quantization.py::TestQuantizedTensor::test_qscheme_pickle, test/test_quantization.py::TestQuantizedTensor::test_qtensor_channel_float_assignment, test/test_quantization.py::TestQuantizedTensor::test_qtensor_copy, test/test_quantization.py::TestQuantizedTensor::test_qtensor_cpu, test/test_quantization.py::TestQuantizedTensor::test_qtensor_creation, test/test_quantization.py::TestQuantizedTensor::test_qtensor_cuda, test/test_quantization.py::TestQuantizedTensor::test_qtensor_dtypes, test/test_quantization.py::TestQuantizedTensor::test_qtensor_equal, test/test_quantization.py::TestQuantizedTensor::test_qtensor_fill_per_channel, test/test_quantization.py::TestQuantizedTensor::test_qtensor_fill_per_channel_nhwc, test/test_quantization.py::TestQuantizedTensor::test_qtensor_fill_per_tensor, test/test_quantization.py::TestQuantizedTensor::test_qtensor_fill_per_tensor_nhwc, test/test_quantization.py::TestQuantizedTensor::test_qtensor_float_assignment, test/test_quantization.py::TestQuantizedTensor::test_qtensor_index_put_cpu, test/test_quantization.py::TestQuantizedTensor::test_qtensor_index_put_cuda, test/test_quantization.py::TestQuantizedTensor::test_qtensor_index_select_cpu, test/test_quantization.py::TestQuantizedTensor::test_qtensor_index_select_cuda, test/test_quantization.py::TestQuantizedTensor::test_qtensor_int_repr, test/test_quantization.py::TestQuantizedTensor::test_qtensor_legacy_new_failure, test/test_quantization.py::TestQuantizedTensor::test_qtensor_load_save, test/test_quantization.py::TestQuantizedTensor::test_qtensor_masked_fill_cpu, test/test_quantization.py::TestQuantizedTensor::test_qtensor_masked_fill_cuda, test/test_quantization.py::TestQuantizedTensor::test_qtensor_per_channel_load_save, test/test_quantization.py::TestQuantizedTensor::test_qtensor_per_channel_permute, test/test_quantization.py::TestQuantizedTensor::test_qtensor_permute, test/test_quantization.py::TestQuantizedTensor::test_qtensor_quant_dequant, test/test_quantization.py::TestQuantizedTensor::test_qtensor_quantize_per_channel, test/test_quantization.py::TestQuantizedTensor::test_qtensor_reshape, test/test_quantization.py::TestQuantizedTensor::test_qtensor_resize, test/test_quantization.py::TestQuantizedTensor::test_qtensor_sub_byte_aligned_cols, test/test_quantization.py::TestQuantizedTensor::test_qtensor_sub_byte_not_aligned_cols, test/test_quantization.py::TestQuantizedTensor::test_qtensor_unsqueeze, test/test_quantization.py::TestQuantizedTensor::test_qtensor_view, test/test_quantization.py::TestQuantizedTensor::test_quant_pin_memory, test/test_quantization.py::TestQuantizedTensor::test_quantize_per_channel_float_qparams, test/test_quantization.py::TestQuantizedTensor::test_quantize_per_channel_sub_byte, test/test_quantization.py::TestQuantizedTensor::test_repeat, test/test_quantization.py::TestQuantizedTensor::test_torch_qtensor_deepcopy, test/test_quantization.py::TestFakeQuantize::test_fq_module_per_channel, test/test_quantization.py::TestFakeQuantize::test_fq_serializable_per_channel, test/test_quantization.py::TestFakeQuantize::test_quant_min_max_override, test/test_quantization.py::TestObserver::test_dynamic_quant_observer, test/test_quantization.py::TestObserver::test_dynamic_quant_observer_matching_choose_qparams, test/test_quantization.py::TestObserver::test_histogram_observer_consistent_buffer_shape, test/test_quantization.py::TestObserver::test_histogram_observer_handle_OOM_due_to_close_min_max_value, test/test_quantization.py::TestObserver::test_histogram_observer_handle_close_to_infinity, test/test_quantization.py::TestObserver::test_histogram_observer_ignore_infinity, test/test_quantization.py::TestObserver::test_histogram_observer_save_load_state_dict, test/test_quantization.py::TestObserver::test_observer_qparams_respects_device_affinity, test/test_quantization.py::TestObserver::test_observer_scriptable, test/test_quantization.py::TestObserver::test_per_channel_observers, test/test_quantization.py::TestObserver::test_per_channel_observers_load_state_dict, test/test_quantization.py::TestObserver::test_per_tensor_observers, test/test_quantization.py::TestObserver::test_save_load_state_dict_script, test/test_quantization.py::TestObserver::test_state_dict_respects_device_affinity, test/test_quantization.py::TestObserver::test_zero_numel, test/test_quantization.py::TestStaticQuantizedModule::test_batch_norm2d, test/test_quantization.py::TestStaticQuantizedModule::test_batch_norm2d_serialization, test/test_quantization.py::TestStaticQuantizedModule::test_batch_norm3d, test/test_quantization.py::TestStaticQuantizedModule::test_batch_norm3d_serialization, test/test_quantization.py::TestStaticQuantizedModule::test_channel_shuffle, test/test_quantization.py::TestStaticQuantizedModule::test_conv1d_api, test/test_quantization.py::TestStaticQuantizedModule::test_conv1d_relu_api, test/test_quantization.py::TestStaticQuantizedModule::test_conv2d_add, test/test_quantization.py::TestStaticQuantizedModule::test_conv2d_add_relu, test/test_quantization.py::TestStaticQuantizedModule::test_conv2d_api, test/test_quantization.py::TestStaticQuantizedModule::test_conv2d_relu_api, test/test_quantization.py::TestStaticQuantizedModule::test_conv3d_api, test/test_quantization.py::TestStaticQuantizedModule::test_conv3d_relu_api, test/test_quantization.py::TestStaticQuantizedModule::test_dropout, test/test_quantization.py::TestStaticQuantizedModule::test_dropout_serialization, test/test_quantization.py::TestStaticQuantizedModule::test_elu, test/test_quantization.py::TestStaticQuantizedModule::test_embedding_api, test/test_quantization.py::TestStaticQuantizedModule::test_embedding_bag_api, test/test_quantization.py::TestStaticQuantizedModule::test_group_norm, test/test_quantization.py::TestStaticQuantizedModule::test_hard_swish, test/test_quantization.py::TestStaticQuantizedModule::test_instance_norm, test/test_quantization.py::TestStaticQuantizedModule::test_layer_norm, test/test_quantization.py::TestStaticQuantizedModule::test_leaky_relu, test/test_quantization.py::TestStaticQuantizedModule::test_linear, test/test_quantization.py::TestStaticQuantizedModule::test_linear_leaky_relu, test/test_quantization.py::TestStaticQuantizedModule::test_linear_relu, test/test_quantization.py::TestStaticQuantizedModule::test_linear_tanh, test/test_quantization.py::TestStaticQuantizedModule::test_pool_api, test/test_quantization.py::TestStaticQuantizedModule::test_prelu, test/test_quantization.py::TestStaticQuantizedModule::test_quant_dequant_api, test/test_quantization.py::TestStaticQuantizedModule::test_relu, test/test_quantization.py::TestStaticQuantizedModule::test_sigmoid, test/test_quantization.py::TestDynamicQuantizedModule::test_cell_api, test/test_quantization.py::TestDynamicQuantizedModule::test_dynamic_conv1d, test/test_quantization.py::TestDynamicQuantizedModule::test_dynamic_conv2d, test/test_quantization.py::TestDynamicQuantizedModule::test_dynamic_conv3d, test/test_quantization.py::TestDynamicQuantizedModule::test_dynamic_convtranspose1d, test/test_quantization.py::TestDynamicQuantizedModule::test_dynamic_convtranspose2d, test/test_quantization.py::TestDynamicQuantizedModule::test_dynamic_convtranspose3d, test/test_quantization.py::TestDynamicQuantizedModule::test_gru_api, test/test_quantization.py::TestDynamicQuantizedModule::test_linear_api, test/test_quantization.py::TestDynamicQuantizedModule::test_lstm_api, test/test_quantization.py::TestReferenceQuantizedModule::test_linear_decomposed_weight_custom_qmin_qmax, test/test_quantization.py::TestReferenceQuantizedModule::test_rnn, test/test_quantization.py::TestReferenceQuantizedModule::test_rnn_cell, test/test_quantization.py::TestReferenceQuantizedModule::test_sparse, test/test_quantization.py::TestRecordHistogramObserver::test_observer_scriptable, test/test_quantization.py::TestRecordHistogramObserver::test_record_observer, test/test_quantization.py::TestHistogramObserver::test_histogram_observer, test/test_quantization.py::TestHistogramObserver::test_histogram_observer_against_reference, test/test_quantization.py::TestHistogramObserver::test_histogram_observer_correct_numel, test/test_quantization.py::TestHistogramObserver::test_histogram_observer_extreme_inputs, test/test_quantization.py::TestHistogramObserver::test_histogram_observer_one_sided, test/test_quantization.py::TestHistogramObserver::test_histogram_observer_same_inputs, test/test_quantization.py::TestHistogramObserver::test_histogram_observer_single_inputs, test/test_quantization.py::TestHistogramObserver::test_histogram_observer_update_within_range_succeeds, test/test_quantization.py::TestHistogramObserver::test_observer_scriptable, test/test_quantization.py::TestDistributed::test_device_affinity, test/test_quantization.py::TestDistributed::test_fake_quant_preserves_buffers, test/test_quantization.py::TestDistributed::test_observers_preserve_buffers, test/test_quantization.py::TestDistributed::test_qat_convbn_fused_syncbn_replacement, test/test_quantization.py::TestDistributed::test_qat_data_parallel, test/test_quantization.py::TestDistributed::test_syncbn_preserves_qconfig, test/test_quantization.py::TestFusedObsFakeQuantModule::test_compare_fused_obs_fq_oss_module, test/test_quantization.py::TestFusedObsFakeQuantModule::test_default_fused_qat_config, test/test_quantization.py::TestFusedObsFakeQuantModule::test_embedding_bag_qat_config, test/test_quantization.py::TestFusedObsFakeQuantModule::test_embedding_qat_config, test/test_quantization.py::TestFusedObsFakeQuantModule::test_fused_mod_per_channel, test/test_quantization.py::TestFusedObsFakeQuantModule::test_fused_mod_reduce_range, test/test_quantization.py::TestFusedObsFakeQuantModule::test_fused_obs_fq_module, test/test_quantization.py::TestFusedObsFakeQuantModule::test_fused_obs_fq_moving_avg_module, test/test_quantization.py::TestBackendConfig::test_backend_config_from_dict, test/test_quantization.py::TestBackendConfig::test_backend_config_set_backend_pattern_config, test/test_quantization.py::TestBackendConfig::test_backend_config_set_name, test/test_quantization.py::TestBackendConfig::test_backend_config_to_dict, test/test_quantization.py::TestBackendConfig::test_backend_op_config_add_dtype_config, test/test_quantization.py::TestBackendConfig::test_backend_op_config_from_dict, test/test_quantization.py::TestBackendConfig::test_backend_op_config_set_extra_inputs_getter, test/test_quantization.py::TestBackendConfig::test_backend_op_config_set_fused_module, test/test_quantization.py::TestBackendConfig::test_backend_op_config_set_fuser_method, test/test_quantization.py::TestBackendConfig::test_backend_op_config_set_input_type_to_index, test/test_quantization.py::TestBackendConfig::test_backend_op_config_set_num_tensor_args_to_observation_type, test/test_quantization.py::TestBackendConfig::test_backend_op_config_set_observation_type, test/test_quantization.py::TestBackendConfig::test_backend_op_config_set_qat_module, test/test_quantization.py::TestBackendConfig::test_backend_op_config_set_reference_quantized_module, test/test_quantization.py::TestBackendConfig::test_backend_op_config_set_root_module, test/test_quantization.py::TestBackendConfig::test_backend_op_config_set_root_node_getter, test/test_quantization.py::TestBackendConfig::test_backend_op_config_to_dict, test/test_quantization.py::TestBackendConfig::test_dtype_config_from_dict, test/test_quantization.py::TestBackendConfig::test_dtype_config_to_dict, test/test_quantization.py::TestUtils::test_get_fqn_to_example_inputs_complex_args, test/test_quantization.py::TestUtils::test_get_fqn_to_example_inputs_default_kwargs, test/test_quantization.py::TestUtils::test_get_fqn_to_example_inputs_simple, test/test_quantization.py::TestUtils::test_quantize_weight_clamping_per_channel, test/test_quantization.py::TestUtils::test_quantize_weight_clamping_per_tensor, test/test_quantization.py::TestUtils::test_uint4_int4_dtype, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_activations, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_activations_in_non_leaf_module_list, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_convtranspose_per_channel_fails_early, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_convtranspose_per_channel_qconfig_none, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_custom_module_class, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_dequant_stub, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_forward_hooks_preserved, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_manual, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_mha_batch_first_attr_is_copied_in_prepare, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_nested1, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_nested2, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_nested3, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_normalization, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_quantized_embedding, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_quantized_embedding_bag, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_quantwrapper_attaches_qconfig_to_dequant, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_resnet_base, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_save_load_state_dict, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_single_layer, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_skip_quant, test/test_quantization.py::TestQuantizeEagerPTQStatic::test_two_layers, test/test_quantization.py::TestQuantizeEagerPTQDynamic::test_embedding_bag_dynamic, test/test_quantization.py::TestQuantizeEagerPTQDynamic::test_embedding_ops_dynamic, test/test_quantization.py::TestQuantizeEagerPTQDynamic::test_forward_hooks_preserved, test/test_quantization.py::TestQuantizeEagerPTQDynamic::test_linear_relu_fusion, test/test_quantization.py::TestQuantizeEagerPTQDynamic::test_nested1, test/test_quantization.py::TestQuantizeEagerPTQDynamic::test_nested2, test/test_quantization.py::TestQuantizeEagerPTQDynamic::test_nested3, test/test_quantization.py::TestQuantizeEagerPTQDynamic::test_per_channel_linear_quantize, test/test_quantization.py::TestQuantizeEagerPTQDynamic::test_quantized_rnn, test/test_quantization.py::TestQuantizeEagerPTQDynamic::test_quantized_rnn_cell, test/test_quantization.py::TestQuantizeEagerPTQDynamic::test_single_layer, test/test_quantization.py::TestQuantizeEagerPTQDynamic::test_two_layers, test/test_quantization.py::TestQuantizeEagerPTQDynamic::test_type_match_rule, test/test_quantization.py::TestQuantizeEagerOps::test_conv_1d, test/test_quantization.py::TestQuantizeEagerOps::test_conv_2d, test/test_quantization.py::TestQuantizeEagerOps::test_conv_3d, test/test_quantization.py::TestQuantizeEagerOps::test_conv_transpose_1d, test/test_quantization.py::TestQuantizeEagerOps::test_conv_transpose_2d, test/test_quantization.py::TestQuantizeEagerOps::test_conv_transpose_3d, test/test_quantization.py::TestQuantizeEagerOps::test_functional_module, test/test_quantization.py::TestQuantizeEagerOps::test_int16_reference_module, test/test_quantization.py::TestQuantizeEagerOps::test_leaky_relu, test/test_quantization.py::TestQuantizeEagerOps::test_linear, test/test_quantization.py::TestQuantizeEagerOps::test_relu, test/test_quantization.py::TestQuantizeEagerQAT::test_add_scalar_uses_input_qparams, test/test_quantization.py::TestQuantizeEagerQAT::test_conv_linear, test/test_quantization.py::TestQuantizeEagerQAT::test_conv_linear_symm, test/test_quantization.py::TestQuantizeEagerQAT::test_defused_embedding_bag_linear, test/test_quantization.py::TestQuantizeEagerQAT::test_dropout, test/test_quantization.py::TestQuantizeEagerQAT::test_dynamic_qat_linear, test/test_quantization.py::TestQuantizeEagerQAT::test_embedding_bag_linear, test/test_quantization.py::TestQuantizeEagerQAT::test_embedding_qat_qconfig_equal, test/test_quantization.py::TestQuantizeEagerQAT::test_eval_only_fake_quant, test/test_quantization.py::TestQuantizeEagerQAT::test_forward_hooks_preserved, test/test_quantization.py::TestQuantizeEagerQAT::test_manual, test/test_quantization.py::TestQuantizeEagerQAT::test_mul_scalar_uses_input_qparams, test/test_quantization.py::TestQuantizeEagerQAT::test_qat_embedding_bag_errors, test/test_quantization.py::TestQuantizeEagerQAT::test_train_save_load_eval, test/test_quantization.py::TestQuantizeEagerQATNumerics::test_conv_bn_folded_vs_unfolded, test/test_quantization.py::TestQuantizeEagerQATNumerics::test_conv_bn_relu, test/test_quantization.py::TestQuantizeEagerQATNumerics::test_fixed_qparam_ops, test/test_quantization.py::TestQuantizeEagerQATNumerics::test_leaky_relu, test/test_quantization.py::TestQuantizeEagerQATNumerics::test_linear_bn_numerics, test/test_quantization.py::TestQuantizeEagerQATNumerics::test_linear_bn_symm_numerics, test/test_quantization.py::TestQuantizeEagerQATNumerics::test_linear_bn_workflow, test/test_quantization.py::TestQuantizeEagerQATNumerics::test_linear_precomputed_fake_quant, test/test_quantization.py::TestQuantizeEagerQATNumerics::test_relu, test/test_quantization.py::TestFuseEager::test_forward_hooks_preserved, test/test_quantization.py::TestFuseEager::test_fuse_function_customization, test/test_quantization.py::TestFuseEager::test_fuse_module_eval, test/test_quantization.py::TestFuseEager::test_fuse_module_train, test/test_quantization.py::TestFuseEager::test_fuse_modules_with_nested_hooks, test/test_quantization.py::TestFuseEager::test_fusion_conv_with_bias, test/test_quantization.py::TestFuseEager::test_fusion_convtranspose_bn_eval, test/test_quantization.py::TestFuseEager::test_fusion_linear_bn_eval, test/test_quantization.py::TestFuseEager::test_fusion_sequential_model_eval, test/test_quantization.py::TestFuseEager::test_fusion_sequential_model_train, test/test_quantization.py::TestModelNumericsEager::test_fake_quant_true_quant_compare, test/test_quantization.py::TestModelNumericsEager::test_float_quant_compare_per_channel, test/test_quantization.py::TestModelNumericsEager::test_float_quant_compare_per_tensor, test/test_quantization.py::TestModelNumericsEager::test_weight_only_activation_only_fakequant, test/test_quantization.py::TestNumericSuiteEager::test_compare_model_outputs_conv_static, test/test_quantization.py::TestNumericSuiteEager::test_compare_model_outputs_functional_static, test/test_quantization.py::TestNumericSuiteEager::test_compare_model_outputs_linear_dynamic, test/test_quantization.py::TestNumericSuiteEager::test_compare_model_outputs_linear_static, test/test_quantization.py::TestNumericSuiteEager::test_compare_model_outputs_lstm_dynamic, test/test_quantization.py::TestNumericSuiteEager::test_compare_model_stub_conv_static, test/test_quantization.py::TestNumericSuiteEager::test_compare_model_stub_functional_static, test/test_quantization.py::TestNumericSuiteEager::test_compare_model_stub_linear_dynamic, test/test_quantization.py::TestNumericSuiteEager::test_compare_model_stub_linear_static, test/test_quantization.py::TestNumericSuiteEager::test_compare_model_stub_lstm_dynamic, test/test_quantization.py::TestNumericSuiteEager::test_compare_model_stub_partial, test/test_quantization.py::TestNumericSuiteEager::test_compare_model_stub_submodule_static, test/test_quantization.py::TestNumericSuiteEager::test_compare_weights_conv_static, test/test_quantization.py::TestNumericSuiteEager::test_compare_weights_linear_dynamic, test/test_quantization.py::TestNumericSuiteEager::test_compare_weights_linear_static, test/test_quantization.py::TestNumericSuiteEager::test_compare_weights_lstm_dynamic, test/test_quantization.py::TestNumericSuiteEager::test_mobilenet_v2, test/test_quantization.py::TestNumericSuiteEager::test_mobilenet_v3, test/test_quantization.py::TestNumericSuiteEager::test_output_logger, test/test_quantization.py::TestNumericSuiteEager::test_shadow_logger, test/test_quantization.py::TestEqualizeEager::test_converged, test/test_quantization.py::TestEqualizeEager::test_cross_layer_equalization, test/test_quantization.py::TestEqualizeEager::test_equalize, test/test_quantization.py::TestEqualizeEager::test_equalize_fused_convrelu, test/test_quantization.py::TestEqualizeEager::test_equalize_fused_linearrelu, test/test_quantization.py::TestBiasCorrectionEager::test_conv_chain, test/test_quantization.py::TestBiasCorrectionEager::test_linear_chain, test/test_quantization.py::TestFuseFx::test_fuse_addtional_fuser_method, test/test_quantization.py::TestFuseFx::test_fuse_conv_bn_add_relu_by_default, test/test_quantization.py::TestFuseFx::test_fuse_conv_bn_add_relu_lowering, test/test_quantization.py::TestFuseFx::test_fuse_conv_bn_add_relu_onednn, test/test_quantization.py::TestFuseFx::test_fuse_conv_bn_relu, test/test_quantization.py::TestFuseFx::test_fuse_convtranspose_bn_eval, test/test_quantization.py::TestFuseFx::test_fuse_custom_pattern, test/test_quantization.py::TestFuseFx::test_fuse_linear_bn_eval, test/test_quantization.py::TestFuseFx::test_fuse_linear_bn_leaky_relu_onednn, test/test_quantization.py::TestFuseFx::test_fuse_linear_tanh_for_onednn_backend, test/test_quantization.py::TestFuseFx::test_fuse_module_relu, test/test_quantization.py::TestFuseFx::test_fusion_pattern_with_matchallnode, test/test_quantization.py::TestFuseFx::test_fusion_pattern_with_multiple_inputs, test/test_quantization.py::TestFuseFx::test_linear_bn_leaky_relu_not_fused_by_default, test/test_quantization.py::TestFuseFx::test_linear_tanh_not_fused_by_default, test/test_quantization.py::TestFuseFx::test_problematic_fuse_example, test/test_quantization.py::TestFuseFx::test_qconfig_fused_module, test/test_quantization.py::TestQuantizeFx::test__convert_to_reference_decomposed_fx, test/test_quantization.py::TestQuantizeFx::test__convert_to_reference_decomposed_fx_dynamic_quant, test/test_quantization.py::TestQuantizeFx::test__convert_to_reference_decomposed_fx_per_channel_quant, test/test_quantization.py::TestQuantizeFx::test_assert_on_size_after_quant_layer, test/test_quantization.py::TestQuantizeFx::test_attention, test/test_quantization.py::TestQuantizeFx::test_backend_config_check_for_weight_and_bias, test/test_quantization.py::TestQuantizeFx::test_backend_config_quantization_range, test/test_quantization.py::TestQuantizeFx::test_backend_config_scale_min, test/test_quantization.py::TestQuantizeFx::test_change_backend_config_for_fixed_qparam_ops, test/test_quantization.py::TestQuantizeFx::test_channel_shuffle_lowering, test/test_quantization.py::TestQuantizeFx::test_conv_bn_relu, test/test_quantization.py::TestQuantizeFx::test_conv_linear_not_reference, test/test_quantization.py::TestQuantizeFx::test_conv_linear_reference, test/test_quantization.py::TestQuantizeFx::test_conv_lowering, test/test_quantization.py::TestQuantizeFx::test_conv_transpose_not_reference, test/test_quantization.py::TestQuantizeFx::test_conv_transpose_reference, test/test_quantization.py::TestQuantizeFx::test_conv_transpose_relu_not_reference, test/test_quantization.py::TestQuantizeFx::test_conv_transpose_relu_reference, test/test_quantization.py::TestQuantizeFx::test_convert_custom_config_from_dict, test/test_quantization.py::TestQuantizeFx::test_convert_custom_config_set_observed_to_quantized_mapping, test/test_quantization.py::TestQuantizeFx::test_convert_custom_config_set_preserved_attributes, test/test_quantization.py::TestQuantizeFx::test_convert_custom_config_to_dict, test/test_quantization.py::TestQuantizeFx::test_convert_qconfig_mapping, test/test_quantization.py::TestQuantizeFx::test_convtranspose_per_channel_fails_early, test/test_quantization.py::TestQuantizeFx::test_copy_node_has_shared_actpp_instance, test/test_quantization.py::TestQuantizeFx::test_custom_module_class, test/test_quantization.py::TestQuantizeFx::test_custom_module_class_input_has_duplicate_nodes, test/test_quantization.py::TestQuantizeFx::test_custom_module_class_input_has_multiple_users, test/test_quantization.py::TestQuantizeFx::test_deepcopy_preserve_attributes, test/test_quantization.py::TestQuantizeFx::test_default_qconfig_mapping_override_global, test/test_quantization.py::TestQuantizeFx::test_default_quant_after_none_qconfig, test/test_quantization.py::TestQuantizeFx::test_dequantize, test/test_quantization.py::TestQuantizeFx::test_dict_output, test/test_quantization.py::TestQuantizeFx::test_dynamic_linear_input_multiple_use, test/test_quantization.py::TestQuantizeFx::test_dynamic_quant_fp16, test/test_quantization.py::TestQuantizeFx::test_dynamic_quant_weight_observer, test/test_quantization.py::TestQuantizeFx::test_dynamic_with_fusion, test/test_quantization.py::TestQuantizeFx::test_dynamic_with_fusion_multiple_uses, test/test_quantization.py::TestQuantizeFx::test_fold_quant_dequant, test/test_quantization.py::TestQuantizeFx::test_fp32_input_fp32_output, test/test_quantization.py::TestQuantizeFx::test_fp32_input_quantized_output, test/test_quantization.py::TestQuantizeFx::test_fp32_sum, test/test_quantization.py::TestQuantizeFx::test_fuse_custom_config_from_dict, test/test_quantization.py::TestQuantizeFx::test_fuse_custom_config_set_preserved_attributes, test/test_quantization.py::TestQuantizeFx::test_fuse_custom_config_to_dict, test/test_quantization.py::TestQuantizeFx::test_fused_module_qat_swap, test/test_quantization.py::TestQuantizeFx::test_fusion_pattern_unquantized, test/test_quantization.py::TestQuantizeFx::test_get_default_qconfig_valid_backend, test/test_quantization.py::TestQuantizeFx::test_get_executorch_backend_config, test/test_quantization.py::TestQuantizeFx::test_getattr_with_nontensor_result, test/test_quantization.py::TestQuantizeFx::test_keep_original_weights, test/test_quantization.py::TestQuantizeFx::test_linear_bn, test/test_quantization.py::TestQuantizeFx::test_linear_leaky_relu_lowering, test/test_quantization.py::TestQuantizeFx::test_linear_qint8_activation, test/test_quantization.py::TestQuantizeFx::test_linear_shape_view, test/test_quantization.py::TestQuantizeFx::test_linear_size_view, test/test_quantization.py::TestQuantizeFx::test_linear_tanh_lowering, test/test_quantization.py::TestQuantizeFx::test_lowering_functional_conv_transpose_with_kwargs, test/test_quantization.py::TestQuantizeFx::test_lowering_functional_conv_with_kwargs, test/test_quantization.py::TestQuantizeFx::test_lowering_functional_linear_with_kwargs, test/test_quantization.py::TestQuantizeFx::test_masked_fill_nontensor_args_not_observed, test/test_quantization.py::TestQuantizeFx::test_match_pattern_with_multiple_args, test/test_quantization.py::TestQuantizeFx::test_mixed_dtypes, test/test_quantization.py::TestQuantizeFx::test_mul_add_fp16_config, test/test_quantization.py::TestQuantizeFx::test_no_obs_between_unmatched_node_and_copy_node, test/test_quantization.py::TestQuantizeFx::test_non_traceable_module, test/test_quantization.py::TestQuantizeFx::test_not_used, test/test_quantization.py::TestQuantizeFx::test_observer_fqn, test/test_quantization.py::TestQuantizeFx::test_output_lists_and_dicts, test/test_quantization.py::TestQuantizeFx::test_packed_weight_fused_op, test/test_quantization.py::TestQuantizeFx::test_pattern_match, test/test_quantization.py::TestQuantizeFx::test_pattern_match_constant, test/test_quantization.py::TestQuantizeFx::test_permute_nontensor_args_not_observed, test/test_quantization.py::TestQuantizeFx::test_prepare_custom_config_from_dict, test/test_quantization.py::TestQuantizeFx::test_prepare_custom_config_set_float_to_observed_mapping, test/test_quantization.py::TestQuantizeFx::test_prepare_custom_config_set_input_quantized_indexes, test/test_quantization.py::TestQuantizeFx::test_prepare_custom_config_set_non_traceable_module_classes, test/test_quantization.py::TestQuantizeFx::test_prepare_custom_config_set_non_traceable_module_names, test/test_quantization.py::TestQuantizeFx::test_prepare_custom_config_set_output_quantized_indexes, test/test_quantization.py::TestQuantizeFx::test_prepare_custom_config_set_preserved_attributes, test/test_quantization.py::TestQuantizeFx::test_prepare_custom_config_set_standalone_module_class, test/test_quantization.py::TestQuantizeFx::test_prepare_custom_config_set_standalone_module_name, test/test_quantization.py::TestQuantizeFx::test_prepare_custom_config_to_dict, test/test_quantization.py::TestQuantizeFx::test_prepare_mode, test/test_quantization.py::TestQuantizeFx::test_prepared_model_deepcopy, test/test_quantization.py::TestQuantizeFx::test_preserve_attributes, test/test_quantization.py::TestQuantizeFx::test_preserve_qconfig, test/test_quantization.py::TestQuantizeFx::test_preserve_tuple, test/test_quantization.py::TestQuantizeFx::test_propagate_dtypes_for_known_nodes_dict_args, test/test_quantization.py::TestQuantizeFx::test_propagate_dtypes_for_known_nodes_dict_split_tuple_args, test/test_quantization.py::TestQuantizeFx::test_propagate_dtypes_for_known_nodes_dict_tuple_args, test/test_quantization.py::TestQuantizeFx::test_propagate_dtypes_for_known_nodes_list_args, test/test_quantization.py::TestQuantizeFx::test_propagate_dtypes_for_known_nodes_split_list_args, test/test_quantization.py::TestQuantizeFx::test_propagate_dtypes_for_known_nodes_split_tuple_args, test/test_quantization.py::TestQuantizeFx::test_propagate_dtypes_for_known_nodes_tuple_args, test/test_quantization.py::TestQuantizeFx::test_qat_and_script, test/test_quantization.py::TestQuantizeFx::test_qat_prepare_device_affinity, test/test_quantization.py::TestQuantizeFx::test_qat_skip_untraced, test/test_quantization.py::TestQuantizeFx::test_qconfig_dict_setup, test/test_quantization.py::TestQuantizeFx::test_qconfig_dict_with_fused_modules, test/test_quantization.py::TestQuantizeFx::test_qconfig_for_call_func, test/test_quantization.py::TestQuantizeFx::test_qconfig_for_call_method, test/test_quantization.py::TestQuantizeFx::test_qconfig_function, test/test_quantization.py::TestQuantizeFx::test_qconfig_mapping_from_dict, test/test_quantization.py::TestQuantizeFx::test_qconfig_mapping_repr, test/test_quantization.py::TestQuantizeFx::test_qconfig_mapping_set_global, test/test_quantization.py::TestQuantizeFx::test_qconfig_mapping_set_module_name, test/test_quantization.py::TestQuantizeFx::test_qconfig_mapping_set_module_name_object_type_order, test/test_quantization.py::TestQuantizeFx::test_qconfig_mapping_set_module_name_regex, test/test_quantization.py::TestQuantizeFx::test_qconfig_mapping_set_object_type, test/test_quantization.py::TestQuantizeFx::test_qconfig_mapping_to_dict, test/test_quantization.py::TestQuantizeFx::test_qconfig_module_name_object_type_order, test/test_quantization.py::TestQuantizeFx::test_qconfig_module_name_regex, test/test_quantization.py::TestQuantizeFx::test_qconfig_module_type, test/test_quantization.py::TestQuantizeFx::test_qconfig_none, test/test_quantization.py::TestQuantizeFx::test_qconfig_precedence, test/test_quantization.py::TestQuantizeFx::test_qconfig_qat_module_type, test/test_quantization.py::TestQuantizeFx::test_qnnpack_backend_config, test/test_quantization.py::TestQuantizeFx::test_qparams_buffers, test/test_quantization.py::TestQuantizeFx::test_qparams_fqn, test/test_quantization.py::TestQuantizeFx::test_quant_output_always_observed, test/test_quantization.py::TestQuantizeFx::test_quantized_input_fp32_output, test/test_quantization.py::TestQuantizeFx::test_quantized_input_quantized_output, test/test_quantization.py::TestQuantizeFx::test_quantized_model_type, test/test_quantization.py::TestQuantizeFx::test_ref_conv_module, test/test_quantization.py::TestQuantizeFx::test_ref_linear_module, test/test_quantization.py::TestQuantizeFx::test_register_patterns, test/test_quantization.py::TestQuantizeFx::test_relu_lowering, test/test_quantization.py::TestQuantizeFx::test_remove_qconfig, test/test_quantization.py::TestQuantizeFx::test_repeat_nontensor_args_not_observed, test/test_quantization.py::TestQuantizeFx::test_reroute_tuple_getitem_patterns, test/test_quantization.py::TestQuantizeFx::test_reshape_nontensor_args_not_observed, test/test_quantization.py::TestQuantizeFx::test_return_none, test/test_quantization.py::TestQuantizeFx::test_reuse_input_qconfig, test/test_quantization.py::TestQuantizeFx::test_save_observer_state_dict, test/test_quantization.py::TestQuantizeFx::test_sequential, test/test_quantization.py::TestQuantizeFx::test_shape_followed_by_quantized_op, test/test_quantization.py::TestQuantizeFx::test_size_nontensor_args_not_observed, test/test_quantization.py::TestQuantizeFx::test_stack_trace_preserved_linear, test/test_quantization.py::TestQuantizeFx::test_standalone_module_float_interface, test/test_quantization.py::TestQuantizeFx::test_standalone_module_quantized_interface, test/test_quantization.py::TestQuantizeFx::test_state_dict, test/test_quantization.py::TestQuantizeFx::test_static_lstm, test/test_quantization.py::TestQuantizeFx::test_static_lstm_consume_tuple, test/test_quantization.py::TestQuantizeFx::test_static_lstm_with_custom_fixed_qparams, test/test_quantization.py::TestQuantizeFx::test_sub_scalar, test/test_quantization.py::TestQuantizeFx::test_symmetric_qnnpack_qat_qconfig_mapping, test/test_quantization.py::TestQuantizeFx::test_symmetric_qnnpack_qconfig_mapping, test/test_quantization.py::TestQuantizeFx::test_torch_transpose_nontensor_args_not_observed, test/test_quantization.py::TestQuantizeFx::test_torch_unsqueeze_nontensor_args_not_observed, test/test_quantization.py::TestQuantizeFx::test_trace_quantize_per_tensor, test/test_quantization.py::TestQuantizeFx::test_transpose_nontensor_args_not_observed, test/test_quantization.py::TestQuantizeFx::test_unsqueeze__nontensor_args_not_observed, test/test_quantization.py::TestQuantizeFx::test_unsqueeze_nontensor_args_not_observed, test/test_quantization.py::TestQuantizeFx::test_view_nontensor_args_not_observed, test/test_quantization.py::TestQuantizeFxOps::test_add, test/test_quantization.py::TestQuantizeFxOps::test_add_relu, test/test_quantization.py::TestQuantizeFxOps::test_add_relu_multiple_uses_of_relu, test/test_quantization.py::TestQuantizeFxOps::test_ave_pool_with_custom_cfg, test/test_quantization.py::TestQuantizeFxOps::test_bmm, test/test_quantization.py::TestQuantizeFxOps::test_bmm_int_reference, test/test_quantization.py::TestQuantizeFxOps::test_boolean_tensor, test/test_quantization.py::TestQuantizeFxOps::test_cat, test/test_quantization.py::TestQuantizeFxOps::test_chunk, test/test_quantization.py::TestQuantizeFxOps::test_clamp, test/test_quantization.py::TestQuantizeFxOps::test_conv_module, test/test_quantization.py::TestQuantizeFxOps::test_conv_transpose_1d, test/test_quantization.py::TestQuantizeFxOps::test_conv_transpose_2d, test/test_quantization.py::TestQuantizeFxOps::test_copy_node_fp32_input, test/test_quantization.py::TestQuantizeFxOps::test_div, test/test_quantization.py::TestQuantizeFxOps::test_elu, test/test_quantization.py::TestQuantizeFxOps::test_embedding, test/test_quantization.py::TestQuantizeFxOps::test_embedding_bag, test/test_quantization.py::TestQuantizeFxOps::test_fixed_qparams_ops, test/test_quantization.py::TestQuantizeFxOps::test_fixed_qparams_ops_fp16, test/test_quantization.py::TestQuantizeFxOps::test_fixed_qparams_ops_qint8, test/test_quantization.py::TestQuantizeFxOps::test_fixed_qparams_ops_wrong_qconfig, test/test_quantization.py::TestQuantizeFxOps::test_float_functional, test/test_quantization.py::TestQuantizeFxOps::test_functional_conv, test/test_quantization.py::TestQuantizeFxOps::test_functional_linear, test/test_quantization.py::TestQuantizeFxOps::test_gelu_normal, test/test_quantization.py::TestQuantizeFxOps::test_gelu_reference, test/test_quantization.py::TestQuantizeFxOps::test_general_shape_ops, test/test_quantization.py::TestQuantizeFxOps::test_general_value_ops, test/test_quantization.py::TestQuantizeFxOps::test_getitem, test/test_quantization.py::TestQuantizeFxOps::test_hardswish, test/test_quantization.py::TestQuantizeFxOps::test_instance_norm, test/test_quantization.py::TestQuantizeFxOps::test_int8_input_no_unnecessary_fq, test/test_quantization.py::TestQuantizeFxOps::test_layer_norm, test/test_quantization.py::TestQuantizeFxOps::test_leaky_relu, test/test_quantization.py::TestQuantizeFxOps::test_linear_dynamic_fp16, test/test_quantization.py::TestQuantizeFxOps::test_linear_module, test/test_quantization.py::TestQuantizeFxOps::test_linear_static_fp16, test/test_quantization.py::TestQuantizeFxOps::test_mish_reference, test/test_quantization.py::TestQuantizeFxOps::test_mul, test/test_quantization.py::TestQuantizeFxOps::test_mul_relu, test/test_quantization.py::TestQuantizeFxOps::test_multiple_qconfigs_for_single_value, test/test_quantization.py::TestQuantizeFxOps::test_narrow, test/test_quantization.py::TestQuantizeFxOps::test_norm_weight_bias, test/test_quantization.py::TestQuantizeFxOps::test_pixel_shuffle, test/test_quantization.py::TestQuantizeFxOps::test_pixel_shuffle_module, test/test_quantization.py::TestQuantizeFxOps::test_pixel_unshuffle, test/test_quantization.py::TestQuantizeFxOps::test_pixel_unshuffle_module, test/test_quantization.py::TestQuantizeFxOps::test_prelu, test/test_quantization.py::TestQuantizeFxOps::test_qbatch_norm, test/test_quantization.py::TestQuantizeFxOps::test_qbatch_norm_relu, test/test_quantization.py::TestQuantizeFxOps::test_qmatmul, test/test_quantization.py::TestQuantizeFxOps::test_quantized_add_qat, test/test_quantization.py::TestQuantizeFxOps::test_quantized_conv_relu, test/test_quantization.py::TestQuantizeFxOps::test_quantized_mul_qat, test/test_quantization.py::TestQuantizeFxOps::test_ref_pattern_multi_use, test/test_quantization.py::TestQuantizeFxOps::test_reshape_fp16, test/test_quantization.py::TestQuantizeFxOps::test_rnn, test/test_quantization.py::TestQuantizeFxOps::test_rnn_cell, test/test_quantization.py::TestQuantizeFxOps::test_silu_reference, test/test_quantization.py::TestQuantizeFxOps::test_softmax_normal, test/test_quantization.py::TestQuantizeFxOps::test_softmax_reference, test/test_quantization.py::TestQuantizeFxOps::test_sub, test/test_quantization.py::TestQuantizeFxOps::test_sum, test/test_quantization.py::TestQuantizeFxModels::test_model_dropout, test/test_quantization.py::TestQuantizeFxModels::test_prepare_serialize_switch_device_convert, test/test_quantization.py::TestQuantizeFxModels::test_qat_embedding_linear, test/test_quantization.py::TestQuantizeFxModels::test_qat_embeddingbag_linear, test/test_quantization.py::TestQuantizeFxModels::test_qat_functional_linear, test/test_quantization.py::TestQuantizeFxModels::test_resnet18_ddp, test/test_quantization.py::TestQuantizeFxModels::test_resnet_base, test/test_quantization.py::TestQuantizeFxModels::test_static_gpu_convert_basic, test/test_quantization.py::TestQuantizeFxModels::test_switch_device_prepare_convert, test/test_quantization.py::TestQuantizeFxModels::test_torchvision, test/test_quantization.py::TestSubgraphRewriter::test_subgraph_rewriter_annotations_int, test/test_quantization.py::TestSubgraphRewriter::test_subgraph_rewriter_correct_output_replacement, test/test_quantization.py::TestSubgraphRewriter::test_subgraph_rewriter_graph_argument_order, test/test_quantization.py::TestSubgraphRewriter::test_subgraph_rewriter_internal_pattern_nodes_cannot_have_users_that_are_not_matched, test/test_quantization.py::TestSubgraphRewriter::test_subgraph_rewriter_multiple_pattern_match, test/test_quantization.py::TestSubgraphRewriter::test_subgraph_rewriter_pattern_is_entire_graph, test/test_quantization.py::TestSubgraphRewriter::test_subgraph_rewriter_pattern_output_pattern_node_can_have_users_that_are_not_matched, test/test_quantization.py::TestSubgraphRewriter::test_subgraph_rewriter_placeholder_matching, test/test_quantization.py::TestSubgraphRewriter::test_subgraph_rewriter_preserves_logic, test/test_quantization.py::TestSubgraphRewriter::test_subgraph_rewriter_replaces_referenced_submodules, test/test_quantization.py::TestSubgraphRewriter::test_subgraph_rewriter_single_pattern_match, test/test_quantization.py::TestSubgraphRewriter::test_subgraph_rewriter_traced_as_callable, test/test_quantization.py::TestSubgraphRewriter::test_subgraph_rewriter_with_oneliner_pattern, test/test_quantization.py::TestSubgraphRewriter::test_subgraph_writer_replace_consecutive_submodules, test/test_quantization.py::TestGraphUtils::test_conv_bn_conv_relu, test/test_quantization.py::TestGraphUtils::test_conv_bn_relu, test/test_quantization.py::TestGraphUtils::test_customized_equivalet_types_dict, test/test_quantization.py::TestDuplicateDQPass::test_avgpool_use_different_qconfig, test/test_quantization.py::TestDuplicateDQPass::test_no_add_quant_duplicate_dq, test/test_quantization.py::TestDuplicateDQPass::test_no_need_for_duplicate_dq, test/test_quantization.py::TestDuplicateDQPass::test_simple_duplicate_dq, test/test_quantization.py::TestMetaDataPorting::test_metadata_porting_for_dq, test/test_quantization.py::TestMetaDataPorting::test_metadata_porting_for_dq_no_static_q, test/test_quantization.py::TestMetaDataPorting::test_metadata_porting_for_two_dq, test/test_quantization.py::TestMetaDataPorting::test_metadata_porting_with_no_quant_inbetween, test/test_quantization.py::TestMetaDataPorting::test_no_metadata_porting, test/test_quantization.py::TestMetaDataPorting::test_no_metadata_porting_through_unknown_ops, test/test_quantization.py::TestMetaDataPorting::test_simple_metadata_porting, test/test_quantization.py::TestNumericDebugger::test_added_node_gets_unique_id, test/test_quantization.py::TestNumericDebugger::test_control_flow, test/test_quantization.py::TestNumericDebugger::test_copy_preserve_handle, test/test_quantization.py::TestNumericDebugger::test_deepcopy_preserve_handle, test/test_quantization.py::TestNumericDebugger::test_extract_results_from_loggers, test/test_quantization.py::TestNumericDebugger::test_extract_results_from_loggers_list_output, test/test_quantization.py::TestNumericDebugger::test_prepare_for_propagation_comparison, test/test_quantization.py::TestNumericDebugger::test_quantize_pt2e_preserve_handle, test/test_quantization.py::TestNumericDebugger::test_re_export_preserve_handle, test/test_quantization.py::TestNumericDebugger::test_run_decompositions_map_handle_to_new_nodes, test/test_quantization.py::TestNumericDebugger::test_run_decompositions_same_handle_id, test/test_quantization.py::TestNumericDebugger::test_simple, test/test_quantization.py::TestQuantizePT2E::test_allow_exported_model_train_eval, test/test_quantization.py::TestQuantizePT2E::test_allow_exported_model_train_eval_idempotent, test/test_quantization.py::TestQuantizePT2E::test_allow_implicit_sharing, test/test_quantization.py::TestQuantizePT2E::test_composable_quantizer_linear_conv, test/test_quantization.py::TestQuantizePT2E::test_composable_quantizer_throw, test/test_quantization.py::TestQuantizePT2E::test_composable_quantizer_transform_for_annotation, test/test_quantization.py::TestQuantizePT2E::test_constant_prop_preserve_metadata, test/test_quantization.py::TestQuantizePT2E::test_conv_padding_bn_relu, test/test_quantization.py::TestQuantizePT2E::test_conv_transpose_bn_relu, test/test_quantization.py::TestQuantizePT2E::test_derived_qspec, test/test_quantization.py::TestQuantizePT2E::test_derived_qspec_per_channel, test/test_quantization.py::TestQuantizePT2E::test_disallow_eval_train, test/test_quantization.py::TestQuantizePT2E::test_dont_fold_other_constant, test/test_quantization.py::TestQuantizePT2E::test_embedding_conv_linear_quantization, test/test_quantization.py::TestQuantizePT2E::test_embedding_quantizer, test/test_quantization.py::TestQuantizePT2E::test_fixed_qparams_qspec_observer_dedup, test/test_quantization.py::TestQuantizePT2E::test_fixed_qparams_qspec_ptq, test/test_quantization.py::TestQuantizePT2E::test_fixed_qparams_qspec_qat, test/test_quantization.py::TestQuantizePT2E::test_fold_all_ops_before_quantize, test/test_quantization.py::TestQuantizePT2E::test_fold_quantize, test/test_quantization.py::TestQuantizePT2E::test_fold_quantize_per_channel, test/test_quantization.py::TestQuantizePT2E::test_groupwise_per_channel_quant, test/test_quantization.py::TestQuantizePT2E::test_input_edge_sanity_check, test/test_quantization.py::TestQuantizePT2E::test_max_pool2d_quantizer, test/test_quantization.py::TestQuantizePT2E::test_model_is_exported, test/test_quantization.py::TestQuantizePT2E::test_move_exported_model_bn_device_cpu, test/test_quantization.py::TestQuantizePT2E::test_move_exported_model_dropout, test/test_quantization.py::TestQuantizePT2E::test_move_exported_model_dropout_inplace, test/test_quantization.py::TestQuantizePT2E::test_multi_users_without_output_observer, test/test_quantization.py::TestQuantizePT2E::test_observer_callback, test/test_quantization.py::TestQuantizePT2E::test_prepare_obs_or_fq_callback, test/test_quantization.py::TestQuantizePT2E::test_preserve_nn_module_stack, test/test_quantization.py::TestQuantizePT2E::test_quantization_dtype_bfloat16_float8_e4m3fn, test/test_quantization.py::TestQuantizePT2E::test_quantization_dtype_bfloat16_float8_e5m2, test/test_quantization.py::TestQuantizePT2E::test_quantization_dtype_bfloat16_int16, test/test_quantization.py::TestQuantizePT2E::test_quantization_dtype_float32_float8_e4m3fn, test/test_quantization.py::TestQuantizePT2E::test_quantization_dtype_float32_float8_e5m2, test/test_quantization.py::TestQuantizePT2E::test_quantization_dtype_float32_int16, test/test_quantization.py::TestQuantizePT2E::test_reentrant, test/test_quantization.py::TestQuantizePT2E::test_save_load, test/test_quantization.py::TestQuantizePT2E::test_shared_qspec, test/test_quantization.py::TestQuantizePT2E::test_shared_qspec_transitivity, test/test_quantization.py::TestQuantizePT2E::test_shared_qspec_transitivity_case_2, test/test_quantization.py::TestQuantizePT2E::test_simple_quantizer, test/test_quantization.py::TestQuantizePT2E::test_speed, test/test_quantization.py::TestQuantizePT2E::test_transform_for_annotation, test/test_quantization.py::TestQuantizePT2E::test_wo_annotate_conv_output_quantizer, test/test_quantization.py::TestQuantizePT2EAffineQuantization::test_channel_group_quantization, test/test_quantization.py::TestQuantizePT2EAffineQuantization::test_dynamic_affine_act_per_channel_weights, test/test_quantization.py::TestQuantizePT2EAffineQuantization::test_dynamic_per_tok_act_per_group_weights, test/test_quantization.py::TestPT2ERepresentation::test_add, test/test_quantization.py::TestPT2ERepresentation::test_add_relu, test/test_quantization.py::TestPT2ERepresentation::test_conv2d, test/test_quantization.py::TestPT2ERepresentation::test_dynamic_linear, test/test_quantization.py::TestPT2ERepresentation::test_maxpool2d, test/test_quantization.py::TestPT2ERepresentation::test_qdq, test/test_quantization.py::TestPT2ERepresentation::test_qdq_per_channel, test/test_quantization.py::TestPT2ERepresentation::test_static_linear, test/test_quantization.py::TestXNNPACKQuantizer::test_add_and_inplace_add, test/test_quantization.py::TestXNNPACKQuantizer::test_add_mul_long, test/test_quantization.py::TestXNNPACKQuantizer::test_add_mul_scalar, test/test_quantization.py::TestXNNPACKQuantizer::test_cat_same_node, test/test_quantization.py::TestXNNPACKQuantizer::test_conv1d, test/test_quantization.py::TestXNNPACKQuantizer::test_conv1d_with_conv2d, test/test_quantization.py::TestXNNPACKQuantizer::test_conv2d, test/test_quantization.py::TestXNNPACKQuantizer::test_conv_linear, test/test_quantization.py::TestXNNPACKQuantizer::test_conv_linear_no_permute, test/test_quantization.py::TestXNNPACKQuantizer::test_dynamic_linear, test/test_quantization.py::TestXNNPACKQuantizer::test_dynamic_linear_int4_weight, test/test_quantization.py::TestXNNPACKQuantizer::test_dynamic_linear_with_conv, test/test_quantization.py::TestXNNPACKQuantizer::test_gru, test/test_quantization.py::TestXNNPACKQuantizer::test_linear, test/test_quantization.py::TestXNNPACKQuantizer::test_linear_gru, test/test_quantization.py::TestXNNPACKQuantizer::test_linear_relu, test/test_quantization.py::TestXNNPACKQuantizer::test_linear_with_dynamic_shape, test/test_quantization.py::TestXNNPACKQuantizer::test_mul_and_inplace_mul, test/test_quantization.py::TestXNNPACKQuantizer::test_mul_float32_max, test/test_quantization.py::TestXNNPACKQuantizer::test_obs_sharing_ops, test/test_quantization.py::TestXNNPACKQuantizer::test_propagate_annotation, test/test_quantization.py::TestXNNPACKQuantizer::test_qat_dynamic_linear, test/test_quantization.py::TestXNNPACKQuantizer::test_set_module_name, test/test_quantization.py::TestXNNPACKQuantizer::test_set_module_name_with_underscores, test/test_quantization.py::TestXNNPACKQuantizer::test_set_module_type, test/test_quantization.py::TestXNNPACKQuantizer::test_set_module_type_case_2, test/test_quantization.py::TestXNNPACKQuantizerModels::test_resnet18, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_adaptive_avg_pool2d_recipe, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_attention_block, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_avg_pool2d_recipe, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_cat_recipe, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_cat_recipe_same_inputs, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_cat_recipe_single_input, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_conv2d, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_conv2d_binary, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_conv2d_binary2, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_conv2d_binary_unary, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_conv2d_serials_binary_unary, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_conv2d_unary, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_dynamic_quant_linear, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_filter_conv2d_recipe, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_filter_linear_recipe, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_filter_maxpool2d_recipe, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_flatten_recipe, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_flatten_recipe2, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_linear, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_linear_binary, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_linear_binary2, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_linear_binary_dynamic, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_linear_binary_dynamic_qat, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_linear_binary_qat, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_linear_binary_unary, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_linear_binary_unary_dynamic, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_linear_binary_unary_dynamic_qat, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_linear_binary_unary_qat, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_linear_binary_unary_serials, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_linear_dynamic_fp16, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_linear_unary, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_linear_unary_dynamic, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_linear_unary_dynamic_qat, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_linear_unary_qat, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_lowering_to_x86, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_maxpool2d_recipe, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_qat_conv2d, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_qat_conv2d_binary, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_qat_conv2d_binary2, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_qat_conv2d_binary_unary, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_qat_conv2d_unary, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_qat_dynamic_quant_linear, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_set_module_name_and_module_type_case1, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_set_module_name_and_module_type_case2, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_set_module_name_and_module_type_with_mixed_configs, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_set_module_name_qconfig, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_set_module_name_qconfig_for_dynamic_quant, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_set_module_name_qconfig_with_underscores, test/test_quantization.py::TestQuantizePT2EX86Inductor::test_set_module_name_with_mixed_configs, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_fold_bn_erases_add_node, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_fold_bn_erases_bn_node, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_conv_bn_bias_derived_qspec, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_conv_bn_fusion, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_conv_bn_fusion_cuda, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_conv_bn_fusion_literal_args, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_conv_bn_fusion_no_conv_bias, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_conv_bn_per_channel_weight_bias, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_conv_bn_relu_fusion, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_conv_bn_relu_fusion_cuda, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_conv_bn_relu_fusion_no_conv_bias, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_conv_no_bias, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_conv_transpose_bn, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_conv_transpose_bn_relu, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_inplace_add_relu, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_per_channel_weight_custom_dtype, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_preserve_source_fn_stack, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn1d::test_qat_update_shared_qspec, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_fold_bn_erases_add_node, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_fold_bn_erases_bn_node, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_qat_conv_bn_bias_derived_qspec, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_qat_conv_bn_fusion, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_qat_conv_bn_fusion_cuda, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_qat_conv_bn_fusion_literal_args, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_qat_conv_bn_fusion_no_conv_bias, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_qat_conv_bn_per_channel_weight_bias, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_qat_conv_bn_relu_fusion, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_qat_conv_bn_relu_fusion_cuda, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_qat_conv_bn_relu_fusion_no_conv_bias, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_qat_conv_no_bias, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_qat_conv_transpose_bn, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_qat_conv_transpose_bn_relu, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_qat_inplace_add_relu, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_qat_per_channel_weight_custom_dtype, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_qat_preserve_source_fn_stack, test/test_quantization.py::TestQuantizePT2EQAT_ConvBn2d::test_qat_update_shared_qspec, test/test_quantization.py::TestQuantizePT2EQATModels::test_qat_mobilenet_v2, test/test_quantization.py::TestQuantizePT2EQATModels::test_qat_resnet18, test/test_quantization.py::TestFXGraphMatcher::test_dict_return_type, test/test_quantization.py::TestFXGraphMatcher::test_matching_failure_node_count, test/test_quantization.py::TestFXGraphMatcher::test_matching_failure_node_type, test/test_quantization.py::TestFXGraphMatcher::test_methods, test/test_quantization.py::TestFXGraphMatcher::test_nodes_before_cat, test/test_quantization.py::TestFXGraphMatcher::test_nodes_with_equal_types_get_matched, test/test_quantization.py::TestFXGraphMatcher::test_op_relationship_mapping, test/test_quantization.py::TestFXGraphMatcher::test_results_order, test/test_quantization.py::TestFXGraphMatcher::test_simple_fun, test/test_quantization.py::TestFXGraphMatcher::test_simple_fusion, test/test_quantization.py::TestFXGraphMatcher::test_simple_mod, test/test_quantization.py::TestFXGraphMatcher::test_simple_mod_multi, test/test_quantization.py::TestFXGraphMatcher::test_simple_tensor_ops, test/test_quantization.py::TestFXGraphMatcher::test_user_defined_function, test/test_quantization.py::TestFXGraphMatcherModels::test_mobilenet_v2, test/test_quantization.py::TestFXGraphMatcherModels::test_mobilenet_v2_qat, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_add_loggers_cuda, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_add_mul_inputs_activations, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_add_shadow_loggers_cuda, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_add_shadow_loggers_fun_ptq, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_add_shadow_loggers_fun_qat, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_add_shadow_loggers_meth_ptq, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_add_shadow_loggers_mod_ptq, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_add_shadow_loggers_mod_qat, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_extend_logger_results_with_comparison, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_extract_weights_conv_fun_ptq, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_extract_weights_conv_fun_qat, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_extract_weights_cuda, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_extract_weights_dynamic, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_extract_weights_fqn, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_extract_weights_linear_fun_ptq, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_extract_weights_linear_fun_qat, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_extract_weights_mod_ptq, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_extract_weights_mod_qat, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_fp16_shadows_fp32, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_int8_shadows_fp32_coverage, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_int8_shadows_fp32_simple, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_int8_shadows_int8_fun, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_int8_shadows_int8_mod, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_layer_names, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_linear_fp16_activations, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_linear_fp16_shadow_activations, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_linear_fp16_vs_linear_fp16_shadow_activations, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_linear_fp16_weights, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_linear_kwargs_shadow, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_loggers_preserve_qat_numerics, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_logging_inputs, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_match_activations_fqn, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_match_activations_fun_ptq, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_match_activations_fun_qat, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_match_activations_meth_ptq, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_match_activations_mod_ptq, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_match_activations_mod_qat, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_mul_add_cat_stack_skips_shadowing, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_op_io_dtype_coverage, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_op_with_either_fp32_or_int8_input, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_op_with_only_kwargs_skips_shadowing, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_ops_with_same_fp32_and_int8_signature, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_shadow_activations_fqn, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_shadow_loggers_preserve_qat_numerics, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_unsupported_op_copy_skips_shadowing, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_user_defined_function, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_user_module, test/test_quantization.py::TestFXNumericSuiteCoreAPIs::test_user_module_scriptable, test/test_quantization.py::TestFXNumericSuiteNShadows::test_add_loggers_conv_bn_relu_fusion_fp32, test/test_quantization.py::TestFXNumericSuiteNShadows::test_add_loggers_conv_bn_relu_fusion_quant, test/test_quantization.py::TestFXNumericSuiteNShadows::test_add_loggers_functions, test/test_quantization.py::TestFXNumericSuiteNShadows::test_add_loggers_linear_mod_fp32_fp32, test/test_quantization.py::TestFXNumericSuiteNShadows::test_add_loggers_linear_mod_fp32_quant, test/test_quantization.py::TestFXNumericSuiteNShadows::test_add_loggers_linear_mod_quant_fp32, test/test_quantization.py::TestFXNumericSuiteNShadows::test_add_loggers_linear_mod_quant_quant, test/test_quantization.py::TestFXNumericSuiteNShadows::test_add_loggers_mobilenet_v2, test/test_quantization.py::TestFXNumericSuiteNShadows::test_conv_bn_relu_mod, test/test_quantization.py::TestFXNumericSuiteNShadows::test_custom_functions_and_tracer, test/test_quantization.py::TestFXNumericSuiteNShadows::test_extract_weights_linear, test/test_quantization.py::TestFXNumericSuiteNShadows::test_functions, test/test_quantization.py::TestFXNumericSuiteNShadows::test_linear_mod, test/test_quantization.py::TestFXNumericSuiteNShadows::test_linear_relu_mod, test/test_quantization.py::TestFXNumericSuiteNShadows::test_logger_enabled_and_save_activations_flags, test/test_quantization.py::TestFXNumericSuiteNShadows::test_mobilenet_v2, test/test_quantization.py::TestFXNumericSuiteNShadows::test_partial_qconfig_mapping, test/test_quantization.py::TestFXNumericSuiteNShadows::test_qconfig_multi_mapping_deduplication, test/test_quantization.py::TestFXNumericSuiteNShadows::test_qconfig_multi_mapping_end_to_end, test/test_quantization.py::TestFXNumericSuiteNShadows::test_qconfig_multi_mapping_from_list, test/test_quantization.py::TestFXNumericSuiteNShadows::test_qconfig_multi_mapping_insert_padding, test/test_quantization.py::TestFXNumericSuiteNShadows::test_qconfig_multi_mapping_ordering, test/test_quantization.py::TestFXNumericSuiteNShadows::test_qconfig_multi_mapping_repr, test/test_quantization.py::TestFXNumericSuiteNShadows::test_qconfig_multi_mapping_retroactive_padding, test/test_quantization.py::TestFXNumericSuiteCoreAPIsModels::test_compare_activations_conv, test/test_quantization.py::TestFXNumericSuiteCoreAPIsModels::test_compare_activations_linear, test/test_quantization.py::TestFXNumericSuiteCoreAPIsModels::test_compare_activations_lstm_dynamic, test/test_quantization.py::TestFXNumericSuiteCoreAPIsModels::test_compare_shadow_activations_conv, test/test_quantization.py::TestFXNumericSuiteCoreAPIsModels::test_compare_shadow_activations_linear, test/test_quantization.py::TestFXNumericSuiteCoreAPIsModels::test_compare_shadow_activations_lstm_dynamic, test/test_quantization.py::TestFXNumericSuiteCoreAPIsModels::test_compare_weights_conv, test/test_quantization.py::TestFXNumericSuiteCoreAPIsModels::test_compare_weights_linear, test/test_quantization.py::TestFXNumericSuiteCoreAPIsModels::test_compare_weights_lstm_dynamic, test/test_quantization.py::TestFXNumericSuiteCoreAPIsModels::test_mobilenet_v2, test/test_quantization.py::TestFXNumericSuiteCoreAPIsModels::test_resnet18, test/test_quantization.py::TestFXNumericSuiteCoreAPIsModels::test_sparsenn_compare_activations, test/test_quantization.py::TestFXNumericSuiteCoreAPIsModels::test_sparsenn_shadow, test/test_quantization.py::TestFxModelReportDetector::test_conv_sub_class_considered, test/test_quantization.py::TestFxModelReportDetector::test_fusion_layer_in_sequential, test/test_quantization.py::TestFxModelReportDetector::test_multi_linear_model_without_per_channel, test/test_quantization.py::TestFxModelReportDetector::test_multiple_q_config_options, test/test_quantization.py::TestFxModelReportDetector::test_qat_aware_model_example, test/test_quantization.py::TestFxModelReportDetector::test_sequential_model_format, test/test_quantization.py::TestFxModelReportDetector::test_simple_conv, test/test_quantization.py::TestFxModelReportObserver::test_observer_after_relu, test/test_quantization.py::TestFxModelReportObserver::test_random_epochs_and_batches, test/test_quantization.py::TestFxModelReportObserver::test_single_batch_of_ones, test/test_quantization.py::TestFxModelReportObserver::test_zero_tensor_errors, test/test_quantization.py::TestFxModelReportDetectDynamicStatic::test_nested_detection_case, test/test_quantization.py::TestFxModelReportClass::test_constructor, test/test_quantization.py::TestFxModelReportClass::test_equalization_mapping_generation, test/test_quantization.py::TestFxModelReportClass::test_generate_report, test/test_quantization.py::TestFxModelReportClass::test_generate_visualizer, test/test_quantization.py::TestFxModelReportClass::test_prepare_model_callibration, test/test_quantization.py::TestFxModelReportClass::test_qconfig_mapping_generation, test/test_quantization.py::TestFxDetectInputWeightEqualization::test_input_weight_equalization_determine_points, test/test_quantization.py::TestFxDetectInputWeightEqualization::test_input_weight_equalization_report_gen, test/test_quantization.py::TestFxDetectInputWeightEqualization::test_input_weight_equalization_report_gen_empty, test/test_quantization.py::TestFxDetectOutliers::test_all_outlier_report_gen, test/test_quantization.py::TestFxDetectOutliers::test_multiple_run_consistent_spike_outlier_report_gen, test/test_quantization.py::TestFxDetectOutliers::test_no_outlier_report_gen, test/test_quantization.py::TestFxDetectOutliers::test_outlier_detection_determine_points, test/test_quantization.py::TestFxModelReportVisualizer::test_generate_tables_match_with_report, test/test_quantization.py::TestFxModelReportVisualizer::test_generate_tables_no_match, test/test_quantization.py::TestFxModelReportVisualizer::test_generate_tables_single_feat_match, test/test_quantization.py::TestFxModelReportVisualizer::test_get_modules_and_features, test/test_quantization.py::TestEqualizeFx::test_input_weight_eq_observer, test/test_quantization.py::TestEqualizeFx::test_input_weight_equalization_activation_values, test/test_quantization.py::TestEqualizeFx::test_input_weight_equalization_branching, test/test_quantization.py::TestEqualizeFx::test_input_weight_equalization_convert, test/test_quantization.py::TestEqualizeFx::test_input_weight_equalization_equalization_scales, test/test_quantization.py::TestEqualizeFx::test_input_weight_equalization_graphs, test/test_quantization.py::TestEqualizeFx::test_input_weight_equalization_prepare, test/test_quantization.py::TestEqualizeFx::test_input_weight_equalization_results, test/test_quantization.py::TestEqualizeFx::test_input_weight_equalization_weights_bias, test/test_quantization.py::TestEqualizeFx::test_selective_equalization, test/test_quantization.py::TestSerialization::test_conv2d, test/test_quantization.py::TestSerialization::test_conv2d_graph, test/test_quantization.py::TestSerialization::test_conv2d_graph_v2, test/test_quantization.py::TestSerialization::test_conv2d_graph_v3, test/test_quantization.py::TestSerialization::test_conv2d_nobias, test/test_quantization.py::TestSerialization::test_conv2d_nobias_graph, test/test_quantization.py::TestSerialization::test_conv2d_nobias_graph_v2, test/test_quantization.py::TestSerialization::test_conv2d_nobias_graph_v3, test/test_quantization.py::TestSerialization::test_conv2d_relu, test/test_quantization.py::TestSerialization::test_conv3d, test/test_quantization.py::TestSerialization::test_conv3d_relu, test/test_quantization.py::TestSerialization::test_default_qat_qconfig, test/test_quantization.py::TestSerialization::test_linear, test/test_quantization.py::TestSerialization::test_linear_dynamic, test/test_quantization.py::TestSerialization::test_linear_relu, test/test_quantization.py::TestSerialization::test_linear_relu_package_quantization_transforms, test/test_quantization.py::TestSerialization::test_lstm, test/test_quantization.py::TestSerialization::test_per_channel_observer, test/test_quantization.py::TestSerialization::test_per_tensor_observer, test/test_quantization.py::TestQuantizeJit::test_conv, test/test_quantization.py::TestQuantizeJit::test_conv_bn, test/test_quantization.py::TestQuantizeJit::test_conv_transpose, test/test_quantization.py::TestQuantizeJit::test_linear_dynamic_fp16, test/test_quantization.py::TestQuantizeJit::test_nested, test/test_quantization.py::TestQuantizeJit::test_observer_with_ignored_function, test/test_quantization.py::TestQuantizeJit::test_single_linear, test/test_quantization.py::TestQuantizeJit::test_single_linear_dynamic, test/test_quantization.py::TestQuantizeJit::test_skip_quant, test/test_quantization.py::TestQuantizeJitPasses::test_conv_trace, test/test_quantization.py::TestQuantizeJitPasses::test_convtranspose_trace, test/test_quantization.py::TestQuantizeJitPasses::test_dedup_module_uses, test/test_quantization.py::TestQuantizeJitPasses::test_finalize_debug, test/test_quantization.py::TestQuantizeJitPasses::test_finalize_for_linear, test/test_quantization.py::TestQuantizeJitPasses::test_foldbn_complex_cases, test/test_quantization.py::TestQuantizeJitPasses::test_foldbn_in_submodule, test/test_quantization.py::TestQuantizeJitPasses::test_foldbn_no_fusion, test/test_quantization.py::TestQuantizeJitPasses::test_foldbn_shared_classtype, test/test_quantization.py::TestQuantizeJitPasses::test_foldbn_trivial, test/test_quantization.py::TestQuantizeJitPasses::test_foldbn_trivial_nobias, test/test_quantization.py::TestQuantizeJitPasses::test_fuse_linear, test/test_quantization.py::TestQuantizeJitPasses::test_inplace_option, test/test_quantization.py::TestQuantizeJitPasses::test_insert_observers, test/test_quantization.py::TestQuantizeJitPasses::test_insert_observers_child_qconfig, test/test_quantization.py::TestQuantizeJitPasses::test_insert_observers_for_general_ops, test/test_quantization.py::TestQuantizeJitPasses::test_insert_observers_for_if, test/test_quantization.py::TestQuantizeJitPasses::test_insert_observers_for_if_consistent_observation, test/test_quantization.py::TestQuantizeJitPasses::test_insert_observers_for_nested_if, test/test_quantization.py::TestQuantizeJitPasses::test_insert_observers_for_reused_weight, test/test_quantization.py::TestQuantizeJitPasses::test_insert_observers_interface, test/test_quantization.py::TestQuantizeJitPasses::test_insert_observers_interface_unshare_type, test/test_quantization.py::TestQuantizeJitPasses::test_insert_observers_propagate_observed, test/test_quantization.py::TestQuantizeJitPasses::test_insert_observers_propagate_observed_for_function, test/test_quantization.py::TestQuantizeJitPasses::test_insert_observers_propagate_observed_in_submodule, test/test_quantization.py::TestQuantizeJitPasses::test_insert_observers_shared_class_type, test/test_quantization.py::TestQuantizeJitPasses::test_insert_observers_skip_values, test/test_quantization.py::TestQuantizeJitPasses::test_insert_observers_weight_dtype, test/test_quantization.py::TestQuantizeJitPasses::test_insert_quant_dequant, test/test_quantization.py::TestQuantizeJitPasses::test_insert_quant_dequant_shared_class_type, test/test_quantization.py::TestQuantizeJitPasses::test_interface_with_fork, test/test_quantization.py::TestQuantizeJitPasses::test_module_list, test/test_quantization.py::TestQuantizeJitPasses::test_quantize_fork_wait, test/test_quantization.py::TestQuantizeJitPasses::test_replicate_dequant_same_value, test/test_quantization.py::TestQuantizeJitPasses::test_replicate_dequantize, test/test_quantization.py::TestQuantizeJitPasses::test_replicate_dequantize_in_block, test/test_quantization.py::TestQuantizeJitPasses::test_replicate_quantize_for_if, test/test_quantization.py::TestQuantizeJitPasses::test_skip_dequant_constant_prop, test/test_quantization.py::TestQuantizeJitPasses::test_swap_functional_linear, test/test_quantization.py::TestQuantizeJitOps::test_cat_linear, test/test_quantization.py::TestQuantizeJitOps::test_clamp, test/test_quantization.py::TestQuantizeJitOps::test_conv_with_benchmark_flag, test/test_quantization.py::TestQuantizeJitOps::test_dequantize_tuple, test/test_quantization.py::TestQuantizeJitOps::test_elu, test/test_quantization.py::TestQuantizeJitOps::test_general_shape_ops, test/test_quantization.py::TestQuantizeJitOps::test_general_value_ops, test/test_quantization.py::TestQuantizeJitOps::test_group_norm, test/test_quantization.py::TestQuantizeJitOps::test_hardswish, test/test_quantization.py::TestQuantizeJitOps::test_instance_norm, test/test_quantization.py::TestQuantizeJitOps::test_layer_norm, test/test_quantization.py::TestQuantizeJitOps::test_linear, test/test_quantization.py::TestQuantizeJitOps::test_qbatch_norm, test/test_quantization.py::TestQuantizeJitOps::test_qbatch_norm_relu_BNFuncInplaceRelu, test/test_quantization.py::TestQuantizeJitOps::test_qbatch_norm_relu_BNFuncRelu, test/test_quantization.py::TestQuantizeJitOps::test_qbatch_norm_relu_BNRelu, test/test_quantization.py::TestQuantizeJitOps::test_quantized_add, test/test_quantization.py::TestQuantizeJitOps::test_quantized_add_alpha, test/test_quantization.py::TestQuantizeJitOps::test_quantized_add_relu, test/test_quantization.py::TestQuantizeJitOps::test_quantized_add_relu_alpha, test/test_quantization.py::TestQuantizeJitOps::test_quantized_add_scalar, test/test_quantization.py::TestQuantizeJitOps::test_quantized_add_scalar_relu, test/test_quantization.py::TestQuantizeJitOps::test_quantized_cat, test/test_quantization.py::TestQuantizeJitOps::test_quantized_conv, test/test_quantization.py::TestQuantizeJitOps::test_quantized_conv_relu, test/test_quantization.py::TestQuantizeJitOps::test_quantized_mul, test/test_quantization.py::TestQuantizeJitOps::test_quantized_mul_relu, test/test_quantization.py::TestQuantizeJitOps::test_quantized_mul_scalar, test/test_quantization.py::TestQuantizeJitOps::test_quantized_mul_scalar_relu, test/test_quantization.py::TestQuantizeDynamicJitPasses::test_convert_dynamic_fp16, test/test_quantization.py::TestQuantizeDynamicJitPasses::test_dynamic_multi_op, test/test_quantization.py::TestQuantizeDynamicJitPasses::test_dynamic_quant_multi_uses, test/test_quantization.py::TestQuantizeDynamicJitPasses::test_dynamic_shared_weights, test/test_quantization.py::TestQuantizeDynamicJitPasses::test_dynamic_weight_observer, test/test_quantization.py::TestQuantizeDynamicJitPasses::test_dynamic_with_if, test/test_quantization.py::TestQuantizeDynamicJitPasses::test_insert_quant_dequant_linear_dynamic, test/test_quantization.py::TestQuantizeDynamicJitPasses::test_prepare_dynamic, test/test_quantization.py::TestQuantizeDynamicJitPasses::test_prepare_dynamic_child_qconfig, test/test_quantization.py::TestQuantizeDynamicJitPasses::test_quantize_dynamic_fp16, test/test_quantization.py::TestQuantizeDynamicJitOps::test_embedding_bag, test/test_quantization.py::TestQuantizeDynamicJitOps::test_embedding_bag_padding_idx_error, test/test_quantization.py::TestQuantizeDynamicJitOps::test_linear, test/test_quantization.py::TestFusionPasses::test_quantized_add_relu_fusion, test/test_quantization.py::TestDeprecatedJitQuantized::test_erase_class_tensor_shapes, test/test_quantization.py::TestDeprecatedJitQuantized::test_rnn_cell_quantized, test/test_quantization.py::TestDeprecatedJitQuantized::test_rnn_quantized, test/test_quantization.py::TestAOMigrationQuantization::test_function_import_fake_quantize, test/test_quantization.py::TestAOMigrationQuantization::test_function_import_fuse_modules, test/test_quantization.py::TestAOMigrationQuantization::test_function_import_fuser_method_mappings, test/test_quantization.py::TestAOMigrationQuantization::test_function_import_observer, test/test_quantization.py::TestAOMigrationQuantization::test_function_import_qconfig, test/test_quantization.py::TestAOMigrationQuantization::test_function_import_quant_type, test/test_quantization.py::TestAOMigrationQuantization::test_function_import_quantization_mappings, test/test_quantization.py::TestAOMigrationQuantization::test_function_import_quantize, test/test_quantization.py::TestAOMigrationQuantization::test_function_import_quantize_jit, test/test_quantization.py::TestAOMigrationQuantization::test_function_import_stubs, test/test_quantization.py::TestAOMigrationQuantization::test_function_import_utils, test/test_quantization.py::TestAOMigrationNNQuantized::test_functional_import, test/test_quantization.py::TestAOMigrationNNQuantized::test_import_nn_qat_conv, test/test_quantization.py::TestAOMigrationNNQuantized::test_import_nn_qat_dynamic_linear, test/test_quantization.py::TestAOMigrationNNQuantized::test_import_nn_qat_embedding_ops, test/test_quantization.py::TestAOMigrationNNQuantized::test_import_nn_qat_linear, test/test_quantization.py::TestAOMigrationNNQuantized::test_import_nn_quantizable_activation, test/test_quantization.py::TestAOMigrationNNQuantized::test_import_nn_quantizable_rnn, test/test_quantization.py::TestAOMigrationNNQuantized::test_import_nn_quantized_dynamic_import, test/test_quantization.py::TestAOMigrationNNQuantized::test_modules_activation, test/test_quantization.py::TestAOMigrationNNQuantized::test_modules_batchnorm, test/test_quantization.py::TestAOMigrationNNQuantized::test_modules_conv, test/test_quantization.py::TestAOMigrationNNQuantized::test_modules_dropout, test/test_quantization.py::TestAOMigrationNNQuantized::test_modules_embedding_ops, test/test_quantization.py::TestAOMigrationNNQuantized::test_modules_functional_modules, test/test_quantization.py::TestAOMigrationNNQuantized::test_modules_import, test/test_quantization.py::TestAOMigrationNNQuantized::test_modules_linear, test/test_quantization.py::TestAOMigrationNNQuantized::test_modules_normalization, test/test_quantization.py::TestAOMigrationNNQuantized::test_modules_utils, test/test_quantization.py::TestAOMigrationNNIntrinsic::test_modules_import_nn_intrinsic, test/test_quantization.py::TestAOMigrationNNIntrinsic::test_modules_import_nn_intrinsic_qat, test/test_quantization.py::TestAOMigrationNNIntrinsic::test_modules_import_nn_intrinsic_quantized, test/test_quantization.py::TestAOMigrationNNIntrinsic::test_modules_intrinsic_qat_conv_fused, test/test_quantization.py::TestAOMigrationNNIntrinsic::test_modules_intrinsic_qat_linear_fused, test/test_quantization.py::TestAOMigrationNNIntrinsic::test_modules_intrinsic_qat_linear_relu, test/test_quantization.py::TestAOMigrationNNIntrinsic::test_modules_intrinsic_quantized_bn_relu, test/test_quantization.py::TestAOMigrationNNIntrinsic::test_modules_intrinsic_quantized_conv_relu, test/test_quantization.py::TestAOMigrationNNIntrinsic::test_modules_intrinsic_quantized_linear_relu, test/test_quantization.py::TestAOMigrationNNIntrinsic::test_modules_nn_intrinsic_fused, test/test_quantization.py::TestAOMigrationNNIntrinsic::test_modules_no_import_nn_intrinsic_quantized_dynamic, test/test_quantization.py::TestAOMigrationQuantizationFx::test_function_import_fx, test/test_quantization.py::TestAOMigrationQuantizationFx::test_function_import_fx_convert, test/test_quantization.py::TestAOMigrationQuantizationFx::test_function_import_fx_equalize, test/test_quantization.py::TestAOMigrationQuantizationFx::test_function_import_fx_fuse, test/test_quantization.py::TestAOMigrationQuantizationFx::test_function_import_fx_fusion_patterns, test/test_quantization.py::TestAOMigrationQuantizationFx::test_function_import_fx_graph_module, test/test_quantization.py::TestAOMigrationQuantizationFx::test_function_import_fx_match_utils, test/test_quantization.py::TestAOMigrationQuantizationFx::test_function_import_fx_pattern_utils, test/test_quantization.py::TestAOMigrationQuantizationFx::test_function_import_fx_prepare, test/test_quantization.py::TestAOMigrationQuantizationFx::test_function_import_fx_quantization_patterns, test/test_quantization.py::TestAOMigrationQuantizationFx::test_function_import_fx_utils, test/test_quantization.py::TestAOMigrationQuantizationFx::test_function_import_quantize_fx, test/test_quantization.py::TestBitsCPU::test_cat_cpu, test/test_quantization.py::TestBitsCPU::test_subclass_cpu, test/test_quantization.py::TestBitsCPU::test_types_cpu, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_extremes_cpu_float8_e4m3fn, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_extremes_cpu_float8_e4m3fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_extremes_cpu_float8_e5m2, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_extremes_cpu_float8_e5m2fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_extremes_cpu_float8_e8m0fnu, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_rte_cpu_float8_e4m3fn, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_rte_cpu_float8_e4m3fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_rte_cpu_float8_e5m2, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_rte_cpu_float8_e5m2fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_rte_cpu_float8_e8m0fnu, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_soak_cpu_float8_e4m3fn, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_soak_cpu_float8_e4m3fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_soak_cpu_float8_e5m2, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_soak_cpu_float8_e5m2fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_soak_cpu_float8_e8m0fnu, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_subnormals_cpu_float8_e4m3fn, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_subnormals_cpu_float8_e4m3fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_subnormals_cpu_float8_e5m2, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_subnormals_cpu_float8_e5m2fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_cast_round_trip_subnormals_cpu_float8_e8m0fnu, test/test_quantization.py::TestFloat8DtypeCPU::test_cat_cpu_float8_e4m3fn, test/test_quantization.py::TestFloat8DtypeCPU::test_cat_cpu_float8_e4m3fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_cat_cpu_float8_e5m2, test/test_quantization.py::TestFloat8DtypeCPU::test_cat_cpu_float8_e5m2fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_cat_cpu_float8_e8m0fnu, test/test_quantization.py::TestFloat8DtypeCPU::test_creation_with_zeros_cpu_float8_e4m3fn, test/test_quantization.py::TestFloat8DtypeCPU::test_creation_with_zeros_cpu_float8_e4m3fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_creation_with_zeros_cpu_float8_e5m2, test/test_quantization.py::TestFloat8DtypeCPU::test_creation_with_zeros_cpu_float8_e5m2fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_creation_with_zeros_cpu_float8_e8m0fnu, test/test_quantization.py::TestFloat8DtypeCPU::test_empty_cpu_float8_e4m3fn, test/test_quantization.py::TestFloat8DtypeCPU::test_empty_cpu_float8_e4m3fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_empty_cpu_float8_e5m2, test/test_quantization.py::TestFloat8DtypeCPU::test_empty_cpu_float8_e5m2fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_empty_cpu_float8_e8m0fnu, test/test_quantization.py::TestFloat8DtypeCPU::test_finfo_cpu_float8_e4m3fn, test/test_quantization.py::TestFloat8DtypeCPU::test_finfo_cpu_float8_e4m3fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_finfo_cpu_float8_e5m2, test/test_quantization.py::TestFloat8DtypeCPU::test_finfo_cpu_float8_e5m2fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_finfo_cpu_float8_e8m0fnu, test/test_quantization.py::TestFloat8DtypeCPU::test_float8_e8m0fnu_rne_rounding_cpu, test/test_quantization.py::TestFloat8DtypeCPU::test_save_load_cpu_float8_e4m3fn, test/test_quantization.py::TestFloat8DtypeCPU::test_save_load_cpu_float8_e4m3fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_save_load_cpu_float8_e5m2, test/test_quantization.py::TestFloat8DtypeCPU::test_save_load_cpu_float8_e5m2fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_save_load_cpu_float8_e8m0fnu, test/test_quantization.py::TestFloat8DtypeCPU::test_special_numbers_cpu_float8_e4m3fn, test/test_quantization.py::TestFloat8DtypeCPU::test_special_numbers_cpu_float8_e4m3fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_special_numbers_cpu_float8_e5m2, test/test_quantization.py::TestFloat8DtypeCPU::test_special_numbers_cpu_float8_e5m2fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_special_numbers_cpu_float8_e8m0fnu, test/test_quantization.py::TestFloat8DtypeCPU::test_to_string_cpu_float8_e4m3fn, test/test_quantization.py::TestFloat8DtypeCPU::test_to_string_cpu_float8_e4m3fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_to_string_cpu_float8_e5m2, test/test_quantization.py::TestFloat8DtypeCPU::test_to_string_cpu_float8_e5m2fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_to_string_cpu_float8_e8m0fnu, test/test_quantization.py::TestFloat8DtypeCPU::test_type_promotion_fails_cpu_float8_e4m3fn, test/test_quantization.py::TestFloat8DtypeCPU::test_type_promotion_fails_cpu_float8_e4m3fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_type_promotion_fails_cpu_float8_e5m2, test/test_quantization.py::TestFloat8DtypeCPU::test_type_promotion_fails_cpu_float8_e5m2fnuz, test/test_quantization.py::TestFloat8DtypeCPU::test_type_promotion_fails_cpu_float8_e8m0fnu, test/test_quantization.py::TestFloat8DtypeCPUOnlyCPU::test_mul_cpu_float8_e4m3fn, test/test_quantization.py::TestFloat8DtypeCPUOnlyCPU::test_mul_cpu_float8_e5m2, test/test_quantization.py::TestFloat8DtypeCPUOnlyCPU::test_mul_cpu_float8_e8m0fnu, test/test_quantization.py::TestFloat8DtypeCPUOnlyCPU::test_pt2_traceable_aot_eager_cpu_float8_e4m3fn, test/test_quantization.py::TestFloat8DtypeCPUOnlyCPU::test_pt2_traceable_aot_eager_cpu_float8_e5m2, test/test_quantization.py::TestFloat8DtypeCPUOnlyCPU::test_pt2_traceable_aot_eager_cpu_float8_e8m0fnu 2025-08-14T22:27:47.9093422Z 2025-08-14T22:27:48.1002370Z Running test_package 1/1 ... [2025-08-14 22:27:48.099555] 2025-08-14T22:27:48.1002864Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:27:48.1009668Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_package.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:27:48.099555] 2025-08-14T22:27:53.3435859Z Running functorch/test_rearrange 1/1 ... [2025-08-14 22:27:53.329666] 2025-08-14T22:27:53.3436400Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:27:53.3442807Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_rearrange.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:27:53.329666] 2025-08-14T22:27:54.8715881Z 2025-08-14T22:27:54.8716846Z test_package 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_package_1.1_77b30b13eb939c8c_.log 2025-08-14T22:27:54.8755780Z Running 137 items in this shard: test/test_package.py::TestAnalyze::test_trace_dependencies, test/test_package.py::TestDependencyAPI::test_allow_empty_with_error, test/test_package.py::TestDependencyAPI::test_broken_dependency, test/test_package.py::TestDependencyAPI::test_deny, test/test_package.py::TestDependencyAPI::test_deny_glob, test/test_package.py::TestDependencyAPI::test_extern, test/test_package.py::TestDependencyAPI::test_extern_glob, test/test_package.py::TestDependencyAPI::test_extern_glob_allow_empty, test/test_package.py::TestDependencyAPI::test_externing_c_extension, test/test_package.py::TestDependencyAPI::test_implicit_intern, test/test_package.py::TestDependencyAPI::test_intern_error, test/test_package.py::TestDependencyAPI::test_invalid_import, test/test_package.py::TestDependencyAPI::test_mock, test/test_package.py::TestDependencyAPI::test_mock_glob, test/test_package.py::TestDependencyAPI::test_mock_glob_allow_empty, test/test_package.py::TestDependencyAPI::test_pickle_mocked, test/test_package.py::TestDependencyAPI::test_pickle_mocked_all, test/test_package.py::TestDependencyAPI::test_repackage_mocked_module, test/test_package.py::TestDependencyHooks::test_extern_and_mock_hook, test/test_package.py::TestDependencyHooks::test_multiple_extern_hooks, test/test_package.py::TestDependencyHooks::test_multiple_mock_hooks, test/test_package.py::TestDependencyHooks::test_remove_hooks, test/test_package.py::TestDependencyHooks::test_single_hook, test/test_package.py::TestDiGraph::test_all_paths, test/test_package.py::TestDiGraph::test_contains, test/test_package.py::TestDiGraph::test_contains_non_hashable, test/test_package.py::TestDiGraph::test_edges, test/test_package.py::TestDiGraph::test_forward_closure, test/test_package.py::TestDiGraph::test_iter, test/test_package.py::TestDiGraph::test_node_attr_update, test/test_package.py::TestDiGraph::test_node_attrs, test/test_package.py::TestDiGraph::test_predecessor_not_in_graph, test/test_package.py::TestDiGraph::test_predecessors, test/test_package.py::TestDiGraph::test_successor_not_in_graph, test/test_package.py::TestDiGraph::test_successors, test/test_package.py::DirectoryReaderTest::test_importer_access, test/test_package.py::DirectoryReaderTest::test_loading_has_record, test/test_package.py::DirectoryReaderTest::test_loading_module, test/test_package.py::DirectoryReaderTest::test_loading_pickle, test/test_package.py::DirectoryReaderTest::test_package_resource_access, test/test_package.py::DirectoryReaderTest::test_resource_access_by_path, test/test_package.py::DirectoryReaderTest::test_resource_reader, test/test_package.py::DirectoryReaderTest::test_scriptobject_failure_message, test/test_package.py::TestGlobGroup::test_exclude, test/test_package.py::TestGlobGroup::test_exclude_from_all, test/test_package.py::TestGlobGroup::test_invalid_raw, test/test_package.py::TestGlobGroup::test_list_include_exclude, test/test_package.py::TestGlobGroup::test_one_star, test/test_package.py::TestGlobGroup::test_one_star_middle, test/test_package.py::TestGlobGroup::test_one_star_multiple_in_component, test/test_package.py::TestGlobGroup::test_one_star_partial, test/test_package.py::TestGlobGroup::test_one_star_partial_extension, test/test_package.py::TestGlobGroup::test_raw_two_star, test/test_package.py::TestGlobGroup::test_two_star, test/test_package.py::TestGlobGroup::test_two_star_end, test/test_package.py::TestGlobGroup::test_two_star_middle, test/test_package.py::TestGlobGroup::test_two_star_multiple, test/test_package.py::TestImporter::test_ordered_importer_basic, test/test_package.py::TestImporter::test_ordered_importer_whichmodule, test/test_package.py::TestImporter::test_package_importer_whichmodule_no_dunder_module, test/test_package.py::TestImporter::test_single_ordered_importer, test/test_package.py::TestImporter::test_sys_importer, test/test_package.py::TestImporter::test_sys_importer_roundtrip, test/test_package.py::TestLoadBCPackages::test_load_bc_packages_fx_module, test/test_package.py::TestLoadBCPackages::test_load_bc_packages_nn_module, test/test_package.py::TestLoadBCPackages::test_load_bc_packages_torchscript_module, test/test_package.py::TestMangling::test_demangle_base, test/test_package.py::TestMangling::test_demangler_multiple_manglers, test/test_package.py::TestMangling::test_is_mangled, test/test_package.py::TestMangling::test_mangle_empty_errors, test/test_package.py::TestMangling::test_mangle_prefix, test/test_package.py::TestMangling::test_mangler_is_consistent, test/test_package.py::TestMangling::test_package_mangler, test/test_package.py::TestMangling::test_roundtrip_mangling, test/test_package.py::TestMangling::test_unique_manglers, test/test_package.py::TestMangling::test_unique_module_names, test/test_package.py::TestMisc::test_dunder_package_present, test/test_package.py::TestMisc::test_dunder_package_works_from_package, test/test_package.py::TestMisc::test_exporter_content_lists, test/test_package.py::TestMisc::test_file_structure, test/test_package.py::TestMisc::test_file_structure_has_file, test/test_package.py::TestMisc::test_inspect_class, test/test_package.py::TestMisc::test_is_from_package, test/test_package.py::TestMisc::test_load_python_version_from_package, test/test_package.py::TestMisc::test_loaders_that_remap_files_work_ok, test/test_package.py::TestMisc::test_python_version, test/test_package.py::TestMisc::test_std_lib_sys_hackery_checks, test/test_package.py::ModelTest::test_model_save, test/test_package.py::ModelTest::test_resnet, test/test_package.py::ModelTest::test_script_resnet, test/test_package.py::TestPackageFX::test_package_fx_custom_tracer, test/test_package.py::TestPackageFX::test_package_fx_package, test/test_package.py::TestPackageFX::test_package_fx_simple, test/test_package.py::TestPackageFX::test_package_fx_with_imports, test/test_package.py::TestPackageFX::test_package_fx_wrap, test/test_package.py::TestPackageFX::test_package_gm_preserve_stack_trace, test/test_package.py::TestPackageFX::test_package_then_fx, test/test_package.py::TestPackageScript::test_different_package_interface, test/test_package.py::TestPackageScript::test_different_package_script_class, test/test_package.py::TestPackageScript::test_load_shared_scriptmodules, test/test_package.py::TestPackageScript::test_load_shared_tensors, test/test_package.py::TestPackageScript::test_load_shared_tensors_repackaged, test/test_package.py::TestPackageScript::test_mixing_packaged_and_inline_modules, test/test_package.py::TestPackageScript::test_mixing_packaged_and_inline_modules_shared_code, test/test_package.py::TestPackageScript::test_package_interface, test/test_package.py::TestPackageScript::test_package_script_class, test/test_package.py::TestPackageScript::test_package_script_class_referencing_self, test/test_package.py::TestPackageScript::test_save_eager_mods_sharing_scriptmodule, test/test_package.py::TestPackageScript::test_save_independent_scriptmodules, test/test_package.py::TestPackageScript::test_save_repeat_scriptmodules, test/test_package.py::TestPackageScript::test_save_scriptmodule, test/test_package.py::TestPackageScript::test_save_scriptmodule_file, test/test_package.py::TestPackageScript::test_save_scriptmodule_only_necessary_code, test/test_package.py::TestPackageScript::test_save_scriptmodule_with_submods, test/test_package.py::TestPackageScript::test_save_scriptmodules_in_container, test/test_package.py::TestPackageScript::test_save_scriptmodules_submod_redefinition, test/test_package.py::TestPackageScript::test_save_shared_tensors, test/test_package.py::TestPackageScript::test_saving_and_scripting_packaged_mod, test/test_package.py::TestPackageScript::test_scriptmodules_repeat_save, test/test_package.py::TestPackageScript::test_tensor_sharing_pickle, test/test_package.py::TestRepackage::test_repackage_import_indirectly_via_parent_module, test/test_package.py::TestResources::test_importer_access, test/test_package.py::TestResources::test_package_resource_access, test/test_package.py::TestResources::test_resource_access_by_path, test/test_package.py::TestResources::test_resource_reader, test/test_package.py::TestSaveLoad::test_bad_dunder_imports, test/test_package.py::TestSaveLoad::test_dunder_imports, test/test_package.py::TestSaveLoad::test_exporting_mismatched_code, test/test_package.py::TestSaveLoad::test_pickle, test/test_package.py::TestSaveLoad::test_pickle_long_name_with_protocol_4, test/test_package.py::TestSaveLoad::test_save_imported_module, test/test_package.py::TestSaveLoad::test_save_imported_module_using_package_importer, test/test_package.py::TestSaveLoad::test_save_load_fp8, test/test_package.py::TestSaveLoad::test_save_module, test/test_package.py::TestSaveLoad::test_save_module_binary, test/test_package.py::TestSaveLoad::test_saving_source, test/test_package.py::TestSaveLoad::test_saving_string 2025-08-14T22:27:54.8794042Z 2025-08-14T22:27:58.9602937Z 2025-08-14T22:27:58.9604181Z functorch/test_rearrange 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_rearrange_1.1_d22448c1fee7fccc_.log 2025-08-14T22:27:58.9608208Z Running 10 items in this shard: test/functorch/test_rearrange.py::TestRearrange::test_0_dim_tensor, test/functorch/test_rearrange.py::TestRearrange::test_collapsed_ellipsis_errors_out, test/functorch/test_rearrange.py::TestRearrange::test_concatenations_and_stacking, test/functorch/test_rearrange.py::TestRearrange::test_dimension_mismatch_no_ellipsis, test/functorch/test_rearrange.py::TestRearrange::test_dimension_mismatch_with_ellipsis, test/functorch/test_rearrange.py::TestRearrange::test_ellipsis_ops, test/functorch/test_rearrange.py::TestRearrange::test_rearrange_consistency, test/functorch/test_rearrange.py::TestRearrange::test_rearrange_permutations, test/functorch/test_rearrange.py::TestRearrange::test_squeeze, test/functorch/test_rearrange.py::TestRearrange::test_unsqueeze 2025-08-14T22:27:58.9611581Z 2025-08-14T22:28:00.4354136Z Running functorch/test_parsing 1/1 ... [2025-08-14 22:28:00.434902] 2025-08-14T22:28:00.4354777Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:28:00.4361671Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_parsing.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:28:00.435547] 2025-08-14T22:28:04.7053658Z Running test_hop_infra 1/1 ... [2025-08-14 22:28:04.704755] 2025-08-14T22:28:04.7054208Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:28:04.7061112Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_hop_infra.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:28:04.705411] 2025-08-14T22:28:06.2949220Z 2025-08-14T22:28:06.2950291Z functorch/test_parsing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_parsing_1.1_c192a8860e318651_.log 2025-08-14T22:28:06.2956049Z Running 12 items in this shard: test/functorch/test_parsing.py::TestAnonymousAxis::test_anonymous_axes, test/functorch/test_parsing.py::TestParsedExpression::test_elementary_axis_name, test/functorch/test_parsing.py::TestParsedExpression::test_invalid_expressions, test/functorch/test_parsing.py::TestParsedExpression::test_parse_expression, test/functorch/test_parsing.py::TestParsingUtils::test_ellipsis_invalid_identifier, test/functorch/test_parsing.py::TestParsingUtils::test_ellipsis_matching, test/functorch/test_parsing.py::TestParsingUtils::test_left_parenthesized_ellipsis, test/functorch/test_parsing.py::TestParsingUtils::test_parse_pattern_number_of_arrows, test/functorch/test_parsing.py::TestValidateRearrangeExpressions::test_identifier_mismatch, test/functorch/test_parsing.py::TestValidateRearrangeExpressions::test_non_unitary_anonymous_axes_raises_error, test/functorch/test_parsing.py::TestValidateRearrangeExpressions::test_unexpected_axes_lengths, test/functorch/test_parsing.py::TestValidateRearrangeExpressions::test_validate_axes_lengths_are_integers 2025-08-14T22:28:06.2961209Z 2025-08-14T22:28:11.0523846Z 2025-08-14T22:28:11.0525337Z test_hop_infra 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_hop_infra_1.1_21805fe35ebcc53f_.log 2025-08-14T22:28:11.0527004Z Running 3 items in this shard: test/test_hop_infra.py::TestHOPInfra::test_all_hops_are_imported, test/test_hop_infra.py::TestHOPInfra::test_all_hops_have_opinfo, test/test_hop_infra.py::TestHOPInfra::test_imports_from_all_work 2025-08-14T22:28:11.0527960Z 2025-08-14T22:28:11.9594322Z Running test_comparison_utils 1/1 ... [2025-08-14 22:28:11.953447] 2025-08-14T22:28:11.9594840Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:28:11.9601675Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_comparison_utils.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:28:11.953447] 2025-08-14T22:28:16.5980471Z Running functorch/test_control_flow 1/1 ... [2025-08-14 22:28:16.585104] 2025-08-14T22:28:16.5981017Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:28:16.5987601Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_control_flow.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:28:16.585104] 2025-08-14T22:28:17.3473949Z 2025-08-14T22:28:17.3475109Z test_comparison_utils 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_comparison_utils_1.1_fcd98f9410469ff7_.log 2025-08-14T22:28:17.3478387Z Running 7 items in this shard: test/test_comparison_utils.py::TestComparisonUtils::test_all_equal_no_assert, test/test_comparison_utils.py::TestComparisonUtils::test_all_equal_no_assert_nones, test/test_comparison_utils.py::TestComparisonUtils::test_assert_device, test/test_comparison_utils.py::TestComparisonUtils::test_assert_dtype, test/test_comparison_utils.py::TestComparisonUtils::test_assert_layout, test/test_comparison_utils.py::TestComparisonUtils::test_assert_sizes, test/test_comparison_utils.py::TestComparisonUtils::test_assert_strides 2025-08-14T22:28:17.3480800Z 2025-08-14T22:28:22.8052694Z Running functorch/test_ac_logging 1/1 ... [2025-08-14 22:28:22.805074] 2025-08-14T22:28:22.8053237Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:28:22.8060211Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ac_logging.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:28:22.805710] 2025-08-14T22:28:25.3091034Z 2025-08-14T22:28:25.3092176Z functorch/test_control_flow 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_control_flow_1.1_0fccc6fef8d10b1a_.log 2025-08-14T22:28:25.4073069Z Running 1317 items in this shard: test/functorch/test_control_flow.py::TestControlFlow::test_cond_autograd_complex, test/functorch/test_control_flow.py::TestControlFlow::test_cond_autograd_different_pytree_output, test/functorch/test_control_flow.py::TestControlFlow::test_cond_autograd_gpu, test/functorch/test_control_flow.py::TestControlFlow::test_cond_autograd_grad_through_cond, test/functorch/test_control_flow.py::TestControlFlow::test_cond_autograd_inner_fn, test/functorch/test_control_flow.py::TestControlFlow::test_cond_autograd_inner_tensor, test/functorch/test_control_flow.py::TestControlFlow::test_cond_autograd_mixed_require_grad, test/functorch/test_control_flow.py::TestControlFlow::test_cond_autograd_nested, test/functorch/test_control_flow.py::TestControlFlow::test_cond_autograd_pytree_input, test/functorch/test_control_flow.py::TestControlFlow::test_cond_autograd_pytree_not_all_inputs_used, test/functorch/test_control_flow.py::TestControlFlow::test_cond_autograd_same_pytree_output, test/functorch/test_control_flow.py::TestControlFlow::test_cond_autograd_simple, test/functorch/test_control_flow.py::TestControlFlow::test_cond_autograd_torch_nn_module, test/functorch/test_control_flow.py::TestControlFlow::test_cond_autograd_user_nn_module, test/functorch/test_control_flow.py::TestControlFlow::test_cond_autograd_zeros_unused_branch_complex_compile_fail_compile_mode_compile_dynamic_shape_scalar_False, test/functorch/test_control_flow.py::TestControlFlow::test_cond_gpu, test/functorch/test_control_flow.py::TestControlFlow::test_cond_in_forloop, test/functorch/test_control_flow.py::TestControlFlow::test_cond_no_trace, test/functorch/test_control_flow.py::TestControlFlow::test_map_autograd_higher_order, test/functorch/test_control_flow.py::TestControlFlow::test_map_autograd_nested_list, test/functorch/test_control_flow.py::TestControlFlow::test_map_autograd_no_grad_output, test/functorch/test_control_flow.py::TestControlFlow::test_map_autograd_simple, test/functorch/test_control_flow.py::TestControlFlow::test_map_autograd_simple_partial_grad, test/functorch/test_control_flow.py::TestControlFlow::test_map_dict_in_out, test/functorch/test_control_flow.py::TestControlFlow::test_map_gpu, test/functorch/test_control_flow.py::TestControlFlow::test_map_illegal_inputs, test/functorch/test_control_flow.py::TestControlFlow::test_map_illegal_outputs, test/functorch/test_control_flow.py::TestControlFlow::test_map_list_in_out, test/functorch/test_control_flow.py::TestControlFlow::test_scan_associative_scan, test/functorch/test_control_flow.py::TestControlFlow::test_scan_binary_operator_reverse_False_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_binary_operator_reverse_False_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_binary_operator_reverse_False_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_binary_operator_reverse_False_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_binary_operator_reverse_False_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_binary_operator_reverse_False_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_binary_operator_reverse_False_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_binary_operator_reverse_False_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_binary_operator_reverse_True_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_binary_operator_reverse_True_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_binary_operator_reverse_True_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_binary_operator_reverse_True_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_binary_operator_reverse_True_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_binary_operator_reverse_True_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_binary_operator_reverse_True_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_binary_operator_reverse_True_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_carry_carry_alias, test/functorch/test_control_flow.py::TestControlFlow::test_scan_carry_output_alias, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_compile_mode_eager_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_compile_mode_eager_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_compile_mode_none_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_compile_mode_none_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_False_compile_mode_eager_partial_grad_additional_inputs_cpu, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_False_compile_mode_eager_partial_grad_additional_inputs_cuda, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_False_compile_mode_eager_partial_grad_complex_cpu, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_False_compile_mode_eager_partial_grad_complex_cuda, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_False_compile_mode_eager_partial_grad_init_cpu, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_False_compile_mode_eager_partial_grad_init_cuda, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_False_compile_mode_eager_partial_grad_random_cpu, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_False_compile_mode_eager_partial_grad_random_cuda, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_False_compile_mode_eager_partial_grad_xs_cpu, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_False_compile_mode_eager_partial_grad_xs_cuda, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_False_compile_mode_none_partial_grad_additional_inputs_cpu, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_False_compile_mode_none_partial_grad_additional_inputs_cuda, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_False_compile_mode_none_partial_grad_complex_cpu, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_False_compile_mode_none_partial_grad_complex_cuda, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_False_compile_mode_none_partial_grad_init_cpu, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_False_compile_mode_none_partial_grad_init_cuda, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_False_compile_mode_none_partial_grad_random_cpu, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_False_compile_mode_none_partial_grad_random_cuda, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_False_compile_mode_none_partial_grad_xs_cpu, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_False_compile_mode_none_partial_grad_xs_cuda, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_True_compile_mode_eager_partial_grad_additional_inputs_cpu, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_True_compile_mode_eager_partial_grad_additional_inputs_cuda, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_True_compile_mode_eager_partial_grad_complex_cpu, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_True_compile_mode_eager_partial_grad_complex_cuda, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_True_compile_mode_eager_partial_grad_init_cpu, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_True_compile_mode_eager_partial_grad_init_cuda, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_True_compile_mode_eager_partial_grad_random_cpu, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_True_compile_mode_eager_partial_grad_random_cuda, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_True_compile_mode_eager_partial_grad_xs_cpu, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_True_compile_mode_eager_partial_grad_xs_cuda, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_True_compile_mode_none_partial_grad_additional_inputs_cpu, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_True_compile_mode_none_partial_grad_additional_inputs_cuda, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_True_compile_mode_none_partial_grad_complex_cpu, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_True_compile_mode_none_partial_grad_complex_cuda, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_True_compile_mode_none_partial_grad_init_cpu, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_True_compile_mode_none_partial_grad_init_cuda, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_True_compile_mode_none_partial_grad_random_cpu, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_True_compile_mode_none_partial_grad_random_cuda, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_True_compile_mode_none_partial_grad_xs_cpu, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_RNN_partial_autograd_reverse_True_compile_mode_none_partial_grad_xs_cuda, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_carries_ys_same_grad_reverse_False_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_carries_ys_same_grad_reverse_False_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_carries_ys_same_grad_reverse_False_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_carries_ys_same_grad_reverse_False_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_carries_ys_same_grad_reverse_False_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_carries_ys_same_grad_reverse_False_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_carries_ys_same_grad_reverse_False_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_carries_ys_same_grad_reverse_False_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_carries_ys_same_grad_reverse_True_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_carries_ys_same_grad_reverse_True_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_carries_ys_same_grad_reverse_True_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_carries_ys_same_grad_reverse_True_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_carries_ys_same_grad_reverse_True_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_carries_ys_same_grad_reverse_True_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_carries_ys_same_grad_reverse_True_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_carries_ys_same_grad_reverse_True_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_all_reverse_False_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_all_reverse_False_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_all_reverse_False_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_all_reverse_False_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_all_reverse_False_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_all_reverse_False_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_all_reverse_False_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_all_reverse_False_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_all_reverse_True_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_all_reverse_True_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_all_reverse_True_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_all_reverse_True_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_all_reverse_True_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_all_reverse_True_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_all_reverse_True_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_all_reverse_True_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_partial_reverse_False_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_partial_reverse_False_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_partial_reverse_False_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_partial_reverse_False_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_partial_reverse_False_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_partial_reverse_False_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_partial_reverse_False_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_partial_reverse_False_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_partial_reverse_True_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_partial_reverse_True_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_partial_reverse_True_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_partial_reverse_True_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_partial_reverse_True_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_partial_reverse_True_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_partial_reverse_True_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_additional_inputs_partial_reverse_True_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_for_out_reverse_False_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_for_out_reverse_False_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_for_out_reverse_False_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_for_out_reverse_False_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_for_out_reverse_False_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_for_out_reverse_False_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_for_out_reverse_False_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_for_out_reverse_False_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_for_out_reverse_True_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_for_out_reverse_True_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_for_out_reverse_True_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_for_out_reverse_True_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_for_out_reverse_True_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_for_out_reverse_True_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_for_out_reverse_True_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_for_out_reverse_True_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_equal_grad_reverse_False_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_equal_grad_reverse_False_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_equal_grad_reverse_False_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_equal_grad_reverse_False_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_equal_grad_reverse_False_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_equal_grad_reverse_False_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_equal_grad_reverse_False_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_equal_grad_reverse_False_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_equal_grad_reverse_True_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_equal_grad_reverse_True_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_equal_grad_reverse_True_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_equal_grad_reverse_True_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_equal_grad_reverse_True_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_equal_grad_reverse_True_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_equal_grad_reverse_True_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_equal_grad_reverse_True_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_unequal_grad_reverse_False_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_unequal_grad_reverse_False_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_unequal_grad_reverse_False_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_unequal_grad_reverse_False_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_unequal_grad_reverse_False_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_unequal_grad_reverse_False_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_unequal_grad_reverse_False_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_unequal_grad_reverse_False_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_unequal_grad_reverse_True_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_unequal_grad_reverse_True_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_unequal_grad_reverse_True_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_unequal_grad_reverse_True_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_unequal_grad_reverse_True_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_unequal_grad_reverse_True_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_unequal_grad_reverse_True_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_combine_fn_with_no_grad_init_carries_unequal_grad_reverse_True_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_nested_reverse_False_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_nested_reverse_False_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_nested_reverse_False_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_nested_reverse_False_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_nested_reverse_False_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_nested_reverse_False_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_nested_reverse_False_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_nested_reverse_False_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_nested_reverse_True_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_nested_reverse_True_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_nested_reverse_True_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_nested_reverse_True_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_nested_reverse_True_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_nested_reverse_True_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_nested_reverse_True_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_closure_nested_reverse_True_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_compile_cnt_reverse_False_cpu, test/functorch/test_control_flow.py::TestControlFlow::test_scan_compile_cnt_reverse_False_cuda, test/functorch/test_control_flow.py::TestControlFlow::test_scan_compile_cnt_reverse_True_cpu, test/functorch/test_control_flow.py::TestControlFlow::test_scan_compile_cnt_reverse_True_cuda, test/functorch/test_control_flow.py::TestControlFlow::test_scan_compile_reverse_False_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_compile_reverse_False_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_compile_reverse_False_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_compile_reverse_False_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_compile_reverse_False_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_compile_reverse_False_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_compile_reverse_False_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_compile_reverse_False_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_compile_reverse_True_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_compile_reverse_True_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_compile_reverse_True_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_compile_reverse_True_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_compile_reverse_True_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_compile_reverse_True_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_compile_reverse_True_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_compile_reverse_True_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_complex_pytree_reverse_False_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_complex_pytree_reverse_False_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_complex_pytree_reverse_False_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_complex_pytree_reverse_False_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_complex_pytree_reverse_False_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_complex_pytree_reverse_False_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_complex_pytree_reverse_False_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_complex_pytree_reverse_False_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_complex_pytree_reverse_True_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_complex_pytree_reverse_True_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_complex_pytree_reverse_True_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_complex_pytree_reverse_True_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_complex_pytree_reverse_True_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_complex_pytree_reverse_True_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_complex_pytree_reverse_True_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_complex_pytree_reverse_True_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dim_reverse_False_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dim_reverse_False_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dim_reverse_False_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dim_reverse_False_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dim_reverse_False_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dim_reverse_False_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dim_reverse_False_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dim_reverse_False_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dim_reverse_True_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dim_reverse_True_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dim_reverse_True_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dim_reverse_True_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dim_reverse_True_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dim_reverse_True_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dim_reverse_True_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dim_reverse_True_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_matmul_compile_mode_eager_reverse_False_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_matmul_compile_mode_eager_reverse_False_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_matmul_compile_mode_eager_reverse_False_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_matmul_compile_mode_eager_reverse_False_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_matmul_compile_mode_eager_reverse_True_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_matmul_compile_mode_eager_reverse_True_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_matmul_compile_mode_eager_reverse_True_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_matmul_compile_mode_eager_reverse_True_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_matmul_compile_mode_none_reverse_False_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_matmul_compile_mode_none_reverse_False_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_matmul_compile_mode_none_reverse_False_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_matmul_compile_mode_none_reverse_False_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_matmul_compile_mode_none_reverse_True_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_matmul_compile_mode_none_reverse_True_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_matmul_compile_mode_none_reverse_True_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_matmul_compile_mode_none_reverse_True_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_scan_dim_compile_mode_eager_reverse_False_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_scan_dim_compile_mode_eager_reverse_False_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_scan_dim_compile_mode_eager_reverse_False_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_scan_dim_compile_mode_eager_reverse_False_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_scan_dim_compile_mode_eager_reverse_True_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_scan_dim_compile_mode_eager_reverse_True_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_scan_dim_compile_mode_eager_reverse_True_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_scan_dim_compile_mode_eager_reverse_True_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_scan_dim_compile_mode_none_reverse_False_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_scan_dim_compile_mode_none_reverse_False_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_scan_dim_compile_mode_none_reverse_False_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_scan_dim_compile_mode_none_reverse_False_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_scan_dim_compile_mode_none_reverse_True_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_scan_dim_compile_mode_none_reverse_True_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_scan_dim_compile_mode_none_reverse_True_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_downstream_scan_scan_dim_compile_mode_none_reverse_True_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_False_compile_mode_eager_cpu_complex64, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_False_compile_mode_eager_cpu_float16, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_False_compile_mode_eager_cpu_float32, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_False_compile_mode_eager_cpu_int32, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_False_compile_mode_eager_cpu_int64, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_False_compile_mode_eager_cuda_complex64, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_False_compile_mode_eager_cuda_float16, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_False_compile_mode_eager_cuda_float32, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_False_compile_mode_eager_cuda_int32, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_False_compile_mode_eager_cuda_int64, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_False_compile_mode_none_cpu_complex64, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_False_compile_mode_none_cpu_float16, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_False_compile_mode_none_cpu_float32, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_False_compile_mode_none_cpu_int32, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_False_compile_mode_none_cpu_int64, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_False_compile_mode_none_cuda_complex64, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_False_compile_mode_none_cuda_float16, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_False_compile_mode_none_cuda_float32, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_False_compile_mode_none_cuda_int32, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_False_compile_mode_none_cuda_int64, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_True_compile_mode_eager_cpu_complex64, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_True_compile_mode_eager_cpu_float16, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_True_compile_mode_eager_cpu_float32, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_True_compile_mode_eager_cpu_int32, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_True_compile_mode_eager_cpu_int64, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_True_compile_mode_eager_cuda_complex64, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_True_compile_mode_eager_cuda_float16, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_True_compile_mode_eager_cuda_float32, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_True_compile_mode_eager_cuda_int32, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_True_compile_mode_eager_cuda_int64, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_True_compile_mode_none_cpu_complex64, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_True_compile_mode_none_cpu_float16, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_True_compile_mode_none_cpu_float32, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_True_compile_mode_none_cpu_int32, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_True_compile_mode_none_cpu_int64, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_True_compile_mode_none_cuda_complex64, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_True_compile_mode_none_cuda_float16, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_True_compile_mode_none_cuda_float32, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_True_compile_mode_none_cuda_int32, test/functorch/test_control_flow.py::TestControlFlow::test_scan_dtype_reverse_True_compile_mode_none_cuda_int64, test/functorch/test_control_flow.py::TestControlFlow::test_scan_float_output, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_non_tensor, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_pytree_complex_reverse_False_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_pytree_complex_reverse_False_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_pytree_complex_reverse_False_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_pytree_complex_reverse_False_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_pytree_complex_reverse_False_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_pytree_complex_reverse_False_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_pytree_complex_reverse_False_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_pytree_complex_reverse_False_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_pytree_complex_reverse_True_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_pytree_complex_reverse_True_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_pytree_complex_reverse_True_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_pytree_complex_reverse_True_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_pytree_complex_reverse_True_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_pytree_complex_reverse_True_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_pytree_complex_reverse_True_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_pytree_complex_reverse_True_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_reverse_False_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_reverse_False_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_reverse_False_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_reverse_False_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_reverse_False_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_reverse_False_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_reverse_False_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_reverse_False_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_reverse_True_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_reverse_True_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_reverse_True_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_reverse_True_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_reverse_True_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_reverse_True_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_reverse_True_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_reverse_True_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_scanned_0, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_wrong_pytree_carry_shape, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_wrong_pytree_complex_reverse_False_cpu, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_wrong_pytree_complex_reverse_False_cuda, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_wrong_pytree_complex_reverse_True_cpu, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_wrong_pytree_complex_reverse_True_cuda, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_wrong_pytree_init_longer_carry, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_wrong_pytree_init_shorter_carry, test/functorch/test_control_flow.py::TestControlFlow::test_scan_init_wrong_shape, test/functorch/test_control_flow.py::TestControlFlow::test_scan_input_carry_alias, test/functorch/test_control_flow.py::TestControlFlow::test_scan_input_mutation, test/functorch/test_control_flow.py::TestControlFlow::test_scan_input_output_alias, test/functorch/test_control_flow.py::TestControlFlow::test_scan_non_pointwise_reverse_False_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_non_pointwise_reverse_False_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_non_pointwise_reverse_False_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_non_pointwise_reverse_False_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_non_pointwise_reverse_False_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_non_pointwise_reverse_False_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_non_pointwise_reverse_False_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_non_pointwise_reverse_False_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_non_pointwise_reverse_True_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_non_pointwise_reverse_True_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_non_pointwise_reverse_True_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_non_pointwise_reverse_True_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_non_pointwise_reverse_True_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_non_pointwise_reverse_True_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_non_pointwise_reverse_True_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_non_pointwise_reverse_True_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_one_return, test/functorch/test_control_flow.py::TestControlFlow::test_scan_pytree_output, test/functorch/test_control_flow.py::TestControlFlow::test_scan_simple_graph, test/functorch/test_control_flow.py::TestControlFlow::test_scan_simple_graph_wrong_dtype, test/functorch/test_control_flow.py::TestControlFlow::test_scan_tuple_reverse_False_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_tuple_reverse_False_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_tuple_reverse_False_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_tuple_reverse_False_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_tuple_reverse_False_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_tuple_reverse_False_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_tuple_reverse_False_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_tuple_reverse_False_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_tuple_reverse_True_compile_mode_eager_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_tuple_reverse_True_compile_mode_eager_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_tuple_reverse_True_compile_mode_eager_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_tuple_reverse_True_compile_mode_eager_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_tuple_reverse_True_compile_mode_none_cpu_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_tuple_reverse_True_compile_mode_none_cpu_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_tuple_reverse_True_compile_mode_none_cuda_autograd_False, test/functorch/test_control_flow.py::TestControlFlow::test_scan_tuple_reverse_True_compile_mode_none_cuda_autograd_True, test/functorch/test_control_flow.py::TestControlFlow::test_scan_wrong_pytree, test/functorch/test_control_flow.py::TestControlFlow::test_scan_y_less_ndim_then_dim, test/functorch/test_control_flow.py::TestControlFlow::test_while_loop_gpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_compile_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_compile_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_compile_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_compile_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_compile_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_compile_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_compile_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_compile_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_eager_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_eager_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_eager_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_eager_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_eager_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_eager_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_eager_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_eager_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_none_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_none_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_none_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_none_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_none_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_none_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_none_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_binary_operator_compile_mode_none_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_combine_fn_wrong_meta_in_combine_fn, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_False_compile_mode_compile_combine_mode_generic_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_False_compile_mode_compile_combine_mode_generic_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_False_compile_mode_compile_combine_mode_pointwise_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_False_compile_mode_compile_combine_mode_pointwise_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_False_compile_mode_compile_dynamic_shape_combine_mode_generic_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_False_compile_mode_compile_dynamic_shape_combine_mode_generic_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_False_compile_mode_compile_dynamic_shape_combine_mode_pointwise_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_False_compile_mode_compile_dynamic_shape_combine_mode_pointwise_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_False_compile_mode_eager_combine_mode_generic_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_False_compile_mode_eager_combine_mode_generic_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_False_compile_mode_eager_combine_mode_pointwise_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_False_compile_mode_eager_combine_mode_pointwise_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_False_compile_mode_none_combine_mode_generic_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_False_compile_mode_none_combine_mode_generic_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_False_compile_mode_none_combine_mode_pointwise_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_False_compile_mode_none_combine_mode_pointwise_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_True_compile_mode_compile_combine_mode_generic_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_True_compile_mode_compile_combine_mode_generic_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_True_compile_mode_compile_combine_mode_pointwise_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_True_compile_mode_compile_combine_mode_pointwise_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_True_compile_mode_compile_dynamic_shape_combine_mode_generic_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_True_compile_mode_compile_dynamic_shape_combine_mode_generic_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_True_compile_mode_compile_dynamic_shape_combine_mode_pointwise_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_True_compile_mode_compile_dynamic_shape_combine_mode_pointwise_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_True_compile_mode_eager_combine_mode_generic_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_True_compile_mode_eager_combine_mode_generic_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_True_compile_mode_eager_combine_mode_pointwise_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_True_compile_mode_eager_combine_mode_pointwise_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_True_compile_mode_none_combine_mode_generic_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_True_compile_mode_none_combine_mode_generic_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_True_compile_mode_none_combine_mode_pointwise_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_compile_reverse_True_compile_mode_none_combine_mode_pointwise_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_compile_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_compile_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_compile_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_compile_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_compile_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_compile_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_compile_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_compile_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_eager_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_eager_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_eager_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_eager_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_eager_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_eager_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_eager_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_eager_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_none_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_none_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_none_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_none_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_none_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_none_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_none_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_complex_pytree_compile_mode_none_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_cond_in_combine_fn_compile_mode_compile_dynamic_shape_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_cond_in_combine_fn_compile_mode_compile_dynamic_shape_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_cond_in_combine_fn_compile_mode_compile_dynamic_shape_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_cond_in_combine_fn_compile_mode_compile_dynamic_shape_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_cond_in_combine_fn_compile_mode_compile_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_cond_in_combine_fn_compile_mode_compile_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_cond_in_combine_fn_compile_mode_compile_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_cond_in_combine_fn_compile_mode_compile_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_cond_in_combine_fn_compile_mode_eager_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_cond_in_combine_fn_compile_mode_eager_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_cond_in_combine_fn_compile_mode_eager_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_cond_in_combine_fn_compile_mode_eager_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_cond_in_combine_fn_compile_mode_none_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_cond_in_combine_fn_compile_mode_none_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_cond_in_combine_fn_compile_mode_none_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_cond_in_combine_fn_compile_mode_none_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_different_input_size_compile_mode_compile_dynamic_shape_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_different_input_size_compile_mode_compile_dynamic_shape_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_different_input_size_compile_mode_compile_dynamic_shape_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_different_input_size_compile_mode_compile_dynamic_shape_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_different_input_size_compile_mode_compile_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_different_input_size_compile_mode_compile_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_different_input_size_compile_mode_compile_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_different_input_size_compile_mode_compile_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_different_input_size_compile_mode_eager_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_different_input_size_compile_mode_eager_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_different_input_size_compile_mode_eager_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_different_input_size_compile_mode_eager_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_different_input_size_compile_mode_none_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_different_input_size_compile_mode_none_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_different_input_size_compile_mode_none_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_different_input_size_compile_mode_none_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_different_input_size_wrong_dim, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_False_compile_mode_compile_combine_mode_generic_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_False_compile_mode_compile_combine_mode_generic_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_False_compile_mode_compile_combine_mode_pointwise_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_False_compile_mode_compile_combine_mode_pointwise_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_False_compile_mode_compile_dynamic_shape_combine_mode_generic_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_False_compile_mode_compile_dynamic_shape_combine_mode_generic_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_False_compile_mode_compile_dynamic_shape_combine_mode_pointwise_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_False_compile_mode_compile_dynamic_shape_combine_mode_pointwise_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_False_compile_mode_eager_combine_mode_generic_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_False_compile_mode_eager_combine_mode_generic_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_False_compile_mode_eager_combine_mode_pointwise_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_False_compile_mode_eager_combine_mode_pointwise_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_False_compile_mode_none_combine_mode_generic_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_False_compile_mode_none_combine_mode_generic_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_False_compile_mode_none_combine_mode_pointwise_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_False_compile_mode_none_combine_mode_pointwise_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_True_compile_mode_compile_combine_mode_generic_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_True_compile_mode_compile_combine_mode_generic_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_True_compile_mode_compile_combine_mode_pointwise_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_True_compile_mode_compile_combine_mode_pointwise_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_True_compile_mode_compile_dynamic_shape_combine_mode_generic_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_True_compile_mode_compile_dynamic_shape_combine_mode_generic_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_True_compile_mode_compile_dynamic_shape_combine_mode_pointwise_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_True_compile_mode_compile_dynamic_shape_combine_mode_pointwise_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_True_compile_mode_eager_combine_mode_generic_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_True_compile_mode_eager_combine_mode_generic_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_True_compile_mode_eager_combine_mode_pointwise_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_True_compile_mode_eager_combine_mode_pointwise_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_True_compile_mode_none_combine_mode_generic_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_True_compile_mode_none_combine_mode_generic_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_True_compile_mode_none_combine_mode_pointwise_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_reverse_True_compile_mode_none_combine_mode_pointwise_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_dim_shape_failure, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_generic_compile_mode_compile_dynamic_shape_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_generic_compile_mode_compile_dynamic_shape_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_generic_compile_mode_compile_dynamic_shape_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_generic_compile_mode_compile_dynamic_shape_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_generic_compile_mode_compile_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_generic_compile_mode_compile_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_generic_compile_mode_compile_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_generic_compile_mode_compile_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_generic_compile_mode_eager_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_generic_compile_mode_eager_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_generic_compile_mode_eager_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_generic_compile_mode_eager_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_generic_compile_mode_none_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_generic_compile_mode_none_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_generic_compile_mode_none_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_generic_compile_mode_none_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_pointwise_compile_mode_compile_dynamic_shape_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_pointwise_compile_mode_compile_dynamic_shape_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_pointwise_compile_mode_compile_dynamic_shape_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_pointwise_compile_mode_compile_dynamic_shape_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_pointwise_compile_mode_compile_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_pointwise_compile_mode_compile_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_pointwise_compile_mode_compile_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_pointwise_compile_mode_compile_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_pointwise_compile_mode_eager_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_pointwise_compile_mode_eager_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_pointwise_compile_mode_eager_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_pointwise_compile_mode_eager_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_pointwise_compile_mode_none_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_pointwise_compile_mode_none_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_pointwise_compile_mode_none_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_matmul_combine_mode_pointwise_compile_mode_none_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_generic_compile_mode_compile_dynamic_shape_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_generic_compile_mode_compile_dynamic_shape_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_generic_compile_mode_compile_dynamic_shape_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_generic_compile_mode_compile_dynamic_shape_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_generic_compile_mode_compile_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_generic_compile_mode_compile_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_generic_compile_mode_compile_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_generic_compile_mode_compile_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_generic_compile_mode_eager_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_generic_compile_mode_eager_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_generic_compile_mode_eager_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_generic_compile_mode_eager_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_generic_compile_mode_none_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_generic_compile_mode_none_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_generic_compile_mode_none_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_generic_compile_mode_none_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_pointwise_compile_mode_compile_dynamic_shape_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_pointwise_compile_mode_compile_dynamic_shape_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_pointwise_compile_mode_compile_dynamic_shape_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_pointwise_compile_mode_compile_dynamic_shape_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_pointwise_compile_mode_compile_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_pointwise_compile_mode_compile_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_pointwise_compile_mode_compile_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_pointwise_compile_mode_compile_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_pointwise_compile_mode_eager_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_pointwise_compile_mode_eager_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_pointwise_compile_mode_eager_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_pointwise_compile_mode_eager_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_pointwise_compile_mode_none_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_pointwise_compile_mode_none_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_pointwise_compile_mode_none_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_combine_mode_pointwise_compile_mode_none_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_compile_dynamic_shape_reverse_first_False_same_direction_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_compile_dynamic_shape_reverse_first_False_same_direction_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_compile_dynamic_shape_reverse_first_False_same_direction_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_compile_dynamic_shape_reverse_first_False_same_direction_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_compile_dynamic_shape_reverse_first_True_same_direction_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_compile_dynamic_shape_reverse_first_True_same_direction_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_compile_dynamic_shape_reverse_first_True_same_direction_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_compile_dynamic_shape_reverse_first_True_same_direction_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_compile_reverse_first_False_same_direction_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_compile_reverse_first_False_same_direction_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_compile_reverse_first_False_same_direction_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_compile_reverse_first_False_same_direction_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_compile_reverse_first_True_same_direction_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_compile_reverse_first_True_same_direction_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_compile_reverse_first_True_same_direction_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_compile_reverse_first_True_same_direction_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_eager_reverse_first_False_same_direction_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_eager_reverse_first_False_same_direction_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_eager_reverse_first_False_same_direction_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_eager_reverse_first_False_same_direction_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_eager_reverse_first_True_same_direction_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_eager_reverse_first_True_same_direction_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_eager_reverse_first_True_same_direction_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_eager_reverse_first_True_same_direction_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_none_reverse_first_False_same_direction_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_none_reverse_first_False_same_direction_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_none_reverse_first_False_same_direction_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_none_reverse_first_False_same_direction_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_none_reverse_first_True_same_direction_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_none_reverse_first_True_same_direction_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_none_reverse_first_True_same_direction_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_generic_compile_mode_none_reverse_first_True_same_direction_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_compile_dynamic_shape_reverse_first_False_same_direction_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_compile_dynamic_shape_reverse_first_False_same_direction_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_compile_dynamic_shape_reverse_first_False_same_direction_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_compile_dynamic_shape_reverse_first_False_same_direction_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_compile_dynamic_shape_reverse_first_True_same_direction_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_compile_dynamic_shape_reverse_first_True_same_direction_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_compile_dynamic_shape_reverse_first_True_same_direction_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_compile_dynamic_shape_reverse_first_True_same_direction_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_compile_reverse_first_False_same_direction_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_compile_reverse_first_False_same_direction_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_compile_reverse_first_False_same_direction_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_compile_reverse_first_False_same_direction_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_compile_reverse_first_True_same_direction_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_compile_reverse_first_True_same_direction_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_compile_reverse_first_True_same_direction_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_compile_reverse_first_True_same_direction_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_eager_reverse_first_False_same_direction_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_eager_reverse_first_False_same_direction_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_eager_reverse_first_False_same_direction_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_eager_reverse_first_False_same_direction_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_eager_reverse_first_True_same_direction_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_eager_reverse_first_True_same_direction_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_eager_reverse_first_True_same_direction_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_eager_reverse_first_True_same_direction_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_none_reverse_first_False_same_direction_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_none_reverse_first_False_same_direction_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_none_reverse_first_False_same_direction_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_none_reverse_first_False_same_direction_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_none_reverse_first_True_same_direction_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_none_reverse_first_True_same_direction_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_none_reverse_first_True_same_direction_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_downstream_scan_scan_different_dim_combine_mode_pointwise_compile_mode_none_reverse_first_True_same_direction_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_compile_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_compile_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_compile_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_compile_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_compile_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_compile_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_compile_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_compile_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_eager_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_eager_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_eager_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_eager_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_eager_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_eager_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_eager_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_eager_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_none_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_none_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_none_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_none_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_none_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_none_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_none_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_expand_in_combine_fn_compile_mode_none_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_compile_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_compile_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_compile_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_compile_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_compile_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_compile_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_compile_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_compile_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_eager_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_eager_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_eager_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_eager_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_eager_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_eager_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_eager_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_eager_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_none_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_none_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_none_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_none_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_none_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_none_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_none_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_compile_mode_none_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_generic_compile_mode_compile_dynamic_shape_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_generic_compile_mode_compile_dynamic_shape_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_generic_compile_mode_compile_dynamic_shape_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_generic_compile_mode_compile_dynamic_shape_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_generic_compile_mode_compile_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_generic_compile_mode_compile_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_generic_compile_mode_compile_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_generic_compile_mode_compile_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_generic_compile_mode_eager_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_generic_compile_mode_eager_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_generic_compile_mode_eager_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_generic_compile_mode_eager_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_generic_compile_mode_none_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_generic_compile_mode_none_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_generic_compile_mode_none_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_fct_generic_compile_mode_none_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_compile_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_compile_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_compile_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_compile_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_compile_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_compile_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_compile_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_compile_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_eager_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_eager_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_eager_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_eager_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_eager_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_eager_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_eager_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_eager_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_none_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_none_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_none_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_none_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_none_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_none_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_none_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_nested_compile_mode_none_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_compile_dynamic_shape_reverse_False_cpu_combine_mode_generic, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_compile_dynamic_shape_reverse_False_cpu_combine_mode_pointwise, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_compile_dynamic_shape_reverse_False_cuda_combine_mode_generic, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_compile_dynamic_shape_reverse_False_cuda_combine_mode_pointwise, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_compile_dynamic_shape_reverse_True_cpu_combine_mode_generic, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_compile_dynamic_shape_reverse_True_cpu_combine_mode_pointwise, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_compile_dynamic_shape_reverse_True_cuda_combine_mode_generic, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_compile_dynamic_shape_reverse_True_cuda_combine_mode_pointwise, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_compile_reverse_False_cpu_combine_mode_generic, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_compile_reverse_False_cpu_combine_mode_pointwise, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_compile_reverse_False_cuda_combine_mode_generic, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_compile_reverse_False_cuda_combine_mode_pointwise, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_compile_reverse_True_cpu_combine_mode_generic, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_compile_reverse_True_cpu_combine_mode_pointwise, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_compile_reverse_True_cuda_combine_mode_generic, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_compile_reverse_True_cuda_combine_mode_pointwise, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_eager_reverse_False_cpu_combine_mode_generic, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_eager_reverse_False_cpu_combine_mode_pointwise, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_eager_reverse_False_cuda_combine_mode_generic, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_eager_reverse_False_cuda_combine_mode_pointwise, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_eager_reverse_True_cpu_combine_mode_generic, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_eager_reverse_True_cpu_combine_mode_pointwise, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_eager_reverse_True_cuda_combine_mode_generic, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_eager_reverse_True_cuda_combine_mode_pointwise, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_none_reverse_False_cpu_combine_mode_generic, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_none_reverse_False_cpu_combine_mode_pointwise, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_none_reverse_False_cuda_combine_mode_generic, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_none_reverse_False_cuda_combine_mode_pointwise, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_none_reverse_True_cpu_combine_mode_generic, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_none_reverse_True_cpu_combine_mode_pointwise, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_none_reverse_True_cuda_combine_mode_generic, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_pytree_compile_mode_none_reverse_True_cuda_combine_mode_pointwise, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_compile_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_compile_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_compile_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_compile_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_compile_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_compile_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_compile_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_compile_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_eager_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_eager_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_eager_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_eager_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_eager_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_eager_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_eager_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_eager_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_none_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_none_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_none_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_none_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_none_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_none_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_none_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_shape_check_compile_mode_none_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_compile_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_compile_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_compile_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_compile_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_compile_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_compile_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_compile_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_compile_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_eager_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_eager_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_eager_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_eager_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_eager_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_eager_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_eager_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_eager_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_none_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_none_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_none_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_none_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_none_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_none_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_none_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_freevars_simple_compile_mode_none_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_input_mutation, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_input_output_alias, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_loop_in_combine_fn_compile_mode_compile_dynamic_shape_loop_type_for_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_loop_in_combine_fn_compile_mode_compile_dynamic_shape_loop_type_for_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_loop_in_combine_fn_compile_mode_compile_dynamic_shape_loop_type_for_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_loop_in_combine_fn_compile_mode_compile_dynamic_shape_loop_type_for_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_loop_in_combine_fn_compile_mode_compile_loop_type_for_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_loop_in_combine_fn_compile_mode_compile_loop_type_for_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_loop_in_combine_fn_compile_mode_compile_loop_type_for_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_loop_in_combine_fn_compile_mode_compile_loop_type_for_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_loop_in_combine_fn_compile_mode_eager_loop_type_for_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_loop_in_combine_fn_compile_mode_eager_loop_type_for_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_loop_in_combine_fn_compile_mode_eager_loop_type_for_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_loop_in_combine_fn_compile_mode_eager_loop_type_for_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_loop_in_combine_fn_compile_mode_none_loop_type_for_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_loop_in_combine_fn_compile_mode_none_loop_type_for_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_loop_in_combine_fn_compile_mode_none_loop_type_for_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_loop_in_combine_fn_compile_mode_none_loop_type_for_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_loop_in_combine_fn_failure, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_map_in_combine_fn, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_nested, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_contiguous_tensor_compile_mode_compile_dynamic_shape_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_contiguous_tensor_compile_mode_compile_dynamic_shape_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_contiguous_tensor_compile_mode_compile_dynamic_shape_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_contiguous_tensor_compile_mode_compile_dynamic_shape_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_contiguous_tensor_compile_mode_compile_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_contiguous_tensor_compile_mode_compile_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_contiguous_tensor_compile_mode_compile_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_contiguous_tensor_compile_mode_compile_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_contiguous_tensor_compile_mode_eager_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_contiguous_tensor_compile_mode_eager_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_contiguous_tensor_compile_mode_eager_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_contiguous_tensor_compile_mode_eager_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_contiguous_tensor_compile_mode_none_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_contiguous_tensor_compile_mode_none_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_contiguous_tensor_compile_mode_none_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_contiguous_tensor_compile_mode_none_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_pointwise, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_pointwise_generic_reverse_False_compile_mode_compile_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_pointwise_generic_reverse_False_compile_mode_compile_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_pointwise_generic_reverse_False_compile_mode_compile_dynamic_shape_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_pointwise_generic_reverse_False_compile_mode_compile_dynamic_shape_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_pointwise_generic_reverse_False_compile_mode_eager_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_pointwise_generic_reverse_False_compile_mode_eager_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_pointwise_generic_reverse_False_compile_mode_none_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_pointwise_generic_reverse_False_compile_mode_none_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_pointwise_generic_reverse_True_compile_mode_compile_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_pointwise_generic_reverse_True_compile_mode_compile_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_pointwise_generic_reverse_True_compile_mode_compile_dynamic_shape_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_pointwise_generic_reverse_True_compile_mode_compile_dynamic_shape_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_pointwise_generic_reverse_True_compile_mode_eager_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_pointwise_generic_reverse_True_compile_mode_eager_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_pointwise_generic_reverse_True_compile_mode_none_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_non_pointwise_generic_reverse_True_compile_mode_none_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_output_output_alias, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_pytree_output, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_sparse_tensor, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_compile_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_compile_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_compile_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_compile_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_compile_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_compile_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_compile_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_compile_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_compile_dynamic_shape_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_compile_dynamic_shape_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_eager_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_eager_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_eager_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_eager_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_eager_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_eager_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_eager_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_eager_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_none_combine_mode_generic_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_none_combine_mode_generic_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_none_combine_mode_generic_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_none_combine_mode_generic_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_none_combine_mode_pointwise_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_none_combine_mode_pointwise_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_none_combine_mode_pointwise_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_tuple_compile_mode_none_combine_mode_pointwise_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_vmap_in_combine_fn_compile_mode_compile_dynamic_shape_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_vmap_in_combine_fn_compile_mode_compile_dynamic_shape_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_vmap_in_combine_fn_compile_mode_compile_dynamic_shape_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_vmap_in_combine_fn_compile_mode_compile_dynamic_shape_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_vmap_in_combine_fn_compile_mode_compile_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_vmap_in_combine_fn_compile_mode_compile_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_vmap_in_combine_fn_compile_mode_compile_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_vmap_in_combine_fn_compile_mode_compile_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_vmap_in_combine_fn_compile_mode_eager_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_vmap_in_combine_fn_compile_mode_eager_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_vmap_in_combine_fn_compile_mode_eager_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_vmap_in_combine_fn_compile_mode_eager_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_vmap_in_combine_fn_compile_mode_none_reverse_False_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_vmap_in_combine_fn_compile_mode_none_reverse_False_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_vmap_in_combine_fn_compile_mode_none_reverse_True_cpu, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_vmap_in_combine_fn_compile_mode_none_reverse_True_cuda, test/functorch/test_control_flow.py::AssociativeScanTests::test_associative_scan_wrong_pytree, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_accepts_torch_function_as_inputs, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_autograd_backward, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_eager_run_with_item, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_functionalized, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_functionalized_aot_func_check_functional, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_functionalized_data_dependent_pred, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_functionalized_input_aliasing_with_aot_func, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_functionalized_input_mutation_on_false_branch, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_functionalized_input_mutation_on_true_branch, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_functionalized_nested, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_functionalized_nested_input_mutation, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_functionalized_nested_input_mutation_with_aot_func, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_functionalized_output_alias_input, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_make_fx_preserve_stack_trace_for_nodes_in_subgraph, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_merge_graph_preserves_ph_meta, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_mismatched_branch_output_dynamic_False_backend_aot_eager, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_mismatched_branch_output_dynamic_False_backend_eager, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_mismatched_branch_output_dynamic_True_backend_aot_eager, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_mismatched_branch_output_dynamic_True_backend_eager, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_mismatched_branch_strided_output_dynamic_False_backend_aot_eager, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_mismatched_branch_strided_output_dynamic_False_backend_eager, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_mismatched_branch_strided_output_dynamic_True_backend_aot_eager, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_mismatched_branch_strided_output_dynamic_True_backend_eager, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_nested_traced, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_nested_traced_fake_tensor, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_nested_traced_multi, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_nested_traced_multi_fake_tensor, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_nested_traced_other_inputs, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_nested_traced_other_inputs_fake_tensor, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_nested_with_closure, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_nested_with_closure_graph_module, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_no_dynamo_cache_limit, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_retrace_functionalized, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_simple_with_linear_compile_check_graph, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_subgraph_same_shape_env_as_parent, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_symint_closure, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_symint_operands_requires_grad_False, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_symint_operands_requires_grad_True, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_trace_set__and_mutate_input, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_trace_set__and_mutate_intermediate, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_traced_not_nested, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_traced_not_nested_fake_tensor, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_boolTensor_innerFnType_function_nOperands_0_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_boolTensor_innerFnType_function_nOperands_0_nClosure_0_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_boolTensor_innerFnType_function_nOperands_0_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_boolTensor_innerFnType_function_nOperands_0_nClosure_1_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_boolTensor_innerFnType_function_nOperands_1_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_boolTensor_innerFnType_function_nOperands_1_nClosure_0_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_boolTensor_innerFnType_function_nOperands_1_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_boolTensor_innerFnType_function_nOperands_1_nClosure_1_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_boolTensor_innerFnType_module_nOperands_0_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_boolTensor_innerFnType_module_nOperands_0_nClosure_0_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_boolTensor_innerFnType_module_nOperands_0_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_boolTensor_innerFnType_module_nOperands_0_nClosure_1_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_boolTensor_innerFnType_module_nOperands_1_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_boolTensor_innerFnType_module_nOperands_1_nClosure_0_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_boolTensor_innerFnType_module_nOperands_1_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_boolTensor_innerFnType_module_nOperands_1_nClosure_1_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_boolTensor_innerFnType_object_nOperands_0_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_boolTensor_innerFnType_object_nOperands_0_nClosure_0_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_boolTensor_innerFnType_object_nOperands_0_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_boolTensor_innerFnType_object_nOperands_0_nClosure_1_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_boolTensor_innerFnType_object_nOperands_1_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_boolTensor_innerFnType_object_nOperands_1_nClosure_0_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_boolTensor_innerFnType_object_nOperands_1_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_boolTensor_innerFnType_object_nOperands_1_nClosure_1_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_bool_innerFnType_function_nOperands_0_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_bool_innerFnType_function_nOperands_0_nClosure_0_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_bool_innerFnType_function_nOperands_0_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_bool_innerFnType_function_nOperands_0_nClosure_1_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_bool_innerFnType_function_nOperands_1_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_bool_innerFnType_function_nOperands_1_nClosure_0_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_bool_innerFnType_function_nOperands_1_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_bool_innerFnType_function_nOperands_1_nClosure_1_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_bool_innerFnType_module_nOperands_0_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_bool_innerFnType_module_nOperands_0_nClosure_0_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_bool_innerFnType_module_nOperands_0_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_bool_innerFnType_module_nOperands_0_nClosure_1_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_bool_innerFnType_module_nOperands_1_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_bool_innerFnType_module_nOperands_1_nClosure_0_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_bool_innerFnType_module_nOperands_1_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_bool_innerFnType_module_nOperands_1_nClosure_1_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_bool_innerFnType_object_nOperands_0_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_bool_innerFnType_object_nOperands_0_nClosure_0_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_bool_innerFnType_object_nOperands_0_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_bool_innerFnType_object_nOperands_0_nClosure_1_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_bool_innerFnType_object_nOperands_1_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_bool_innerFnType_object_nOperands_1_nClosure_0_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_bool_innerFnType_object_nOperands_1_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_bool_innerFnType_object_nOperands_1_nClosure_1_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_floatTensor_innerFnType_function_nOperands_0_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_floatTensor_innerFnType_function_nOperands_0_nClosure_0_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_floatTensor_innerFnType_function_nOperands_0_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_floatTensor_innerFnType_function_nOperands_0_nClosure_1_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_floatTensor_innerFnType_function_nOperands_1_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_floatTensor_innerFnType_function_nOperands_1_nClosure_0_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_floatTensor_innerFnType_function_nOperands_1_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_floatTensor_innerFnType_function_nOperands_1_nClosure_1_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_floatTensor_innerFnType_module_nOperands_0_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_floatTensor_innerFnType_module_nOperands_0_nClosure_0_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_floatTensor_innerFnType_module_nOperands_0_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_floatTensor_innerFnType_module_nOperands_0_nClosure_1_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_floatTensor_innerFnType_module_nOperands_1_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_floatTensor_innerFnType_module_nOperands_1_nClosure_0_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_floatTensor_innerFnType_module_nOperands_1_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_floatTensor_innerFnType_module_nOperands_1_nClosure_1_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_floatTensor_innerFnType_object_nOperands_0_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_floatTensor_innerFnType_object_nOperands_0_nClosure_0_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_floatTensor_innerFnType_object_nOperands_0_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_floatTensor_innerFnType_object_nOperands_0_nClosure_1_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_floatTensor_innerFnType_object_nOperands_1_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_floatTensor_innerFnType_object_nOperands_1_nClosure_0_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_floatTensor_innerFnType_object_nOperands_1_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_floatTensor_innerFnType_object_nOperands_1_nClosure_1_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_intTensor_innerFnType_function_nOperands_0_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_intTensor_innerFnType_function_nOperands_0_nClosure_0_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_intTensor_innerFnType_function_nOperands_0_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_intTensor_innerFnType_function_nOperands_0_nClosure_1_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_intTensor_innerFnType_function_nOperands_1_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_intTensor_innerFnType_function_nOperands_1_nClosure_0_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_intTensor_innerFnType_function_nOperands_1_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_intTensor_innerFnType_function_nOperands_1_nClosure_1_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_intTensor_innerFnType_module_nOperands_0_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_intTensor_innerFnType_module_nOperands_0_nClosure_0_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_intTensor_innerFnType_module_nOperands_0_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_intTensor_innerFnType_module_nOperands_0_nClosure_1_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_intTensor_innerFnType_module_nOperands_1_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_intTensor_innerFnType_module_nOperands_1_nClosure_0_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_intTensor_innerFnType_module_nOperands_1_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_intTensor_innerFnType_module_nOperands_1_nClosure_1_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_intTensor_innerFnType_object_nOperands_0_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_intTensor_innerFnType_object_nOperands_0_nClosure_0_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_intTensor_innerFnType_object_nOperands_0_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_intTensor_innerFnType_object_nOperands_0_nClosure_1_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_intTensor_innerFnType_object_nOperands_1_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_intTensor_innerFnType_object_nOperands_1_nClosure_0_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_intTensor_innerFnType_object_nOperands_1_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_tracing_with_valid_inputs_predType_intTensor_innerFnType_object_nOperands_1_nClosure_1_nesting_2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_unbacked_symint_closure, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_vmap_multiple_args_with_closure, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_vmap_multiple_inputs, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_vmap_multiple_outputs_nClosure_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_vmap_multiple_outputs_nClosure_1, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_vmap_predType_boolTensor_innerFnType_function_nOperands_1_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_vmap_predType_boolTensor_innerFnType_function_nOperands_1_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_vmap_predType_boolTensor_innerFnType_function_nOperands_2_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_vmap_predType_boolTensor_innerFnType_function_nOperands_2_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_vmap_predType_boolTensor_innerFnType_module_nOperands_1_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_vmap_predType_boolTensor_innerFnType_module_nOperands_1_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_vmap_predType_boolTensor_innerFnType_module_nOperands_2_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_vmap_predType_boolTensor_innerFnType_module_nOperands_2_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_vmap_predType_boolTensor_innerFnType_object_nOperands_1_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_vmap_predType_boolTensor_innerFnType_object_nOperands_1_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_vmap_predType_boolTensor_innerFnType_object_nOperands_2_nClosure_0_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_vmap_predType_boolTensor_innerFnType_object_nOperands_2_nClosure_1_nesting_0, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_vmap_simple, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_vmap_single_input_with_closure, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_with_consecutive_make_fx_symbolic, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_with_module_param_closure, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_with_module_python_scalar_closure, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_with_sym_pred, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_with_tensor_closure, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_with_tensor_closure_graph_module, test/functorch/test_control_flow.py::TestControlFlowTraced::test_cond_with_unbacked_sym_pred, test/functorch/test_control_flow.py::TestControlFlowTraced::test_hop_raises_if_not_overriding_call, test/functorch/test_control_flow.py::TestControlFlowTraced::test_input_input_alias, test/functorch/test_control_flow.py::TestControlFlowTraced::test_input_mutation_inference_mode_False, test/functorch/test_control_flow.py::TestControlFlowTraced::test_input_mutation_inference_mode_True, test/functorch/test_control_flow.py::TestControlFlowTraced::test_input_output_alias, test/functorch/test_control_flow.py::TestControlFlowTraced::test_map_functionalized, test/functorch/test_control_flow.py::TestControlFlowTraced::test_map_functionalized_aot_func, test/functorch/test_control_flow.py::TestControlFlowTraced::test_map_functionalized_arg_mutation, test/functorch/test_control_flow.py::TestControlFlowTraced::test_map_functionalized_elem_alias, test/functorch/test_control_flow.py::TestControlFlowTraced::test_map_functionalized_elem_mutation, test/functorch/test_control_flow.py::TestControlFlowTraced::test_map_unfunc_boolean_tensor_for_nested_map_cond, test/functorch/test_control_flow.py::TestControlFlowTraced::test_merge_output, test/functorch/test_control_flow.py::TestControlFlowTraced::test_nested_cond_map_cond_symbolic, test/functorch/test_control_flow.py::TestControlFlowTraced::test_nested_map_cond_real, test/functorch/test_control_flow.py::TestControlFlowTraced::test_nested_map_cond_symbolic, test/functorch/test_control_flow.py::TestControlFlowTraced::test_raise_error_on_mismatch_tensor_size, test/functorch/test_control_flow.py::TestControlFlowTraced::test_raise_error_on_mismatch_tensor_size_fake_tensor, test/functorch/test_control_flow.py::TestControlFlowTraced::test_raise_error_on_mismatch_type_size, test/functorch/test_control_flow.py::TestControlFlowTraced::test_raise_error_on_mismatch_type_size_fake_tensor, test/functorch/test_control_flow.py::TestControlFlowTraced::test_scan_functionalized, test/functorch/test_control_flow.py::TestControlFlowTraced::test_scan_functionalized_elem_alias, test/functorch/test_control_flow.py::TestControlFlowTraced::test_scan_functionalized_elem_mutation, test/functorch/test_control_flow.py::TestControlFlowTraced::test_scan_pytree_closure, test/functorch/test_control_flow.py::TestControlFlowTraced::test_tracing_map_autograd_aot_functionalized, test/functorch/test_control_flow.py::TestControlFlowTraced::test_tracing_map_autograd_symbolic_dict, test/functorch/test_control_flow.py::TestControlFlowTraced::test_tracing_map_autograd_symbolic_list, test/functorch/test_control_flow.py::TestControlFlowTraced::test_tracing_map_autograd_symbolic_simple, test/functorch/test_control_flow.py::TestControlFlowTraced::test_tracing_map_real, test/functorch/test_control_flow.py::TestControlFlowTraced::test_tracing_map_symbolic_dict, test/functorch/test_control_flow.py::TestControlFlowTraced::test_tracing_map_symbolic_list, test/functorch/test_control_flow.py::TestControlFlowTraced::test_tracing_map_symbolic_simple, test/functorch/test_control_flow.py::TestControlFlowTraced::test_two_hops_not_sharing_code_obj, test/functorch/test_control_flow.py::TestControlFlowTraced::test_vmap_vmap_boolcond_False, test/functorch/test_control_flow.py::TestControlFlowTraced::test_vmap_vmap_boolcond_True, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_compile_backend_aot_eager_while_loop_test_const_and_symint_output, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_compile_backend_aot_eager_while_loop_test_int_carry, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_compile_backend_aot_eager_while_loop_test_nested, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_compile_backend_aot_eager_while_loop_test_nested2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_compile_backend_aot_eager_while_loop_test_nested_with_linear, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_compile_backend_aot_eager_while_loop_test_pytree_int_carry, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_compile_backend_aot_eager_while_loop_test_simple, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_compile_backend_aot_eager_while_loop_test_simple_with_linear, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_compile_backend_aot_eager_while_loop_test_simple_with_mutation, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_compile_backend_aot_eager_while_loop_test_simple_with_pytree_carry, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_compile_backend_eager_while_loop_test_const_and_symint_output, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_compile_backend_eager_while_loop_test_int_carry, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_compile_backend_eager_while_loop_test_nested, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_compile_backend_eager_while_loop_test_nested2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_compile_backend_eager_while_loop_test_nested_with_linear, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_compile_backend_eager_while_loop_test_pytree_int_carry, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_compile_backend_eager_while_loop_test_simple, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_compile_backend_eager_while_loop_test_simple_with_linear, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_compile_backend_eager_while_loop_test_simple_with_mutation, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_compile_backend_eager_while_loop_test_simple_with_pytree_carry, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_functionalize_func_type_cpp_while_loop_test_nested, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_functionalize_func_type_cpp_while_loop_test_nested2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_functionalize_func_type_cpp_while_loop_test_simple, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_functionalize_func_type_cpp_while_loop_test_simple_with_mutation, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_functionalize_func_type_cpp_while_loop_test_simple_with_pytree_carry, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_functionalize_func_type_functorch_while_loop_test_nested, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_functionalize_func_type_functorch_while_loop_test_nested2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_functionalize_func_type_functorch_while_loop_test_simple, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_functionalize_func_type_functorch_while_loop_test_simple_with_mutation, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_functionalize_func_type_functorch_while_loop_test_simple_with_pytree_carry, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_functionalize_func_type_no_while_loop_test_nested, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_functionalize_func_type_no_while_loop_test_nested2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_functionalize_func_type_no_while_loop_test_simple, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_functionalize_func_type_no_while_loop_test_simple_with_mutation, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_functionalize_func_type_no_while_loop_test_simple_with_pytree_carry, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_functionalize_func_type_python_while_loop_test_nested, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_functionalize_func_type_python_while_loop_test_nested2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_functionalize_func_type_python_while_loop_test_simple, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_functionalize_func_type_python_while_loop_test_simple_with_mutation, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_functionalize_func_type_python_while_loop_test_simple_with_pytree_carry, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_nested2_traced, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_nested_traced, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_constant_and_symint_output_compile_dynamic_False_backend_aot_eager, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_constant_and_symint_output_compile_dynamic_False_backend_eager, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_constant_and_symint_output_compile_dynamic_True_backend_aot_eager, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_constant_and_symint_output_compile_dynamic_True_backend_eager, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_constant_and_symint_output_export_strict_False_dynamic_False, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_constant_and_symint_output_export_strict_False_dynamic_True, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_constant_and_symint_output_export_strict_True_dynamic_False, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_constant_and_symint_output_export_strict_True_dynamic_True, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_int_carry_compile_dynamic_False_backend_aot_eager, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_int_carry_compile_dynamic_False_backend_eager, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_int_carry_compile_dynamic_True_backend_aot_eager, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_int_carry_compile_dynamic_True_backend_eager, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_int_carry_export_strict_False_dynamic_False, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_int_carry_export_strict_False_dynamic_True, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_int_carry_export_strict_True_dynamic_False, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_int_carry_export_strict_True_dynamic_True, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_mismatch_in_meta, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_pytree_int_carry_compile_dynamic_False_backend_aot_eager, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_pytree_int_carry_compile_dynamic_False_backend_eager, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_pytree_int_carry_compile_dynamic_True_backend_aot_eager, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_pytree_int_carry_compile_dynamic_True_backend_eager, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_pytree_int_carry_export_strict_False_dynamic_False, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_pytree_int_carry_export_strict_False_dynamic_True, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_pytree_int_carry_export_strict_True_dynamic_False, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_op_pytree_int_carry_export_strict_True_dynamic_True, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_pytree_carry, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_simple_functionalize_check_graph_func_type_cpp, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_simple_functionalize_check_graph_func_type_functorch, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_simple_functionalize_check_graph_func_type_no, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_simple_functionalize_check_graph_func_type_python, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_simple_with_linear_compile_check_graph, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_tracing_while_loop_test_nested, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_tracing_while_loop_test_nested2, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_tracing_while_loop_test_nested_with_linear, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_tracing_while_loop_test_simple, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_tracing_while_loop_test_simple_with_linear, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_tracing_while_loop_test_simple_with_mutation, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_tracing_while_loop_test_simple_with_pytree_carry, test/functorch/test_control_flow.py::TestControlFlowTraced::test_while_loop_unbacked_bindings, test/functorch/test_control_flow.py::TestHopSchema::test_function_schema_gen, test/functorch/test_control_flow.py::TestHopSchema::test_list_gen_schema_type_GraphModule, test/functorch/test_control_flow.py::TestHopSchema::test_list_gen_schema_type_ScriptObj, test/functorch/test_control_flow.py::TestHopSchema::test_list_gen_schema_type_SymBool, test/functorch/test_control_flow.py::TestHopSchema::test_list_gen_schema_type_SymInt, test/functorch/test_control_flow.py::TestHopSchema::test_list_gen_schema_type_Tensor, test/functorch/test_control_flow.py::TestHopSchema::test_list_gen_schema_type_bool, test/functorch/test_control_flow.py::TestHopSchema::test_list_gen_schema_type_float, test/functorch/test_control_flow.py::TestHopSchema::test_list_gen_schema_type_int, test/functorch/test_control_flow.py::TestHopSchema::test_list_gen_schema_type_str, test/functorch/test_control_flow.py::TestHopSchema::test_schema_tree_spec, test/functorch/test_control_flow.py::TestHopSchema::test_type_gen_schema_type_GraphModule, test/functorch/test_control_flow.py::TestHopSchema::test_type_gen_schema_type_ScriptObj, test/functorch/test_control_flow.py::TestHopSchema::test_type_gen_schema_type_SymBool, test/functorch/test_control_flow.py::TestHopSchema::test_type_gen_schema_type_SymInt, test/functorch/test_control_flow.py::TestHopSchema::test_type_gen_schema_type_Tensor, test/functorch/test_control_flow.py::TestHopSchema::test_type_gen_schema_type_bool, test/functorch/test_control_flow.py::TestHopSchema::test_type_gen_schema_type_float, test/functorch/test_control_flow.py::TestHopSchema::test_type_gen_schema_type_int, test/functorch/test_control_flow.py::TestHopSchema::test_type_gen_schema_type_str, test/functorch/test_control_flow.py::TestHopSchema::test_while_loop_schema_gen 2025-08-14T22:28:25.5053950Z 2025-08-14T22:28:27.6146085Z 2025-08-14T22:28:27.6146959Z functorch/test_ac_logging 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ac_logging_1.1_8d60aa82068828af_.log 2025-08-14T22:28:27.6149467Z Running 4 items in this shard: test/functorch/test_ac_logging.py::TestAcLogging::test_create_activation_checkpointing_logging_structure_payload, test/functorch/test_ac_logging.py::TestAcLogging::test_create_joint_graph_edges, test/functorch/test_ac_logging.py::TestAcLogging::test_create_joint_graph_node_information, test/functorch/test_ac_logging.py::TestAcLogging::test_create_structured_trace_for_min_cut_info 2025-08-14T22:28:27.6151203Z 2025-08-14T22:28:30.9606121Z Running test_mkl_verbose 1/1 ... [2025-08-14 22:28:30.952518] 2025-08-14T22:28:30.9606820Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:28:30.9613050Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_mkl_verbose.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:28:30.952518] 2025-08-14T22:28:33.2671521Z Running test_autoload 1/1 ... [2025-08-14 22:28:33.266815] 2025-08-14T22:28:33.2672006Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:28:33.2679245Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_autoload.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:28:33.267460] 2025-08-14T22:28:38.5406735Z 2025-08-14T22:28:38.5407958Z test_autoload 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_autoload_1.1_8fd4b0d3544bcfc8_.log 2025-08-14T22:28:38.5409113Z Running 1 items in this shard: test/test_autoload.py::TestDeviceBackendAutoload::test_autoload 2025-08-14T22:28:38.5409583Z 2025-08-14T22:28:41.0492361Z 2025-08-14T22:28:41.0493539Z test_mkl_verbose 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_mkl_verbose_1.1_a49121b3238ada03_.log 2025-08-14T22:28:41.0494763Z Running 2 items in this shard: test/test_mkl_verbose.py::TestMKLVerbose::test_verbose_off, test/test_mkl_verbose.py::TestMKLVerbose::test_verbose_on 2025-08-14T22:28:41.0495407Z 2025-08-14T22:28:44.2414346Z Running test_proxy_tensor 1/2 ... [2025-08-14 22:28:44.231144] 2025-08-14T22:28:44.2415600Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:28:44.2419777Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_proxy_tensor.py', '-m', 'not serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:28:44.241457] 2025-08-14T22:28:46.6745665Z Running test_ao_sparsity 1/1 ... [2025-08-14 22:28:46.674298] 2025-08-14T22:28:46.6746152Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:28:46.6765348Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ao_sparsity.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:28:46.676024] 2025-08-14T22:28:58.2894654Z 2025-08-14T22:28:58.2896501Z higher_order_ops/test_invoke_subgraph 1/1 was successful, full logs can be found in artifacts with path test/test-reports/higher_order_ops.test_invoke_subgraph_1.1_2ce21b4661fd7018_.log 2025-08-14T22:28:58.2939682Z Running 66 items in this shard: test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraph::test_aot_function, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraph::test_multiple, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraph::test_simple, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_ac, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_ac_rng, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_auto_functionalize, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_autograd_function, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_buffer_mutation_errors_under_training, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_buffer_mutation_works_under_no_grad, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_bwd_partitioning, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_complex, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_const_tensor, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_dce, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_dedupe, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_different_strides_in_backward, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_different_symint, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_differing_strides_for_grad_outs, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_div, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_dropout_checks_joint_graph, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_dropout_checks_joint_graph_inference, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_dynamic, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_fail_with_direct_invoke_subgraph, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_fake_tensor_checking, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_gen_schema, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_gen_schema_with_buffer_mutation, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_input_input_aliasing, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_input_mutation, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_input_mutation_inference_mode, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_input_mutation_mutiple_times, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_input_mutation_mutiple_times_fake_tensor_cahche_hit, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_input_output_aliasing, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_kwargs_only, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_list, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_mod_attr_aliasing, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_module, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_module_forward, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_module_method, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_nonlocal_update, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_normalize_gm, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_output_output_aliasing, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_pending_unbacked, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_preserves_output_strides, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_preserves_strides, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_redundant_compile_region, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_return_none, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_return_none_from_fwd, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_sdpa, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_simple, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_simple_module, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_symint_from_fwd_to_bwd, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_triton_kernel_native, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_tuple_of_tuple, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_unbacked, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_unbacked_symbol, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphCompile::test_view_to_reshape, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphExportNonstrict::test_multiple_module, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphExportNonstrict::test_pending_unbacked, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphExportNonstrict::test_simple_func, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphExportNonstrict::test_simple_method, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphExportNonstrict::test_unbacked, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphExportStrict::test_multiple_module, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphExportStrict::test_pending_unbacked, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphExportStrict::test_simple_func, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphExportStrict::test_simple_method, test/higher_order_ops/test_invoke_subgraph.py::TestInvokeSubgraphExportStrict::test_unbacked, test/higher_order_ops/test_invoke_subgraph.py::NegativeTesting::test_graph_break 2025-08-14T22:28:58.2981207Z 2025-08-14T22:28:59.5249943Z 2025-08-14T22:28:59.5250824Z test_ao_sparsity 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_ao_sparsity_1.1_7eb40b9060c65e21_.log 2025-08-14T22:28:59.5279925Z Running 88 items in this shard: test/test_ao_sparsity.py::TestQuantizedSparseKernels::test_sparse_qlinear, test/test_ao_sparsity.py::TestQuantizedSparseLayers::test_sparse_qlinear, test/test_ao_sparsity.py::TestQuantizedSparseLayers::test_sparse_qlinear_serdes, test/test_ao_sparsity.py::TestFakeSparsity::test_jit_trace, test/test_ao_sparsity.py::TestFakeSparsity::test_masking_logic, test/test_ao_sparsity.py::TestFakeSparsity::test_state_dict_preserved, test/test_ao_sparsity.py::TestFakeSparsity::test_weights_parametrized, test/test_ao_sparsity.py::TestCubicScheduler::test_constructor, test/test_ao_sparsity.py::TestCubicScheduler::test_step, test/test_ao_sparsity.py::TestScheduler::test_constructor, test/test_ao_sparsity.py::TestScheduler::test_lambda_scheduler, test/test_ao_sparsity.py::TestScheduler::test_order_of_steps, test/test_ao_sparsity.py::TestScheduler::test_step, test/test_ao_sparsity.py::TestBaseSparsifier::test_constructor, test/test_ao_sparsity.py::TestBaseSparsifier::test_convert, test/test_ao_sparsity.py::TestBaseSparsifier::test_mask_squash, test/test_ao_sparsity.py::TestBaseSparsifier::test_mask_squash_with_params1, test/test_ao_sparsity.py::TestBaseSparsifier::test_mask_squash_with_params2, test/test_ao_sparsity.py::TestBaseSparsifier::test_mask_squash_with_params3, test/test_ao_sparsity.py::TestBaseSparsifier::test_prepare_config, test/test_ao_sparsity.py::TestBaseSparsifier::test_state_dict, test/test_ao_sparsity.py::TestBaseSparsifier::test_step, test/test_ao_sparsity.py::TestNearlyDiagonalSparsifier::test_constructor, test/test_ao_sparsity.py::TestNearlyDiagonalSparsifier::test_mask_squash, test/test_ao_sparsity.py::TestNearlyDiagonalSparsifier::test_prepare, test/test_ao_sparsity.py::TestNearlyDiagonalSparsifier::test_sparsity_levels, test/test_ao_sparsity.py::TestNearlyDiagonalSparsifier::test_step, test/test_ao_sparsity.py::TestWeightNormSparsifier::test_constructor, test/test_ao_sparsity.py::TestWeightNormSparsifier::test_mask_squash, test/test_ao_sparsity.py::TestWeightNormSparsifier::test_prepare, test/test_ao_sparsity.py::TestWeightNormSparsifier::test_sparsity_levels, test/test_ao_sparsity.py::TestWeightNormSparsifier::test_step, test/test_ao_sparsity.py::TestWeightNormSparsifier::test_step_2_of_4, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_complex_conv2d, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_constructor, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prepare_conv2d, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prepare_linear, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prune_conv2d_activation_conv2d, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prune_conv2d_bias_conv2d, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prune_conv2d_conv2d, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prune_conv2d_padding_conv2d, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prune_conv2d_pool_conv2d, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prune_linear_activation_linear, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prune_linear_bias_linear, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prune_linear_linear, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prune_lstm_layernorm_linear_multiple_layer, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prune_lstm_layernorm_linear_single_layer, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prune_lstm_linear_multiple_layer, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_prune_lstm_linear_single_layer, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_step_conv2d, test/test_ao_sparsity.py::TestBaseStructuredSparsifier::test_step_linear, test/test_ao_sparsity.py::TestFPGMPruner::test_compute_distance, test/test_ao_sparsity.py::TestFPGMPruner::test_update_mask, test/test_ao_sparsity.py::TestSaliencyPruner::test_lstm_saliency_pruner_update_mask, test/test_ao_sparsity.py::TestSaliencyPruner::test_saliency_pruner_update_mask, test/test_ao_sparsity.py::TestComposability::test_convert_without_squash_mask, test/test_ao_sparsity.py::TestComposability::test_fusion_before_s_prep, test/test_ao_sparsity.py::TestComposability::test_q_prep_before_s_prep, test/test_ao_sparsity.py::TestComposability::test_qat_prep_before_s_prep, test/test_ao_sparsity.py::TestComposability::test_s_prep_before_fusion, test/test_ao_sparsity.py::TestComposability::test_s_prep_before_q_prep, test/test_ao_sparsity.py::TestComposability::test_s_prep_before_qat_prep, test/test_ao_sparsity.py::TestFxComposability::test_q_prep_fx_before_s_prep, test/test_ao_sparsity.py::TestFxComposability::test_q_prep_fx_s_prep_ref_conv, test/test_ao_sparsity.py::TestFxComposability::test_s_prep_before_q_prep_fx, test/test_ao_sparsity.py::TestFxComposability::test_s_prep_before_qat_prep_fx, test/test_ao_sparsity.py::TestFxComposability::test_s_prep_q_prep_fx_ref, test/test_ao_sparsity.py::TestActivationSparsifier::test_activation_sparsifier, test/test_ao_sparsity.py::TestBaseDataScheduler::test_constructor, test/test_ao_sparsity.py::TestBaseDataScheduler::test_order_of_steps, test/test_ao_sparsity.py::TestBaseDataScheduler::test_state_dict, test/test_ao_sparsity.py::TestBaseDataScheduler::test_step, test/test_ao_sparsity.py::TestBaseDataSparsifier::test_nn_embeddings, test/test_ao_sparsity.py::TestBaseDataSparsifier::test_nn_parameters, test/test_ao_sparsity.py::TestBaseDataSparsifier::test_tensors, test/test_ao_sparsity.py::TestNormDataSparsifiers::test_nn_embeddings, test/test_ao_sparsity.py::TestNormDataSparsifiers::test_nn_parameters, test/test_ao_sparsity.py::TestNormDataSparsifiers::test_tensors, test/test_ao_sparsity.py::TestQuantizationUtils::test_ptq_quantize_first, test/test_ao_sparsity.py::TestQuantizationUtils::test_ptq_sparsify_first, test/test_ao_sparsity.py::TestSparsityUtilFunctions::test_fqn_to_module, test/test_ao_sparsity.py::TestSparsityUtilFunctions::test_fqn_to_module_fail, test/test_ao_sparsity.py::TestSparsityUtilFunctions::test_fqn_to_module_for_tensors, test/test_ao_sparsity.py::TestSparsityUtilFunctions::test_get_arg_info_from_tensor_fqn, test/test_ao_sparsity.py::TestSparsityUtilFunctions::test_get_arg_info_from_tensor_fqn_fail, test/test_ao_sparsity.py::TestSparsityUtilFunctions::test_module_to_fqn, test/test_ao_sparsity.py::TestSparsityUtilFunctions::test_module_to_fqn_fail, test/test_ao_sparsity.py::TestSparsityUtilFunctions::test_module_to_fqn_root 2025-08-14T22:28:59.5306793Z 2025-08-14T22:29:03.8695387Z Running test_license 1/1 ... [2025-08-14 22:29:03.868985] 2025-08-14T22:29:03.8695876Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:29:03.8702997Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_license.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:29:03.869610] 2025-08-14T22:29:05.3060983Z Running torch_np/test_binary_ufuncs 1/1 ... [2025-08-14 22:29:05.304757] 2025-08-14T22:29:05.3061536Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:29:05.3068559Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_binary_ufuncs.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:29:05.304757] 2025-08-14T22:29:09.2656721Z 2025-08-14T22:29:09.2658056Z test_license 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_license_1.1_3f4d94cafe516119_.log 2025-08-14T22:29:09.2660079Z Running 2 items in this shard: test/test_license.py::TestLicense::test_distinfo_license, test/test_license.py::TestLicense::test_license_for_wheel 2025-08-14T22:29:09.2661137Z 2025-08-14T22:29:11.4527006Z 2025-08-14T22:29:11.4528261Z torch_np/test_binary_ufuncs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_binary_ufuncs_1.1_06bfb7972fbdc2c4_.log 2025-08-14T22:29:11.4541263Z Running 38 items in this shard: test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_add, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_arctan2, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_bitwise_and, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_bitwise_or, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_bitwise_xor, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_copysign, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_divide, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_equal, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_float_power, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_floor_divide, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_fmax, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_fmin, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_fmod, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_gcd, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_greater, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_greater_equal, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_heaviside, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_hypot, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_lcm, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_ldexp, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_left_shift, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_less, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_less_equal, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_logaddexp, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_logaddexp2, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_logical_and, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_logical_or, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_logical_xor, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_matmul, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_maximum, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_minimum, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_multiply, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_nextafter, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_not_equal, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_power, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_remainder, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_right_shift, test/torch_np/test_binary_ufuncs.py::TestBinaryUfuncBasic::test_subtract 2025-08-14T22:29:11.4553079Z 2025-08-14T22:29:15.2593238Z Running xpu/test_fusion 1/1 ... [2025-08-14 22:29:15.258543] 2025-08-14T22:29:15.2593698Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:29:15.2600133Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'xpu/test_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:29:15.259754] 2025-08-14T22:29:17.0143797Z Running torch_np/test_unary_ufuncs 1/1 ... [2025-08-14 22:29:17.013851] 2025-08-14T22:29:17.0144410Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:29:17.0153044Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_unary_ufuncs.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:29:17.014475] 2025-08-14T22:29:20.5551367Z 2025-08-14T22:29:20.5552290Z xpu/test_fusion 1/1 was successful, full logs can be found in artifacts with path test/test-reports/xpu.test_fusion_1.1_84cc77a60b76e501_.log 2025-08-14T22:29:20.5553083Z Running 0 items in this shard: 2025-08-14T22:29:20.5553285Z 2025-08-14T22:29:23.0706552Z 2025-08-14T22:29:23.0707911Z torch_np/test_unary_ufuncs 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_unary_ufuncs_1.1_54a2ee8bd4fe7df9_.log 2025-08-14T22:29:23.0719909Z Running 42 items in this shard: test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_absolute, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_arccos, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_arccosh, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_arcsin, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_arcsinh, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_arctan, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_arctanh, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_cbrt, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_ceil, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_conjugate, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_cos, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_cosh, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_deg2rad, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_degrees, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_exp, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_exp2, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_expm1, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_fabs, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_floor, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_isfinite, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_isinf, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_isnan, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_log, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_log10, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_log1p, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_log2, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_logical_not, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_negative, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_positive, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_rad2deg, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_radians, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_reciprocal, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_rint, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_sign, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_signbit, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_sin, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_sinh, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_sqrt, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_square, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_tan, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_tanh, test/torch_np/test_unary_ufuncs.py::TestUnaryUfuncs::test_trunc 2025-08-14T22:29:23.0731996Z 2025-08-14T22:29:26.5241452Z Running test_foreach 1/1 ... [2025-08-14 22:29:26.519585] 2025-08-14T22:29:26.5241939Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:29:26.5243165Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_foreach.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:29:26.520470] 2025-08-14T22:29:28.7158270Z Running test_expanded_weights 1/1 ... [2025-08-14 22:29:28.713823] 2025-08-14T22:29:28.7158814Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:29:28.7165231Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_expanded_weights.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:29:28.713823] 2025-08-14T22:29:49.6162723Z 2025-08-14T22:29:49.6170420Z test_expanded_weights 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_expanded_weights_1.1_1f3a37fd40bab06c_.log 2025-08-14T22:29:49.6325009Z Running 189 items in this shard: test/test_expanded_weights.py::TestExpandedWeightHelperFunctionCPU::test_forward_helper_cpu, test/test_expanded_weights.py::TestExpandedWeightHelperFunctionCPU::test_forward_helper_failure_args_cpu, test/test_expanded_weights.py::TestExpandedWeightHelperFunctionCPU::test_set_grad_sample_if_exists_cpu, test/test_expanded_weights.py::TestExpandedWeightHelperFunctionCPU::test_set_grad_sample_if_exists_failure_cpu, test/test_expanded_weights.py::TestExpandedWeightHelperFunctionCPU::test_sum_over_all_but_batch_and_last_n_cpu, test/test_expanded_weights.py::TestExpandedWeightHelperFunctionCPU::test_unpack_expanded_weight_or_tensor_cpu, test/test_expanded_weights.py::TestExpandedWeightHelperFunctionCPU::test_unpack_expanded_weight_or_tensor_failure_cpu, test/test_expanded_weights.py::TestExpandedWeightHelperFunctionCPU::test_unpack_expanded_weight_or_tensor_with_custom_function_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_cnn_model_mean_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_cnn_model_sum_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_embedding_model_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_error_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv1d_cpu_bfloat16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv1d_cpu_complex128, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv1d_cpu_complex64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv1d_cpu_float16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv1d_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv1d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv1d_cpu_int64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv2d_cpu_bfloat16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv2d_cpu_complex128, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv2d_cpu_complex64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv2d_cpu_float16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv2d_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv2d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv2d_cpu_int64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv3d_cpu_bfloat16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv3d_cpu_complex128, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv3d_cpu_complex64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv3d_cpu_float16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv3d_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv3d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_conv3d_cpu_int64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_embedding_cpu_bfloat16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_embedding_cpu_float16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_embedding_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_embedding_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_group_norm_cpu_bfloat16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_group_norm_cpu_float16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_group_norm_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_group_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_instance_norm_cpu_bfloat16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_instance_norm_cpu_float16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_instance_norm_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_instance_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_layer_norm_cpu_bfloat16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_layer_norm_cpu_float16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_layer_norm_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_layer_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_linear_cpu_bfloat16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_linear_cpu_complex128, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_linear_cpu_complex64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_linear_cpu_float16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_linear_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_linear_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_linear_cpu_int16, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_linear_cpu_int32, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_linear_cpu_int64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_linear_cpu_int8, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_forward_nn_functional_linear_cpu_uint8, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_mean_nn_functional_conv1d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_mean_nn_functional_conv2d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_mean_nn_functional_conv3d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_mean_nn_functional_embedding_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_mean_nn_functional_group_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_mean_nn_functional_instance_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_mean_nn_functional_layer_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_mean_nn_functional_linear_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_sum_nn_functional_conv1d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_sum_nn_functional_conv2d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_sum_nn_functional_conv3d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_sum_nn_functional_embedding_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_sum_nn_functional_group_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_sum_nn_functional_instance_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_sum_nn_functional_layer_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weight_per_sample_grad_sum_nn_functional_linear_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weights_per_sample_grad_input_no_grad_nn_functional_conv1d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weights_per_sample_grad_input_no_grad_nn_functional_conv2d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weights_per_sample_grad_input_no_grad_nn_functional_conv3d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weights_per_sample_grad_input_no_grad_nn_functional_embedding_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weights_per_sample_grad_input_no_grad_nn_functional_group_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weights_per_sample_grad_input_no_grad_nn_functional_instance_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weights_per_sample_grad_input_no_grad_nn_functional_layer_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_expanded_weights_per_sample_grad_input_no_grad_nn_functional_linear_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_group_norm_error_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_group_norm_model_num_dim_1_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_group_norm_model_num_dim_2_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_group_norm_model_num_dim_3_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_instance_norm_model_num_dim_1_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_instance_norm_model_num_dim_2_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_instance_norm_model_num_dim_3_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_layer_norm_model_num_dim_1_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_layer_norm_model_num_dim_2_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_layer_norm_model_num_dim_3_cpu, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_unsupported_expand_weights_nn_functional_conv1d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_unsupported_expand_weights_nn_functional_conv2d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_unsupported_expand_weights_nn_functional_conv3d_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_unsupported_expand_weights_nn_functional_embedding_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_unsupported_expand_weights_nn_functional_group_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_unsupported_expand_weights_nn_functional_instance_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_unsupported_expand_weights_nn_functional_layer_norm_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightFunctionalCPU::test_unsupported_expand_weights_nn_functional_linear_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_circular_stride2_pad2_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_circular_stride2_pad2_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_pad1_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_pad1_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_pad1size1_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_pad1size1_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_pad2_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_pad2_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_pad2size1_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_pad2size1_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_reflect_stride2_pad2_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_reflect_stride2_pad2_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_replicate_stride2_pad2_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_replicate_stride2_pad2_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_stride_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_stride_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_zero_batch_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_zero_batch_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_zeros_stride2_pad2_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv1d_zeros_stride2_pad2_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_circular_stride2_pad2_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_circular_stride2_pad2_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_dilated_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_dilated_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_no_bias_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_no_bias_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_padding_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_padding_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_reflect_stride2_pad2_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_reflect_stride2_pad2_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_replicate_stride2_pad2_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_replicate_stride2_pad2_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_strided_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_strided_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_zero_batch_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_zero_batch_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_zeros_stride2_pad2_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv2d_zeros_stride2_pad2_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_1x1x1_no_bias_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_1x1x1_no_bias_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_circular_stride2_pad2_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_circular_stride2_pad2_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_no_bias_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_no_bias_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_replicate_stride2_pad2_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_replicate_stride2_pad2_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_stride_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_stride_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_stride_padding_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_stride_padding_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_zero_batch_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_zero_batch_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_zeros_stride2_pad2_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Conv3d_zeros_stride2_pad2_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Embedding_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Embedding_discontiguous_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Embedding_discontiguous_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Embedding_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_LayerNorm_3d_no_affine_large_feature_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_LayerNorm_3d_no_affine_large_feature_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Linear_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Linear_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Linear_no_batch_dim_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Linear_no_batch_dim_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Linear_no_bias_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_Linear_no_bias_multiple_inputs_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_module_nn_GRU_eval_mode_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_module_nn_GRU_eval_mode_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_module_nn_GRU_train_mode_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_module_nn_GRU_train_mode_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_module_nn_LSTM_eval_mode_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_module_nn_LSTM_eval_mode_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_module_nn_LSTM_train_mode_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_module_nn_LSTM_train_mode_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_module_nn_RNN_eval_mode_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_module_nn_RNN_eval_mode_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_module_nn_RNN_train_mode_cpu_float32, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_module_nn_RNN_train_mode_cpu_float64, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_per_sample_api_compute_batch_size_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_per_sample_api_compute_batch_size_not_pytreeable_cpu, test/test_expanded_weights.py::TestExpandedWeightModuleCPU::test_per_sample_api_failing_cpu 2025-08-14T22:29:49.6486828Z 2025-08-14T22:29:55.8480665Z Running typing/test_python_operators 1/1 ... [2025-08-14 22:29:55.847152] 2025-08-14T22:29:55.8481180Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:29:55.8488564Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'typing/test_python_operators.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:29:55.848356] 2025-08-14T22:30:03.3998525Z 2025-08-14T22:30:03.4000078Z typing/test_python_operators 1/1 was successful, full logs can be found in artifacts with path test/test-reports/typing.test_python_operators_1.1_740dfa7c91582523_.log 2025-08-14T22:30:03.4171236Z Running 318 items in this shard: test/typing/test_python_operators.py::TestPythonOperators::test_binary_a100_op_%_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a101_op_%_b101, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a102_op_%_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a103_op_%_b103, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a104_op_*_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a105_op_*_b105, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a106_op_*_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a107_op_*_b107, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a108_op_**_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a109_op_**_b109, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a110_op_**_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a111_op_**_b111, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a112_op_+_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a113_op_+_b113, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a114_op_+_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a115_op_+_b115, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a116_op_-_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a117_op_-_b117, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a118_op_-_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a119_op_-_b119, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a120_op_/_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a121_op_/_b121, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a122_op_/_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a123_op_/_b123, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a124_op_//_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a125_op_//_b125, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a126_op_//_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a127_op_//_b127, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a128_op_&_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a129_op_&_b129, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a130_op_&_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a131_op_&_b131, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a132_op_<<_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a133_op_<<_b133, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a134_op_<<_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a135_op_<<_b135, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a136_op_>>_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a137_op_>>_b137, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a138_op_>>_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a139_op_>>_b139, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a140_op_^_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a141_op_^_b141, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a142_op_^_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a143_op_^_b143, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a144_op_|_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a145_op_|_b145, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a146_op_|_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a147_op_|_b147, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a148_op_@_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a149_op_@_b149, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a150_op_@_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a151_op_@_b151, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a228_op_!=_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a229_op_!=_b229, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a230_op_!=_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a231_op_!=_b231, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a232_op_<_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a233_op_<_b233, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a234_op_<_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a235_op_<_b235, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a236_op_<=_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a237_op_<=_b237, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a238_op_<=_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a239_op_<=_b239, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a240_op_==_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a241_op_==_b241, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a242_op_==_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a243_op_==_b243, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a244_op_>_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a245_op_>_b245, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a246_op_>_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a247_op_>_b247, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a248_op_>=_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a249_op_>=_b249, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a250_op_>=_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a251_op_>=_b251, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a252_op_%_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a253_op_%_b253, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a254_op_%_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a255_op_%_b255, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a256_op_*_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a257_op_*_b257, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a258_op_*_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a259_op_*_b259, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a260_op_**_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a261_op_**_b261, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a262_op_**_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a263_op_**_b263, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a264_op_+_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a265_op_+_b265, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a266_op_+_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a267_op_+_b267, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a268_op_-_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a269_op_-_b269, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a270_op_-_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a271_op_-_b271, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a272_op_/_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a273_op_/_b273, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a274_op_/_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a275_op_/_b275, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a276_op_//_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a277_op_//_b277, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a278_op_//_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a279_op_//_b279, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a280_op_&_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a281_op_&_b281, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a282_op_&_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a283_op_&_b283, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a284_op_<<_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a285_op_<<_b285, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a286_op_<<_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a287_op_<<_b287, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a288_op_>>_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a289_op_>>_b289, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a290_op_>>_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a291_op_>>_b291, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a292_op_^_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a293_op_^_b293, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a294_op_^_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a295_op_^_b295, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a296_op_|_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a297_op_|_b297, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a298_op_|_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a299_op_|_b299, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a300_op_@_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a301_op_@_b301, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a302_op_@_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a303_op_@_b303, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a76_op_!=_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a77_op_!=_b77, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a78_op_!=_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a79_op_!=_b79, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a80_op_<_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a81_op_<_b81, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a82_op_<_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a83_op_<_b83, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a84_op_<=_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a85_op_<=_b85, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a86_op_<=_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a87_op_<=_b87, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a88_op_==_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a89_op_==_b89, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a90_op_==_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a91_op_==_b91, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a92_op_>_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a93_op_>_b93, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a94_op_>_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a95_op_>_b95, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a96_op_>=_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a97_op_>=_b97, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a98_op_>=_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a99_op_>=_b99, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_!=_b1, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_!=_b3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_!=_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_!=_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_%_b25, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_%_b27, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_%_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_%_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_&_b53, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_&_b55, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_&_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_&_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_**_b33, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_**_b35, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_**_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_**_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_*_b29, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_*_b31, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_*_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_*_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_+_b37, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_+_b39, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_+_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_+_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_-_b41, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_-_b43, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_-_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_-_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_//_b49, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_//_b51, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_//_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_//_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_/_b45, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_/_b47, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_/_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_/_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_<<_b57, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_<<_b59, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_<<_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_<<_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_<=_b11, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_<=_b9, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_<=_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_<=_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_<_b5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_<_b7, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_<_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_<_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_==_b13, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_==_b15, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_==_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_==_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_>=_b21, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_>=_b23, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_>=_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_>=_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_>>_b61, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_>>_b63, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_>>_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_>>_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_>_b17, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_>_b19, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_>_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_>_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_@_b73, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_@_b75, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_@_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_@_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_^_b65, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_^_b67, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_^_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_^_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_|_b69, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_|_b71, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_|_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_1_5_op_|_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_!=_b153, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_!=_b155, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_!=_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_!=_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_%_b177, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_%_b179, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_%_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_%_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_&_b205, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_&_b207, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_&_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_&_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_**_b185, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_**_b187, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_**_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_**_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_*_b181, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_*_b183, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_*_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_*_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_+_b189, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_+_b191, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_+_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_+_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_-_b193, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_-_b195, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_-_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_-_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_//_b201, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_//_b203, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_//_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_//_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_/_b197, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_/_b199, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_/_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_/_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_<<_b209, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_<<_b211, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_<<_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_<<_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_<=_b161, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_<=_b163, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_<=_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_<=_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_<_b157, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_<_b159, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_<_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_<_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_==_b165, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_==_b167, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_==_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_==_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_>=_b173, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_>=_b175, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_>=_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_>=_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_>>_b213, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_>>_b215, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_>>_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_>>_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_>_b169, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_>_b171, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_>_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_>_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_@_b225, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_@_b227, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_@_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_@_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_^_b217, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_^_b219, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_^_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_^_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_|_b221, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_|_b223, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_|_b_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_binary_a_3_op_|_b_3, test/typing/test_python_operators.py::TestPythonOperators::test_operators_are_correct_and_complete, test/typing/test_python_operators.py::TestPythonOperators::test_type_tests_are_complete, test/typing/test_python_operators.py::TestPythonOperators::test_unary_op_+_a1, test/typing/test_python_operators.py::TestPythonOperators::test_unary_op_+_a3, test/typing/test_python_operators.py::TestPythonOperators::test_unary_op_+_a_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_unary_op_+_a_3, test/typing/test_python_operators.py::TestPythonOperators::test_unary_op_-_a5, test/typing/test_python_operators.py::TestPythonOperators::test_unary_op_-_a7, test/typing/test_python_operators.py::TestPythonOperators::test_unary_op_-_a_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_unary_op_-_a_3, test/typing/test_python_operators.py::TestPythonOperators::test_unary_op_~_a11, test/typing/test_python_operators.py::TestPythonOperators::test_unary_op_~_a9, test/typing/test_python_operators.py::TestPythonOperators::test_unary_op_~_a_1_5, test/typing/test_python_operators.py::TestPythonOperators::test_unary_op_~_a_3 2025-08-14T22:30:03.4358203Z 2025-08-14T22:30:09.7421860Z Running test_fx_experimental 1/1 ... [2025-08-14 22:30:09.739727] 2025-08-14T22:30:09.7422339Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:30:09.7430461Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_fx_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:30:09.739727] 2025-08-14T22:31:41.5847418Z 2025-08-14T22:31:41.5848539Z test_fx_experimental 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_fx_experimental_1.1_c56908dc37c595ff_.log 2025-08-14T22:31:41.6407555Z Running 723 items in this shard: test/test_fx_experimental.py::TestFXExperimental::test_annotate_getitem_node, test/test_fx_experimental.py::TestFXExperimental::test_annotate_returns_with_schema, test/test_fx_experimental.py::TestFXExperimental::test_aot_based_partition, test/test_fx_experimental.py::TestFXExperimental::test_call_to_assert_no_msg, test/test_fx_experimental.py::TestFXExperimental::test_call_to_assert_with_empty_msg, test/test_fx_experimental.py::TestFXExperimental::test_call_to_assert_with_msg, test/test_fx_experimental.py::TestFXExperimental::test_call_to_assert_with_multiline_message, test/test_fx_experimental.py::TestFXExperimental::test_conv_bn_fusion, test/test_fx_experimental.py::TestFXExperimental::test_conv_bn_fusion_mixed_dtype, test/test_fx_experimental.py::TestFXExperimental::test_conv_bn_fusion_not_running_state, test/test_fx_experimental.py::TestFXExperimental::test_cost_aware_partition, test/test_fx_experimental.py::TestFXExperimental::test_fetch, test/test_fx_experimental.py::TestFXExperimental::test_find_single_partition, test/test_fx_experimental.py::TestFXExperimental::test_lack_of_devices, test/test_fx_experimental.py::TestFXExperimental::test_large_node_error, test/test_fx_experimental.py::TestFXExperimental::test_merge_matmuls, test/test_fx_experimental.py::TestFXExperimental::test_meta_tracer, test/test_fx_experimental.py::TestFXExperimental::test_normalize_args, test/test_fx_experimental.py::TestFXExperimental::test_normalize_args_perserve_type, test/test_fx_experimental.py::TestFXExperimental::test_normalize_args_preserve_meta, test/test_fx_experimental.py::TestFXExperimental::test_normalize_binary_operators, test/test_fx_experimental.py::TestFXExperimental::test_normalize_modules_exhaustive, test/test_fx_experimental.py::TestFXExperimental::test_optimize_for_inference_cpu, test/test_fx_experimental.py::TestFXExperimental::test_optimize_for_inference_cpu_torchvision, test/test_fx_experimental.py::TestFXExperimental::test_partition_device_mapping, test/test_fx_experimental.py::TestFXExperimental::test_partition_latency, test/test_fx_experimental.py::TestFXExperimental::test_partition_node_manipulation, test/test_fx_experimental.py::TestFXExperimental::test_replace_target_nodes_with, test/test_fx_experimental.py::TestFXExperimental::test_saturate_host, test/test_fx_experimental.py::TestFXExperimental::test_size_based_partition, test/test_fx_experimental.py::TestFXExperimental::test_sparse_nn_partition, test/test_fx_experimental.py::TestFXExperimental::test_split_module_dead_code, test/test_fx_experimental.py::TestFXExperimental::test_split_module_default_arg, test/test_fx_experimental.py::TestFXExperimental::test_split_module_input_names, test/test_fx_experimental.py::TestFXExperimental::test_split_module_keep_original_order_and_noop_graph, test/test_fx_experimental.py::TestFXExperimental::test_split_module_kwargs_expansion, test/test_fx_experimental.py::TestFXExperimental::test_split_module_return_node, test/test_fx_experimental.py::TestFXExperimental::test_split_module_symint_dependency_handling, test/test_fx_experimental.py::TestFXExperimental::test_split_qualname_mapping, test/test_fx_experimental.py::TestFXExperimental::test_subgraph_creation, test/test_fx_experimental.py::TestFXExperimental::test_subgraph_trivial_resnet, test/test_fx_experimental.py::TestFXExperimental::test_subgraph_uniquename, test/test_fx_experimental.py::TestFXExperimental::test_to_folder, test/test_fx_experimental.py::TestFXExperimental::test_traceable_function_with_nonstandard_name, test/test_fx_experimental.py::TestFXExperimental::test_type_matches, test/test_fx_experimental.py::TestTranslationValidation::test_sat, test/test_fx_experimental.py::TestTranslationValidation::test_sat_bitwise, test/test_fx_experimental.py::TestTranslationValidation::test_sympy_to_z3, test/test_fx_experimental.py::TestTranslationValidation::test_unsat, test/test_fx_experimental.py::TestTranslationValidation::test_z3str, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_args_op_overload_cpu, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_H_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_T_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive___getitem___cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive___radd___cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive___rdiv___cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive___rmatmul___cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive___rmod___cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive___rmul___cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive___rpow___cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive___rsub___cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive__batch_norm_with_update_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive__chunk_cat_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive__native_batch_norm_legit_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive__segment_reduce_lengths_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive__segment_reduce_offsets_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive__softmax_backward_data_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive__unsafe_masked_index_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive__unsafe_masked_index_put_accumulate_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive__upsample_bilinear2d_aa_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_abs_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_acos_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_acosh_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_add_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_addbmm_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_addcdiv_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_addcmul_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_addmm_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_addmm_decomposed_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_addmv_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_addr_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_alias_copy_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_all_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_allclose_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_amax_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_amin_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_aminmax_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_angle_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_any_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_arange_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_argmax_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_argmin_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_argsort_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_argwhere_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_as_strided_copy_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_as_strided_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_as_strided_partial_views_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_as_strided_scatter_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_asin_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_asinh_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_atan2_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_atan_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_atanh_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_atleast_1d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_atleast_2d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_atleast_3d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_baddbmm_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_bernoulli_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_bfloat16_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_block_diag_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_bmm_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_bool_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_broadcast_shapes_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_broadcast_tensors_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_broadcast_to_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_bucketize_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_byte_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_cartesian_prod_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_cat_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_cauchy_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_cdist_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_cdouble_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_ceil_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_cfloat_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_chalf_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_char_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_cholesky_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_cholesky_inverse_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_cholesky_solve_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_chunk_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_clamp_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_clamp_max_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_clamp_min_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_clone_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_column_stack_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_combinations_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_complex_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_conj_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_conj_physical_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_constant_pad_nd_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_contiguous_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_copysign_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_corrcoef_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_cos_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_cosh_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_count_nonzero_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_cov_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_cross_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_cummax_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_cummin_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_cumprod_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_cumsum_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_cumulative_trapezoid_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_deg2rad_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_diag_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_diag_embed_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_diagflat_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_diagonal_copy_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_diagonal_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_diagonal_scatter_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_diff_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_digamma_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_dist_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_div_floor_rounding_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_div_no_rounding_mode_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_div_trunc_rounding_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_dot_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_double_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_dsplit_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_dstack_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_einsum_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_empty_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_empty_like_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_empty_permuted_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_empty_strided_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_eq_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_equal_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_erf_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_erfc_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_erfinv_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_exp2_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_exp_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_expand_as_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_expand_copy_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_expand_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_expm1_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_exponential_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_eye_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fft_fft2_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fft_fft_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fft_fftn_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fft_fftshift_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fft_hfft2_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fft_hfft_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fft_hfftn_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fft_ifft2_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fft_ifft_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fft_ifftn_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fft_ifftshift_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fft_ihfft2_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fft_ihfft_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fft_ihfftn_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fft_irfft2_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fft_irfft_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fft_irfftn_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fft_rfft2_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fft_rfft_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fft_rfftn_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fill_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_flatten_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_flip_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fliplr_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_flipud_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_float_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_float_power_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_floor_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_floor_divide_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fmax_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fmin_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_fmod_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_frac_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_frexp_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_full_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_full_like_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_gather_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_ge_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_geometric_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_geqrf_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_gradient_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_grid_sampler_2d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_gt_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_half_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_hash_tensor_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_heaviside_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_histc_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_histogram_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_histogramdd_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_hsplit_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_hstack_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_hypot_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_i0_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_igamma_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_igammac_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_index_add_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_index_copy_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_index_fill_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_index_put_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_index_reduce_amax_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_index_reduce_amin_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_index_reduce_mean_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_index_reduce_prod_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_index_select_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_inner_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_int_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_isclose_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_isfinite_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_isin_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_isinf_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_isnan_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_isneginf_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_isposinf_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_isreal_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_item_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_jiterator_2inputs_2outputs_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_jiterator_4inputs_with_extra_args_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_jiterator_binary_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_jiterator_binary_return_by_ref_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_jiterator_unary_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_kron_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_kthvalue_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_ldexp_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_le_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_lerp_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_lgamma_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_cholesky_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_cholesky_ex_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_cond_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_cross_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_det_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_diagonal_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_eig_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_eigh_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_eigvals_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_eigvalsh_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_householder_product_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_inv_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_inv_ex_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_ldl_factor_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_ldl_factor_ex_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_ldl_solve_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_lstsq_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_lstsq_grad_oriented_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_lu_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_lu_factor_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_lu_factor_ex_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_lu_solve_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_matrix_norm_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_matrix_power_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_matrix_rank_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_matrix_rank_hermitian_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_multi_dot_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_norm_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_norm_subgradients_at_zero_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_pinv_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_pinv_hermitian_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_pinv_singular_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_qr_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_slogdet_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_solve_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_solve_ex_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_solve_triangular_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_svd_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_svdvals_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_tensorinv_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_tensorsolve_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_vander_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_vecdot_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linalg_vector_norm_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linspace_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_linspace_tensor_overload_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_log10_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_log1p_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_log2_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_log_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_log_normal_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_log_softmax_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_log_softmax_with_dtype_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_logaddexp2_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_logaddexp_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_logcumsumexp_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_logdet_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_logical_and_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_logical_not_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_logical_or_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_logical_xor_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_logit_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_logspace_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_logspace_tensor_overload_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_logsumexp_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_long_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_lt_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_lu_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_lu_solve_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_lu_unpack_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_mH_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_mT_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_masked_amax_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_masked_amin_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_masked_argmax_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_masked_argmin_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_masked_cumprod_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_masked_cumsum_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_masked_fill_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_masked_log_softmax_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_masked_logaddexp_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_masked_logsumexp_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_masked_mean_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_masked_median_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_masked_norm_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_masked_normalize_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_masked_prod_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_masked_scatter_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_masked_select_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_masked_softmax_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_masked_softmin_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_masked_std_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_masked_sum_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_masked_var_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_matmul_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_matrix_exp_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_max_binary_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_max_pool2d_with_indices_backward_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_max_reduction_no_dim_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_max_reduction_with_dim_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_maximum_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_mean_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_median_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_meshgrid_list_of_tensors_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_meshgrid_variadic_tensors_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_min_binary_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_min_reduction_no_dim_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_min_reduction_with_dim_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_minimum_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_mm_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_mode_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_movedim_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_msort_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_mul_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_multinomial_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_mv_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nan_to_num_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nanmean_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nanmedian_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nanquantile_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nansum_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_narrow_copy_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_narrow_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_native_batch_norm_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_native_dropout_backward_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_native_layer_norm_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_ne_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_neg_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_new_empty_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_new_empty_strided_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_new_full_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_new_ones_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_new_zeros_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nextafter_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_alpha_dropout_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_avg_pool1d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_avg_pool2d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_avg_pool3d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_batch_norm_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_bilinear_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_binary_cross_entropy_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_celu_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_channel_shuffle_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_conv1d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_conv2d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_conv3d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_conv_transpose1d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_conv_transpose2d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_conv_transpose3d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_cosine_embedding_loss_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_cosine_similarity_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_cross_entropy_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_ctc_loss_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_dropout2d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_dropout3d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_dropout_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_elu_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_embedding_bag_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_embedding_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_fractional_max_pool2d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_fractional_max_pool3d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_gaussian_nll_loss_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_gelu_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_glu_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_grid_sample_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_group_norm_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_hardshrink_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_hardsigmoid_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_hardswish_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_hardtanh_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_hinge_embedding_loss_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_huber_loss_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_instance_norm_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_interpolate_area_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_interpolate_bicubic_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_interpolate_bilinear_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_interpolate_linear_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_interpolate_nearest_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_interpolate_trilinear_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_kl_div_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_l1_loss_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_layer_norm_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_leaky_relu_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_linear_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_local_response_norm_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_logsigmoid_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_margin_ranking_loss_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_max_pool1d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_max_pool2d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_max_pool3d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_max_unpool1d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_max_unpool1d_grad_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_max_unpool2d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_max_unpool2d_grad_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_max_unpool3d_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_max_unpool3d_grad_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_mish_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_mse_loss_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_multi_head_attention_forward_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_multi_margin_loss_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_multilabel_margin_loss_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_nll_loss_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_normalize_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_pad_circular_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_pad_constant_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_pad_reflect_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_pad_replicate_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_pad_replicate_negative_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_pairwise_distance_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_pdist_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_pixel_shuffle_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_pixel_unshuffle_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_poisson_nll_loss_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_prelu_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_relu6_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_relu_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_rms_norm_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_rrelu_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_selu_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_silu_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_smooth_l1_loss_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_soft_margin_loss_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_softmin_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_softmin_with_dtype_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_softplus_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_softshrink_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_softsign_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_tanhshrink_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_threshold_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_triplet_margin_loss_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_unfold_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_upsample_bilinear_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nn_functional_upsample_nearest_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nonzero_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_nonzero_static_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_norm_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_norm_fro_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_norm_inf_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_norm_nuc_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_normal_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_normal_in_place_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_normal_number_mean_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_ones_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_ones_like_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_ormqr_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_outer_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_pca_lowrank_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_permute_copy_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_permute_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_pinverse_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_polar_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_polygamma_polygamma_n_0_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_polygamma_polygamma_n_1_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_polygamma_polygamma_n_2_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_polygamma_polygamma_n_3_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_polygamma_polygamma_n_4_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_positive_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_pow_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_prod_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_put_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_qr_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_quantile_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_rad2deg_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_rand_like_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_randint_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_randint_like_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_randn_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_randn_like_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_ravel_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_real_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_reciprocal_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_remainder_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_renorm_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_repeat_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_repeat_interleave_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_reshape_as_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_reshape_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_resize__cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_resize_as__cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_resolve_conj_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_resolve_neg_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_roll_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_rot90_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_round_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_round_decimals_0_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_round_decimals_3_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_round_decimals_neg_3_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_rsqrt_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_rsub_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_scalar_tensor_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_scatter_add_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_scatter_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_scatter_reduce_amax_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_scatter_reduce_amin_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_scatter_reduce_mean_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_scatter_reduce_prod_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_scatter_reduce_sum_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_searchsorted_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_select_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_select_scatter_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_sgn_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_short_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_sigmoid_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_sign_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_signal_windows_bartlett_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_signal_windows_blackman_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_signal_windows_cosine_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_signal_windows_exponential_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_signal_windows_gaussian_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_signal_windows_general_cosine_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_signal_windows_general_hamming_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_signal_windows_hamming_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_signal_windows_hann_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_signal_windows_kaiser_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_signal_windows_nuttall_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_signbit_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_sin_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_sinc_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_sinh_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_slice_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_slice_scatter_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_softmax_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_softmax_with_dtype_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_sort_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_sparse_mm_reduce_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_sparse_sampled_addmm_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_airy_ai_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_bessel_j0_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_bessel_j1_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_bessel_y0_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_bessel_y1_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_chebyshev_polynomial_t_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_chebyshev_polynomial_u_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_chebyshev_polynomial_v_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_chebyshev_polynomial_w_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_entr_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_erfcx_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_hermite_polynomial_h_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_hermite_polynomial_he_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_i0e_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_i1_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_i1e_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_laguerre_polynomial_l_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_legendre_polynomial_p_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_log_ndtr_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_modified_bessel_i0_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_modified_bessel_i1_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_modified_bessel_k0_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_modified_bessel_k1_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_ndtr_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_ndtri_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_scaled_modified_bessel_k0_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_scaled_modified_bessel_k1_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_spherical_bessel_j0_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_xlog1py_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_special_zeta_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_split_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_split_list_args_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_split_with_sizes_copy_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_split_with_sizes_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_sqrt_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_square_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_squeeze_copy_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_squeeze_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_squeeze_multiple_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_stack_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_std_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_std_mean_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_std_mean_unbiased_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_std_unbiased_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_stft_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_sub_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_sum_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_sum_to_size_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_svd_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_svd_lowrank_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_t_copy_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_t_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_take_along_dim_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_take_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_tan_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_tanh_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_tensor_split_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_tensordot_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_tile_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_to_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_to_sparse_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_topk_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_trace_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_transpose_copy_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_transpose_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_trapezoid_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_trapz_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_triangular_solve_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_tril_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_triu_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_true_divide_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_trunc_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_unbind_copy_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_unbind_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_unflatten_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_unfold_copy_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_unfold_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_uniform_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_unique_consecutive_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_unique_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_unsafe_chunk_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_unsafe_split_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_unsqueeze_copy_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_unsqueeze_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_var_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_var_mean_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_var_mean_unbiased_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_var_unbiased_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_vdot_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_view_as_complex_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_view_as_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_view_copy_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_view_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_vsplit_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_vstack_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_where_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_xlogy_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_zero__cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_zeros_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_operator_exhaustive_zeros_like_cpu_float32, test/test_fx_experimental.py::TestNormalizeOperatorsCPU::test_normalize_quantized_eb_cpu 2025-08-14T22:31:41.6944791Z 2025-08-14T22:31:47.4085564Z Running test_file_check 1/1 ... [2025-08-14 22:31:47.408347] 2025-08-14T22:31:47.4086047Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:31:47.4093110Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_file_check.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:31:47.409057] 2025-08-14T22:31:54.9318082Z 2025-08-14T22:31:54.9319214Z test_file_check 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_file_check_1.1_8b8a6881b04de844_.log 2025-08-14T22:31:54.9320995Z Running 2 items in this shard: test/test_file_check.py::TestFileCheck::test_all_python_api, test/test_file_check.py::TestFileCheck::test_not_run 2025-08-14T22:31:54.9321775Z 2025-08-14T22:32:00.5187077Z Running torch_np/test_dtype 1/1 ... [2025-08-14 22:32:00.518536] 2025-08-14T22:32:00.5187569Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:32:00.5194475Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_dtype.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:32:00.519191] 2025-08-14T22:32:05.9533224Z 2025-08-14T22:32:05.9534445Z torch_np/test_dtype 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_dtype_1.1_6668fd81920bf3a1_.log 2025-08-14T22:32:05.9549878Z Running 44 items in this shard: test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'bool_', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'complex128', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'complex64', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'float16', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'float32', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'float64', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'int16', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'int32', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'int64', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'int8', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'uint16', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'uint32', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'uint64', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_'uint8', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_bool, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'bool_', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'complex128', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'complex64', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'float16', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'float32', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'float64', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'int16', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'int32', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'int64', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'int8', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'uint16', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'uint32', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'uint64', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.'uint8', test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.bool_, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.complex128, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.complex64, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.dtype('bool'), test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.float16, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.float32, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.float64, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.int16, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.int32, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.int64, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.int8, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.uint16, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.uint32, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.uint64, test/torch_np/test_dtype.py::TestConvertDType::test_convert_np_dtypes_numpy.uint8 2025-08-14T22:32:05.9565101Z 2025-08-14T22:32:11.5925271Z Running higher_order_ops/test_with_effects 1/1 ... [2025-08-14 22:32:11.592091] 2025-08-14T22:32:11.5925802Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:32:11.5932383Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'higher_order_ops/test_with_effects.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:32:11.592736] 2025-08-14T22:32:25.3601164Z 2025-08-14T22:32:25.3602263Z test_foreach 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_foreach_1.1_85e9e85a98fa115d_.log 2025-08-14T22:32:25.5633101Z Running 3577 items in this shard: test/test_foreach.py::TestForeachCPU::test_0dim_tensor_overload_cpu_ok_cpu, test/test_foreach.py::TestForeachCPU::test_0dim_tensor_overload_exception_cpu, test/test_foreach.py::TestForeachCPU::test_add_scalar_with_empty_list_and_empty_tensor_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_add_scalar_with_empty_list_and_empty_tensor_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_add_scalar_with_empty_list_and_empty_tensor_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_add_scalar_with_empty_list_and_empty_tensor_cpu_float16, test/test_foreach.py::TestForeachCPU::test_add_scalar_with_empty_list_and_empty_tensor_cpu_float32, test/test_foreach.py::TestForeachCPU::test_add_scalar_with_empty_list_and_empty_tensor_cpu_float64, test/test_foreach.py::TestForeachCPU::test_add_scalar_with_empty_list_and_empty_tensor_cpu_int16, test/test_foreach.py::TestForeachCPU::test_add_scalar_with_empty_list_and_empty_tensor_cpu_int32, test/test_foreach.py::TestForeachCPU::test_add_scalar_with_empty_list_and_empty_tensor_cpu_int64, test/test_foreach.py::TestForeachCPU::test_add_scalar_with_empty_list_and_empty_tensor_cpu_int8, test/test_foreach.py::TestForeachCPU::test_add_scalar_with_empty_list_and_empty_tensor_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_abs_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_acos_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_add_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_addcdiv_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_addcmul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_asin_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_atan_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_ceil_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_clamp_max_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_clamp_min_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_copy_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_cos_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_cosh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_div_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_erf_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_erfc_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_exp_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_expm1_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_floor_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_frac_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_lerp_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_lgamma_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_log10_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_log1p_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_log2_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_log_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_max_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_maximum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_minimum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_mul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_neg_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_norm_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_pow_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_reciprocal_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_round_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_rsqrt_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_sigmoid_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_sign_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_sin_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_sinh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_sqrt_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_sub_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_tan_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_tanh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_trunc_cpu_float32, test/test_foreach.py::TestForeachCPU::test_all_zero_size_tensors_do_not_launch_kernel__foreach_zero_cpu_float32, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_abs_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_abs_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_abs_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_abs_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_acos_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_acos_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_acos_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_acos_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_add_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_add_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_add_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_add_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_addcdiv_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_addcdiv_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_addcdiv_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_addcdiv_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_addcmul_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_addcmul_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_addcmul_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_addcmul_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_asin_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_asin_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_asin_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_asin_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_atan_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_atan_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_atan_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_atan_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_ceil_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_ceil_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_ceil_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_ceil_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_clamp_max_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_clamp_max_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_clamp_max_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_clamp_max_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_clamp_min_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_clamp_min_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_clamp_min_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_clamp_min_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_copy_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_copy_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_copy_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_copy_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_cos_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_cos_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_cos_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_cos_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_cosh_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_cosh_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_cosh_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_cosh_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_div_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_div_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_div_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_div_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_erf_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_erf_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_erf_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_erf_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_erfc_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_erfc_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_erfc_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_erfc_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_exp_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_exp_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_exp_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_exp_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_expm1_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_expm1_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_expm1_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_expm1_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_floor_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_floor_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_floor_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_floor_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_frac_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_frac_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_frac_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_frac_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_lerp_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_lerp_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_lerp_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_lerp_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_lgamma_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_lgamma_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_lgamma_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_lgamma_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log10_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log10_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log10_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log10_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log1p_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log1p_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log1p_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log1p_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log2_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log2_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log2_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log2_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_log_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_max_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_max_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_max_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_max_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_maximum_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_maximum_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_maximum_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_maximum_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_minimum_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_minimum_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_minimum_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_minimum_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_mul_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_mul_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_mul_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_mul_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_neg_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_neg_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_neg_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_neg_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_norm_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_norm_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_norm_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_norm_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_pow_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_pow_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_pow_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_pow_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_reciprocal_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_reciprocal_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_reciprocal_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_reciprocal_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_round_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_round_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_round_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_round_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_rsqrt_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_rsqrt_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_rsqrt_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_rsqrt_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sigmoid_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sigmoid_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sigmoid_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sigmoid_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sign_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sign_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sign_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sign_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sin_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sin_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sin_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sin_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sinh_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sinh_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sinh_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sinh_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sqrt_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sqrt_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sqrt_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sqrt_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sub_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sub_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sub_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_sub_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_tan_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_tan_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_tan_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_tan_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_tanh_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_tanh_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_tanh_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_tanh_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_trunc_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_trunc_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_trunc_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_trunc_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_zero_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_zero_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_zero_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_autodiff__foreach_zero_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_max_use_cuda_graph_False_w_empty_False_cpu_float32, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_max_use_cuda_graph_False_w_empty_False_cpu_float64, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_max_use_cuda_graph_False_w_empty_True_cpu_float32, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_max_use_cuda_graph_False_w_empty_True_cpu_float64, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_max_use_cuda_graph_True_w_empty_False_cpu_float32, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_max_use_cuda_graph_True_w_empty_False_cpu_float64, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_max_use_cuda_graph_True_w_empty_True_cpu_float32, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_max_use_cuda_graph_True_w_empty_True_cpu_float64, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_norm_use_cuda_graph_False_w_empty_False_cpu_float32, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_norm_use_cuda_graph_False_w_empty_False_cpu_float64, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_norm_use_cuda_graph_False_w_empty_True_cpu_float32, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_norm_use_cuda_graph_False_w_empty_True_cpu_float64, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_norm_use_cuda_graph_True_w_empty_False_cpu_float32, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_norm_use_cuda_graph_True_w_empty_False_cpu_float64, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_norm_use_cuda_graph_True_w_empty_True_cpu_float32, test/test_foreach.py::TestForeachCPU::test_big_num_tensors__foreach_norm_use_cuda_graph_True_w_empty_True_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_add_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_add_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_add_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_add_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_clamp_max_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_clamp_max_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_clamp_max_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_clamp_max_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_clamp_min_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_clamp_min_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_clamp_min_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_clamp_min_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_div_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_div_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_div_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_div_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_maximum_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_maximum_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_maximum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_maximum_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_minimum_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_minimum_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_minimum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_minimum_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_mul_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_mul_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_mul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_mul_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_pow_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_pow_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_pow_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_pow_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_sub_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_sub_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_sub_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_float_inf_nan__foreach_sub_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_add_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_add_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_add_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_add_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_add_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_add_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_add_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_add_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_add_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_add_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_add_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_add_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_max_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_max_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_max_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_max_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_max_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_max_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_max_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_max_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_max_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_max_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_max_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_max_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_min_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_min_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_min_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_min_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_min_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_min_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_min_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_min_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_min_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_min_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_min_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_clamp_min_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_div_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_div_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_div_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_div_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_div_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_div_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_div_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_div_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_div_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_div_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_div_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_div_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_maximum_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_maximum_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_maximum_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_maximum_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_maximum_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_maximum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_maximum_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_maximum_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_maximum_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_maximum_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_maximum_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_maximum_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_minimum_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_minimum_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_minimum_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_minimum_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_minimum_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_minimum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_minimum_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_minimum_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_minimum_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_minimum_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_minimum_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_minimum_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_mul_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_mul_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_mul_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_mul_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_mul_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_mul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_mul_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_mul_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_mul_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_mul_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_mul_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_mul_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_pow_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_pow_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_pow_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_pow_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_pow_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_pow_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_pow_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_pow_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_pow_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_pow_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_pow_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_pow_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_sub_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_sub_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_sub_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_sub_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_sub_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_sub_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_sub_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_sub_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_sub_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_sub_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_sub_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_error_cases__foreach_sub_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_add_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_add_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_add_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_add_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_add_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_add_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_add_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_add_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_add_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_add_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_add_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_add_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_max_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_max_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_max_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_max_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_max_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_max_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_max_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_max_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_max_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_max_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_max_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_max_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_min_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_min_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_min_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_min_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_min_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_min_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_min_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_min_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_min_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_min_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_min_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_clamp_min_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_div_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_div_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_div_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_div_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_div_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_div_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_div_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_div_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_div_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_div_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_div_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_div_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_maximum_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_maximum_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_maximum_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_maximum_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_maximum_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_maximum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_maximum_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_maximum_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_maximum_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_maximum_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_maximum_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_maximum_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_minimum_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_minimum_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_minimum_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_minimum_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_minimum_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_minimum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_minimum_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_minimum_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_minimum_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_minimum_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_minimum_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_minimum_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_mul_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_mul_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_mul_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_mul_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_mul_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_mul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_mul_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_mul_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_mul_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_mul_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_mul_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_mul_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_pow_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_pow_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_pow_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_pow_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_pow_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_pow_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_pow_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_pow_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_pow_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_pow_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_pow_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_pow_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_sub_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_sub_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_sub_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_sub_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_sub_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_sub_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_sub_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_sub_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_sub_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_sub_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_sub_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_list_slow_path__foreach_sub_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_different_tensor_dtypes__foreach_add_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_different_tensor_dtypes__foreach_clamp_max_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_different_tensor_dtypes__foreach_clamp_min_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_different_tensor_dtypes__foreach_div_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_different_tensor_dtypes__foreach_maximum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_different_tensor_dtypes__foreach_minimum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_different_tensor_dtypes__foreach_mul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_different_tensor_dtypes__foreach_pow_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_different_tensor_dtypes__foreach_sub_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_add_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_add_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_add_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_add_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_add_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_add_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_add_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_add_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_add_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_add_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_add_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_add_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_max_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_max_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_max_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_max_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_max_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_max_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_max_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_max_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_max_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_max_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_max_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_max_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_min_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_min_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_min_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_min_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_min_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_min_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_min_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_min_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_min_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_min_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_min_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_clamp_min_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_div_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_div_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_div_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_div_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_div_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_div_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_div_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_div_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_div_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_div_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_div_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_div_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_maximum_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_maximum_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_maximum_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_maximum_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_maximum_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_maximum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_maximum_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_maximum_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_maximum_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_maximum_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_maximum_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_maximum_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_minimum_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_minimum_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_minimum_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_minimum_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_minimum_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_minimum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_minimum_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_minimum_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_minimum_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_minimum_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_minimum_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_minimum_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_mul_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_mul_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_mul_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_mul_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_mul_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_mul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_mul_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_mul_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_mul_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_mul_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_mul_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_mul_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_pow_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_pow_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_pow_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_pow_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_pow_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_pow_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_pow_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_pow_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_pow_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_pow_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_pow_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_pow_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_sub_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_sub_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_sub_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_sub_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_sub_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_sub_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_sub_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_sub_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_sub_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_sub_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_sub_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_scalar_with_overlapping_tensors__foreach_sub_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_add_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_add_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_add_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_add_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_add_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_add_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_add_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_add_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_add_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_add_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_add_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_add_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_max_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_max_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_max_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_max_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_max_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_max_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_max_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_max_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_max_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_max_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_max_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_max_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_min_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_min_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_min_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_min_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_min_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_min_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_min_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_min_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_min_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_min_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_min_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_clamp_min_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_div_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_div_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_div_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_div_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_div_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_div_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_div_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_div_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_div_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_div_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_div_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_div_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_maximum_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_maximum_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_maximum_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_maximum_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_maximum_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_maximum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_maximum_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_maximum_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_maximum_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_maximum_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_maximum_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_maximum_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_minimum_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_minimum_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_minimum_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_minimum_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_minimum_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_minimum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_minimum_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_minimum_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_minimum_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_minimum_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_minimum_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_minimum_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_mul_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_mul_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_mul_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_mul_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_mul_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_mul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_mul_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_mul_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_mul_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_mul_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_mul_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_mul_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_pow_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_pow_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_pow_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_pow_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_pow_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_pow_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_pow_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_pow_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_pow_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_pow_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_pow_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_pow_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_sub_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_sub_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_sub_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_sub_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_sub_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_sub_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_sub_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_sub_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_sub_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_sub_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_sub_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_tensors_on_different_devices__foreach_sub_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_False_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_False_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_False_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_False_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_False_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_False_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_False_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_False_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_False_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_False_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_False_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_False_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cpu_bool, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cpu_float16, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cpu_float32, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cpu_float64, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cpu_int16, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cpu_int32, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cpu_int64, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cpu_int8, test/test_foreach.py::TestForeachCPU::test_binary_op_with_scalar_self_support__foreach_pow_is_fastpath_True_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_div_reciprocal_cpu, test/test_foreach.py::TestForeachCPU::test_foreach_check_stride_ignore_dims_of_one_cpu_float32, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_different_device_inputs__foreach_copy_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_different_device_inputs__foreach_copy_cpu_bool, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_different_device_inputs__foreach_copy_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_different_device_inputs__foreach_copy_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_different_device_inputs__foreach_copy_cpu_float16, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_different_device_inputs__foreach_copy_cpu_float32, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_different_device_inputs__foreach_copy_cpu_float64, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_different_device_inputs__foreach_copy_cpu_int16, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_different_device_inputs__foreach_copy_cpu_int32, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_different_device_inputs__foreach_copy_cpu_int64, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_different_device_inputs__foreach_copy_cpu_int8, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_different_device_inputs__foreach_copy_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_device_inputs__foreach_copy_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_device_inputs__foreach_copy_cpu_bool, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_device_inputs__foreach_copy_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_device_inputs__foreach_copy_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_device_inputs__foreach_copy_cpu_float16, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_device_inputs__foreach_copy_cpu_float32, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_device_inputs__foreach_copy_cpu_float64, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_device_inputs__foreach_copy_cpu_int16, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_device_inputs__foreach_copy_cpu_int32, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_device_inputs__foreach_copy_cpu_int64, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_device_inputs__foreach_copy_cpu_int8, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_device_inputs__foreach_copy_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes__foreach_copy_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes__foreach_copy_cpu_bool, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes__foreach_copy_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes__foreach_copy_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes__foreach_copy_cpu_float16, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes__foreach_copy_cpu_float32, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes__foreach_copy_cpu_float64, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes__foreach_copy_cpu_int16, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes__foreach_copy_cpu_int32, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes__foreach_copy_cpu_int64, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes__foreach_copy_cpu_int8, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes__foreach_copy_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_foreach_copy_with_multi_dtypes_large_input_cpu, test/test_foreach.py::TestForeachCPU::test_foreach_l2_large_value_input__foreach_norm_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_foreach_l2_large_value_input__foreach_norm_cpu_float16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_False_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_False_cpu_bool, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_False_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_False_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_False_cpu_float16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_False_cpu_float32, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_False_cpu_float64, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_False_cpu_int16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_False_cpu_int32, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_False_cpu_int64, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_False_cpu_int8, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_False_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_True_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_True_cpu_bool, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_True_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_True_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_True_cpu_float16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_True_cpu_float32, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_True_cpu_float64, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_True_cpu_int16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_True_cpu_int32, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_True_cpu_int64, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_True_cpu_int8, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_max_w_empty_True_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_False_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_False_cpu_bool, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_False_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_False_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_False_cpu_float16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_False_cpu_float32, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_False_cpu_float64, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_False_cpu_int16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_False_cpu_int32, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_False_cpu_int64, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_False_cpu_int8, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_False_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_True_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_True_cpu_bool, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_True_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_True_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_True_cpu_float16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_True_cpu_float32, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_True_cpu_float64, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_True_cpu_int16, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_True_cpu_int32, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_True_cpu_int64, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_True_cpu_int8, test/test_foreach.py::TestForeachCPU::test_foreach_reduce_large_input__foreach_norm_w_empty_True_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_abs_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_acos_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_add_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_addcdiv_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_addcmul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_asin_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_atan_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_ceil_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_clamp_max_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_clamp_min_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_copy_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_cos_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_cosh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_div_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_erf_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_erfc_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_exp_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_expm1_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_floor_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_frac_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_lerp_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_lgamma_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_log10_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_log1p_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_log2_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_log_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_maximum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_minimum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_mul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_neg_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_pow_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_reciprocal_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_round_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_rsqrt_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_sigmoid_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_sign_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_sin_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_sinh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_sqrt_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_sub_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_tan_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_tanh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_trunc_cpu_float32, test/test_foreach.py::TestForeachCPU::test_inplace_foreach_leaf_check_and_grad_fn__foreach_zero_cpu_float32, test/test_foreach.py::TestForeachCPU::test_lifetime_of_grad_fn_when_result_is_saved__foreach_exp_cpu_float32, test/test_foreach.py::TestForeachCPU::test_lifetime_of_grad_fn_when_result_is_saved__foreach_expm1_cpu_float32, test/test_foreach.py::TestForeachCPU::test_lifetime_of_grad_fn_when_result_is_saved__foreach_pow_cpu_float32, test/test_foreach.py::TestForeachCPU::test_lifetime_of_grad_fn_when_result_is_saved__foreach_reciprocal_cpu_float32, test/test_foreach.py::TestForeachCPU::test_lifetime_of_grad_fn_when_result_is_saved__foreach_rsqrt_cpu_float32, test/test_foreach.py::TestForeachCPU::test_lifetime_of_grad_fn_when_result_is_saved__foreach_sigmoid_cpu_float32, test/test_foreach.py::TestForeachCPU::test_lifetime_of_grad_fn_when_result_is_saved__foreach_sqrt_cpu_float32, test/test_foreach.py::TestForeachCPU::test_lifetime_of_grad_fn_when_result_is_saved__foreach_tan_cpu_float32, test/test_foreach.py::TestForeachCPU::test_lifetime_of_grad_fn_when_result_is_saved__foreach_tanh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_abs_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_acos_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_add_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_addcdiv_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_addcmul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_asin_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_atan_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_ceil_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_clamp_max_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_clamp_min_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_cos_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_cosh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_div_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_erf_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_erfc_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_exp_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_expm1_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_floor_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_frac_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_lerp_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_lgamma_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_log10_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_log1p_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_log2_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_log_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_maximum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_minimum_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_mul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_neg_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_pow_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_reciprocal_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_round_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_rsqrt_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_sigmoid_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_sign_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_sin_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_sinh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_sqrt_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_sub_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_tan_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_tanh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_outplace_with_invalid_grads__foreach_trunc_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_abs_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_acos_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_add_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcdiv_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_addcmul_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_asin_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_atan_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_ceil_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_max_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_clamp_min_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_copy_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cos_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_cosh_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_div_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erf_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_erfc_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_exp_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_expm1_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_floor_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_frac_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lerp_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_lgamma_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log10_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log1p_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log2_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_log_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_max_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_maximum_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_minimum_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_mul_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_neg_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_norm_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_pow_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_reciprocal_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_round_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_rsqrt_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sigmoid_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sign_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sin_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sinh_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sqrt_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_sub_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tan_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_tanh_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_trunc_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_fastpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_inplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_inplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_inplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_inplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_inplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_inplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_inplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_inplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_inplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_inplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_inplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_inplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_outplace_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_outplace_cpu_bool, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_outplace_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_outplace_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_outplace_cpu_float16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_outplace_cpu_float32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_outplace_cpu_float64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_outplace_cpu_int16, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_outplace_cpu_int32, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_outplace_cpu_int64, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_outplace_cpu_int8, test/test_foreach.py::TestForeachCPU::test_parity__foreach_zero_slowpath_outplace_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_pointwise_op_tensors_on_different_devices__foreach_addcdiv_cpu_float32, test/test_foreach.py::TestForeachCPU::test_pointwise_op_tensors_on_different_devices__foreach_addcdiv_cpu_float64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_tensors_on_different_devices__foreach_addcmul_cpu_float32, test/test_foreach.py::TestForeachCPU::test_pointwise_op_tensors_on_different_devices__foreach_addcmul_cpu_float64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_False_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_False_cpu_bool, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_False_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_False_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_False_cpu_float16, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_False_cpu_float32, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_False_cpu_float64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_False_cpu_int16, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_False_cpu_int32, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_False_cpu_int64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_False_cpu_int8, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_False_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_True_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_True_cpu_bool, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_True_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_True_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_True_cpu_float16, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_True_cpu_float32, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_True_cpu_float64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_True_cpu_int16, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_True_cpu_int32, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_True_cpu_int64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_True_cpu_int8, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcdiv_is_fastpath_True_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_False_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_False_cpu_bool, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_False_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_False_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_False_cpu_float16, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_False_cpu_float32, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_False_cpu_float64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_False_cpu_int16, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_False_cpu_int32, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_False_cpu_int64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_False_cpu_int8, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_False_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_True_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_True_cpu_bool, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_True_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_True_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_True_cpu_float16, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_True_cpu_float32, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_True_cpu_float64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_True_cpu_int16, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_True_cpu_int32, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_True_cpu_int64, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_True_cpu_int8, test/test_foreach.py::TestForeachCPU::test_pointwise_op_with_tensor_of_scalarlist_overload__foreach_addcmul_is_fastpath_True_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_tensors_grouping_cpu, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_abs_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_abs_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_abs_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_abs_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_abs_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_abs_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_abs_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_abs_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_abs_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_abs_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_abs_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_abs_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_acos_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_acos_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_acos_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_acos_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_acos_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_acos_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_acos_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_acos_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_acos_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_acos_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_acos_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_acos_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_asin_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_asin_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_asin_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_asin_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_asin_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_asin_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_asin_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_asin_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_asin_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_asin_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_asin_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_asin_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_atan_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_atan_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_atan_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_atan_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_atan_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_atan_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_atan_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_atan_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_atan_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_atan_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_atan_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_atan_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_ceil_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_ceil_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_ceil_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_ceil_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_ceil_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_ceil_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_ceil_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_ceil_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_ceil_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_ceil_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_ceil_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_ceil_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cos_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cos_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cos_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cos_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cos_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cos_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cos_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cos_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cos_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cos_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cos_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cos_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cosh_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cosh_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cosh_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cosh_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cosh_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cosh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cosh_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cosh_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cosh_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cosh_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cosh_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_cosh_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erf_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erf_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erf_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erf_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erf_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erf_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erf_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erf_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erf_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erf_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erf_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erf_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erfc_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erfc_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erfc_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erfc_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erfc_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erfc_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erfc_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erfc_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erfc_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erfc_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erfc_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_erfc_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_exp_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_exp_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_exp_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_exp_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_exp_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_exp_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_exp_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_exp_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_exp_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_exp_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_exp_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_exp_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_expm1_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_expm1_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_expm1_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_expm1_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_expm1_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_expm1_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_expm1_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_expm1_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_expm1_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_expm1_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_expm1_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_expm1_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_floor_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_floor_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_floor_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_floor_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_floor_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_floor_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_floor_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_floor_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_floor_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_floor_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_floor_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_floor_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_frac_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_frac_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_frac_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_frac_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_frac_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_frac_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_frac_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_frac_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_frac_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_frac_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_frac_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_frac_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_lgamma_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_lgamma_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_lgamma_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_lgamma_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_lgamma_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_lgamma_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_lgamma_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_lgamma_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_lgamma_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_lgamma_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_lgamma_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_lgamma_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log10_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log10_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log10_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log10_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log10_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log10_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log10_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log10_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log10_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log10_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log10_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log10_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log1p_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log1p_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log1p_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log1p_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log1p_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log1p_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log1p_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log1p_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log1p_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log1p_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log1p_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log1p_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log2_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log2_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log2_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log2_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log2_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log2_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log2_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log2_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log2_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log2_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log2_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log2_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_log_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_neg_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_neg_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_neg_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_neg_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_neg_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_neg_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_neg_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_neg_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_neg_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_neg_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_neg_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_neg_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_reciprocal_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_reciprocal_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_reciprocal_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_reciprocal_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_reciprocal_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_reciprocal_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_reciprocal_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_reciprocal_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_reciprocal_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_reciprocal_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_reciprocal_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_reciprocal_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_round_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_round_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_round_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_round_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_round_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_round_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_round_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_round_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_round_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_round_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_round_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_round_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_rsqrt_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_rsqrt_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_rsqrt_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_rsqrt_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_rsqrt_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_rsqrt_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_rsqrt_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_rsqrt_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_rsqrt_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_rsqrt_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_rsqrt_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_rsqrt_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sigmoid_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sigmoid_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sigmoid_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sigmoid_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sigmoid_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sigmoid_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sigmoid_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sigmoid_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sigmoid_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sigmoid_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sigmoid_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sigmoid_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sign_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sign_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sign_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sign_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sign_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sign_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sign_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sign_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sign_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sign_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sign_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sign_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sin_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sin_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sin_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sin_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sin_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sin_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sin_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sin_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sin_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sin_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sin_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sin_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sinh_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sinh_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sinh_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sinh_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sinh_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sinh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sinh_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sinh_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sinh_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sinh_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sinh_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sinh_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sqrt_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sqrt_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sqrt_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sqrt_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sqrt_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sqrt_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sqrt_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sqrt_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sqrt_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sqrt_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sqrt_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_sqrt_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tan_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tan_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tan_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tan_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tan_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tan_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tan_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tan_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tan_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tan_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tan_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tan_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tanh_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tanh_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tanh_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tanh_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tanh_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tanh_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tanh_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tanh_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tanh_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tanh_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tanh_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_tanh_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_trunc_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_trunc_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_trunc_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_trunc_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_trunc_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_trunc_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_trunc_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_trunc_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_trunc_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_trunc_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_trunc_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_trunc_cpu_uint8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_zero_cpu_bfloat16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_zero_cpu_bool, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_zero_cpu_complex128, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_zero_cpu_complex64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_zero_cpu_float16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_zero_cpu_float32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_zero_cpu_float64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_zero_cpu_int16, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_zero_cpu_int32, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_zero_cpu_int64, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_zero_cpu_int8, test/test_foreach.py::TestForeachCPU::test_unary_op_tensors_on_different_devices__foreach_zero_cpu_uint8 2025-08-14T22:32:25.7688297Z 2025-08-14T22:32:31.6536098Z Running test_native_functions 1/1 ... [2025-08-14 22:32:31.648231] 2025-08-14T22:32:31.6536796Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:32:31.6542767Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_native_functions.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:32:31.648231] 2025-08-14T22:32:37.2175399Z 2025-08-14T22:32:37.2176693Z test_native_functions 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_native_functions_1.1_53e41b45356a9191_.log 2025-08-14T22:32:37.2181424Z Running 11 items in this shard: test/test_native_functions.py::TestNativeFunctions::test_intlist_error_with_overload, test/test_native_functions.py::TestNativeFunctions::test_optional_filled_intlist, test/test_native_functions.py::TestNativeFunctions::test_optional_floatlist, test/test_native_functions.py::TestNativeFunctions::test_optional_floatlist_invalid, test/test_native_functions.py::TestNativeFunctions::test_optional_intlist, test/test_native_functions.py::TestNativeFunctions::test_optional_intlist_invalid, test/test_native_functions.py::TestNativeFunctions::test_string_defaults, test/test_native_functions.py::TestNativeFunctions::test_symintlist_error, test/test_native_functions.py::TestNativeFunctions::test_symintlist_error_with_overload, test/test_native_functions.py::TestNativeFunctions::test_symintlist_error_with_overload_but_is_unique, test/test_native_functions.py::TestNativeFunctions::test_vararg_symintlist_error 2025-08-14T22:32:37.2185560Z 2025-08-14T22:32:42.7922514Z Running functorch/test_minifier 1/1 ... [2025-08-14 22:32:42.784126] 2025-08-14T22:32:42.7923019Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:32:42.7929464Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/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:32:42.784126] 2025-08-14T22:32:46.7851649Z 2025-08-14T22:32:46.7852673Z higher_order_ops/test_with_effects 1/1 was successful, full logs can be found in artifacts with path test/test-reports/higher_order_ops.test_with_effects_1.1_c042507083f2837e_.log 2025-08-14T22:32:46.7860818Z Running 18 items in this shard: test/higher_order_ops/test_with_effects.py::TestWithEffects::test_alias_op, test/higher_order_ops/test_with_effects.py::TestWithEffects::test_compile_aot_eager, test/higher_order_ops/test_with_effects.py::TestWithEffects::test_compile_aot_eager_requires_grad, test/higher_order_ops/test_with_effects.py::TestWithEffects::test_compile_inductor, test/higher_order_ops/test_with_effects.py::TestWithEffects::test_compile_inductor_external_op_return_none, test/higher_order_ops/test_with_effects.py::TestWithEffects::test_effectful_custom_op_with_subclasses, test/higher_order_ops/test_with_effects.py::TestWithEffects::test_effectful_op_in_backward, test/higher_order_ops/test_with_effects.py::TestWithEffects::test_effects_and_aliased_outputs, test/higher_order_ops/test_with_effects.py::TestWithEffects::test_effects_and_input_mutation_is_output, test/higher_order_ops/test_with_effects.py::TestWithEffects::test_effects_and_input_mutation_return, test/higher_order_ops/test_with_effects.py::TestWithEffects::test_effects_and_input_output_view_simple, test/higher_order_ops/test_with_effects.py::TestWithEffects::test_print, test/higher_order_ops/test_with_effects.py::TestWithEffects::test_print_with_buffer_mutations, test/higher_order_ops/test_with_effects.py::TestWithEffects::test_print_with_input_mutations, test/higher_order_ops/test_with_effects.py::TestWithEffects::test_register_effectful_custom_op, test/higher_order_ops/test_with_effects.py::TestWithEffects::test_regular_effectful_op_in_forward_and_backward, test/higher_order_ops/test_with_effects.py::TestWithEffects::test_regular_effectful_op_only_in_backward, test/higher_order_ops/test_with_effects.py::TestWithEffects::test_torchbind_custom_op 2025-08-14T22:32:46.7868577Z 2025-08-14T22:32:48.8423045Z 2025-08-14T22:32:48.8424587Z functorch/test_minifier 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_minifier_1.1_8ba4f5d7f63d4b7b_.log 2025-08-14T22:32:48.8429318Z Running 5 items in this shard: test/functorch/test_minifier.py::TestMinifier::test_has_add_mul, test/functorch/test_minifier.py::TestMinifier::test_has_mul_minifier, test/functorch/test_minifier.py::TestMinifier::test_input_returned, test/functorch/test_minifier.py::TestMinifier::test_module, test/functorch/test_minifier.py::TestMinifier::test_tup_use 2025-08-14T22:32:48.8432226Z 2025-08-14T22:32:52.6625257Z Running test_flop_counter 1/1 ... [2025-08-14 22:32:52.653659] 2025-08-14T22:32:52.6625786Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:32:52.6632377Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_flop_counter.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:32:52.653659] 2025-08-14T22:32:54.7467048Z Running torch_np/test_nep50_examples 1/1 ... [2025-08-14 22:32:54.746477] 2025-08-14T22:32:54.7467580Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:32:54.7474425Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_nep50_examples.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:32:54.746993] 2025-08-14T22:32:58.8491320Z 2025-08-14T22:32:58.8492659Z test_flop_counter 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_flop_counter_1.1_4898c0e97d85f8cc_.log 2025-08-14T22:32:58.8501978Z Running 22 items in this shard: test/test_flop_counter.py::TestFlopCounter::test_addmm_out, test/test_flop_counter.py::TestFlopCounter::test_autograd_op, test/test_flop_counter.py::TestFlopCounter::test_backward, test/test_flop_counter.py::TestFlopCounter::test_backward_reset, test/test_flop_counter.py::TestFlopCounter::test_conv_backwards_as_decomposition, test/test_flop_counter.py::TestFlopCounter::test_conv_transpose_loop, test/test_flop_counter.py::TestFlopCounter::test_convs, test/test_flop_counter.py::TestFlopCounter::test_custom, test/test_flop_counter.py::TestFlopCounter::test_custom_op, test/test_flop_counter.py::TestFlopCounter::test_flop_counter_variety, test/test_flop_counter.py::TestFlopCounter::test_hook_registration, test/test_flop_counter.py::TestFlopCounter::test_inference_mode, test/test_flop_counter.py::TestFlopCounter::test_module, test/test_flop_counter.py::TestFlopCounter::test_nested_attention_fake_tensors, test/test_flop_counter.py::TestFlopCounter::test_noop, test/test_flop_counter.py::TestFlopCounter::test_op, test/test_flop_counter.py::TestFlopCounter::test_pytrees, test/test_flop_counter.py::TestFlopCounter::test_scaled_mm, test/test_flop_counter.py::TestFlopCounter::test_sdpa, test/test_flop_counter.py::TestFlopCounter::test_sdpa_nested_tensor, test/test_flop_counter.py::TestFlopCounter::test_torchscript, test/test_flop_counter.py::TestFlopCounter::test_warning 2025-08-14T22:32:58.8510736Z 2025-08-14T22:33:03.2124558Z 2025-08-14T22:33:03.2125890Z torch_np/test_nep50_examples 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_nep50_examples_1.1_ff06977ca4932e21_.log 2025-08-14T22:33:03.2851620Z Running 1573 items in this shard: test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_3j + array(3, complex64), test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_True + uint8(2), test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_array(1_0, float32) + 1e-14 == 1_0, test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_array([0_1], float32) == float64(0_1), test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_array([100], uint8) + 200, test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_array([1], uint8) + 1, test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_array([1], uint8) + 200, test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_array([1], uint8) + 300, test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_array([1], uint8) + array(1, int64), test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_array([1], uint8) + int64(1), test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_array([1_0], float32) + 1e-14 == 1_0, test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_array([1_], float32) + 3, test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_array([1_], float32) + array(1_, float64), test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_array([1_], float32) + float64(1_), test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_array([1_], float32) + int64(3), test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_bool_(True) + 1, test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_float32(1) + 1j, test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_float32(1) + 3e100, test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_float32(5) + 5j, test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_int16(2) + 2, test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_int16(4) + 4j, test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_int32(1) + 5j, test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_uint8(1) + 2, test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_uint8(1) + 300, test/torch_np/test_nep50_examples.py::TestNEP50Table::test_nep50_exceptions_example_uint8(100) + 200, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_add_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_arctan2_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_and_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_or_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_bitwise_xor_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_copysign_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divide_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_divmod_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_equal_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_float_power_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_floor_divide_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmax_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmin_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_fmod_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_gcd_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_equal_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_greater_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_heaviside_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_hypot_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_lcm_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_ldexp_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_left_shift_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_equal_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_less_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp2_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logaddexp_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_and_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_or_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_logical_xor_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_matmul_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_maximum_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_minimum_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_mod_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_modf_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_multiply_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_nextafter_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_not_equal_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_power_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_remainder_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_right_shift_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_subtract_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar27_array27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar28_array28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar29_array29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar30_array30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar31_array31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar32_array32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar33_array33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar34_array34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar35_array35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_1_array10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_1_array11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_1_array12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_1_array13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_1_array14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_1_array15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_1_array16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_1_array17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_1_array9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_2_0_array18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_2_0_array19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_2_0_array20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_2_0_array21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_2_0_array22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_2_0_array23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_2_0_array24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_2_0_array25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_2_0_array26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_True_array0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_True_array1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_True_array2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_True_array3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_True_array4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_True_array5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_True_array6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_True_array7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_compare_ufuncs_name_true_divide_scalar_True_array8, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar27_array27_dtype27, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar28_array28_dtype28, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar29_array29_dtype29, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar30_array30_dtype30, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar31_array31_dtype31, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar32_array32_dtype32, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar33_array33_dtype33, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar34_array34_dtype34, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar35_array35_dtype35, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_1_array10_dtype10, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_1_array11_dtype11, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_1_array12_dtype12, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_1_array13_dtype13, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_1_array14_dtype14, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_1_array15_dtype15, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_1_array16_dtype16, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_1_array17_dtype17, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_1_array9_dtype9, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_2_0_array18_dtype18, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_2_0_array19_dtype19, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_2_0_array20_dtype20, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_2_0_array21_dtype21, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_2_0_array22_dtype22, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_2_0_array23_dtype23, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_2_0_array24_dtype24, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_2_0_array25_dtype25, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_2_0_array26_dtype26, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_True_array0_dtype0, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_True_array1_dtype1, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_True_array2_dtype2, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_True_array3_dtype3, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_True_array4_dtype4, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_True_array5_dtype5, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_True_array6_dtype6, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_True_array7_dtype7, test/torch_np/test_nep50_examples.py::TestCompareToNumpy::test_direct_compare_scalar_True_array8_dtype8 2025-08-14T22:33:03.3577190Z 2025-08-14T22:33:04.6157341Z Running higher_order_ops/test_invoke_quant 1/1 ... [2025-08-14 22:33:04.608309] 2025-08-14T22:33:04.6158116Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:33:04.6164917Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'higher_order_ops/test_invoke_quant.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:33:04.608309] 2025-08-14T22:33:08.9585528Z Running test_per_overload_api 1/1 ... [2025-08-14 22:33:08.952473] 2025-08-14T22:33:08.9586037Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:33:08.9592491Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_per_overload_api.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:33:08.952473] 2025-08-14T22:33:14.2978982Z 2025-08-14T22:33:14.2980003Z test_per_overload_api 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_per_overload_api_1.1_8f65f1d1d7c14c0b_.log 2025-08-14T22:33:14.2981683Z Running 3 items in this shard: test/test_per_overload_api.py::TestPerOverloadAPI::test_basics_opoverload, test/test_per_overload_api.py::TestPerOverloadAPI::test_basics_opoverloadpacket, test/test_per_overload_api.py::TestPerOverloadAPI::test_decompose 2025-08-14T22:33:14.2982921Z 2025-08-14T22:33:19.7876389Z Running test_tensorexpr_pybind 1/1 ... [2025-08-14 22:33:19.787149] 2025-08-14T22:33:19.7878733Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:33:19.7885538Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_tensorexpr_pybind.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:33:19.787783] 2025-08-14T22:33:25.2102446Z 2025-08-14T22:33:25.2103569Z test_tensorexpr_pybind 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_tensorexpr_pybind_1.1_281e90a4d19f765a_.log 2025-08-14T22:33:25.2110327Z Running 17 items in this shard: test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_alloc_in_loop, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_call_raw, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_dtype_error, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_dynamic_shape, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_dynamic_shape_2d, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_external_calls, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_kernel_shape_prop, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_kernel_shape_prop_module, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_kernel_with_custom_lowering, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_kernel_with_expand, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_kernel_with_permute, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_kernel_with_scalar_inputs, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_kernel_with_t, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_kernel_with_tensor_inputs, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_kernel_with_transpose, test/test_tensorexpr_pybind.py::TestTensorExprPyBind::test_simple_sum, test/test_tensorexpr_pybind.py::TestExprHandlePyBind::test_unary_ops 2025-08-14T22:33:25.2116298Z 2025-08-14T22:33:26.0149209Z 2025-08-14T22:33:26.0150169Z higher_order_ops/test_invoke_quant 1/1 was successful, full logs can be found in artifacts with path test/test-reports/higher_order_ops.test_invoke_quant_1.1_2645bd21b0a1d8e4_.log 2025-08-14T22:33:26.0156522Z Running 14 items in this shard: test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantEager::test_construct_inline, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantEager::test_inline, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantEager::test_multiple, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantEager::test_simple, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantAotEager::test_construct_inline, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantAotEager::test_inline, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantAotEager::test_multiple, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantAotEager::test_simple, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantInductor::test_construct_inline, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantInductor::test_inline, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantInductor::test_multiple, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantInductor::test_pattern_matching, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantInductor::test_prologue, test/higher_order_ops/test_invoke_quant.py::TestInvokeQuantInductor::test_simple 2025-08-14T22:33:26.0162928Z 2025-08-14T22:33:31.2003920Z Running test_pytree 1/1 ... [2025-08-14 22:33:31.198060] 2025-08-14T22:33:31.2004359Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:33:31.2010647Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_pytree.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:33:31.198060] 2025-08-14T22:33:31.5569164Z Running test_fx_passes 1/1 ... [2025-08-14 22:33:31.550007] 2025-08-14T22:33:31.5569641Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:33:31.5576448Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_fx_passes.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:33:31.550007] 2025-08-14T22:33:37.7768896Z 2025-08-14T22:33:37.7770037Z test_fx_passes 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_fx_passes_1.1_b12f3cf24080fe38_.log 2025-08-14T22:33:37.7795700Z Running 53 items in this shard: test/test_fx_passes.py::TestFXGraphPasses::test_fuser_pass_deep_model, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_partition0, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_partition1, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_partition10, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_partition11, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_partition2, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_partition3, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_partition4, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_partition5, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_partition6, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_partition7, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_partition8, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_partition9, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_xfail_partition0, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_xfail_partition1, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_xfail_partition2, test/test_fx_passes.py::TestFXGraphPasses::test_fuser_util_xfail_partition3, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn0_expected_partition0_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn10_expected_partition10_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn11_expected_partition11_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn12_expected_partition12_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn13_expected_partition13_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn14_expected_partition14_bookend_non_compute_pass_True, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn15_expected_partition15_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn16_expected_partition16_bookend_non_compute_pass_True, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn17_expected_partition17_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn18_expected_partition18_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn1_expected_partition1_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn2_expected_partition2_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn3_expected_partition3_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn4_expected_partition4_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn5_expected_partition5_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn6_expected_partition6_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn7_expected_partition7_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn8_expected_partition8_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_fn9_expected_partition9_bookend_non_compute_pass_False, test/test_fx_passes.py::TestFXGraphPasses::test_partitioner_independent_output_fn0_expected_partition0, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model0, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model1, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model10, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model11, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model12, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model13, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model14, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model15, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model2, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model3, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model4, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model5, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model6, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model7, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model8, test/test_fx_passes.py::TestFXMatcherUtils::test_subgraph_matcher_test_model9 2025-08-14T22:33:37.7818399Z 2025-08-14T22:33:39.7688708Z 2025-08-14T22:33:39.7689600Z test_pytree 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_pytree_1.1_176678deb2432159_.log 2025-08-14T22:33:39.7719991Z Running 98 items in this shard: test/test_pytree.py::TestGenericPytree::test_aligned_public_apis, test/test_pytree.py::TestGenericPytree::test_broadcast_to_and_flatten_cxx, test/test_pytree.py::TestGenericPytree::test_broadcast_to_and_flatten_py, test/test_pytree.py::TestGenericPytree::test_enum_treespec_roundtrip_cxx, test/test_pytree.py::TestGenericPytree::test_enum_treespec_roundtrip_py, test/test_pytree.py::TestGenericPytree::test_flatten_unflatten_defaultdict_cxx, test/test_pytree.py::TestGenericPytree::test_flatten_unflatten_defaultdict_py, test/test_pytree.py::TestGenericPytree::test_flatten_unflatten_deque_cxx, test/test_pytree.py::TestGenericPytree::test_flatten_unflatten_deque_py, test/test_pytree.py::TestGenericPytree::test_flatten_unflatten_dict_cxx, test/test_pytree.py::TestGenericPytree::test_flatten_unflatten_dict_py, test/test_pytree.py::TestGenericPytree::test_flatten_unflatten_leaf_cxx, test/test_pytree.py::TestGenericPytree::test_flatten_unflatten_leaf_py, test/test_pytree.py::TestGenericPytree::test_flatten_unflatten_list_cxx, test/test_pytree.py::TestGenericPytree::test_flatten_unflatten_list_py, test/test_pytree.py::TestGenericPytree::test_flatten_unflatten_namedtuple_cxx, test/test_pytree.py::TestGenericPytree::test_flatten_unflatten_namedtuple_py, test/test_pytree.py::TestGenericPytree::test_flatten_unflatten_nested_cxx, test/test_pytree.py::TestGenericPytree::test_flatten_unflatten_nested_py, test/test_pytree.py::TestGenericPytree::test_flatten_unflatten_ordereddict_cxx, test/test_pytree.py::TestGenericPytree::test_flatten_unflatten_ordereddict_py, test/test_pytree.py::TestGenericPytree::test_flatten_unflatten_return_types_max_cxx, test/test_pytree.py::TestGenericPytree::test_flatten_unflatten_return_types_max_py, test/test_pytree.py::TestGenericPytree::test_flatten_unflatten_return_types_min_cxx, test/test_pytree.py::TestGenericPytree::test_flatten_unflatten_return_types_min_py, test/test_pytree.py::TestGenericPytree::test_flatten_unflatten_tuple_cxx, test/test_pytree.py::TestGenericPytree::test_flatten_unflatten_tuple_py, test/test_pytree.py::TestGenericPytree::test_flatten_with_is_leaf_cxx, test/test_pytree.py::TestGenericPytree::test_flatten_with_is_leaf_py, test/test_pytree.py::TestGenericPytree::test_is_namedtuple_cxx, test/test_pytree.py::TestGenericPytree::test_is_namedtuple_py, test/test_pytree.py::TestGenericPytree::test_is_structseq_cxx, test/test_pytree.py::TestGenericPytree::test_is_structseq_py, test/test_pytree.py::TestGenericPytree::test_pytree_serialize_bad_input_cxx, test/test_pytree.py::TestGenericPytree::test_pytree_serialize_bad_input_py, test/test_pytree.py::TestGenericPytree::test_register_pytree_node_cxx, test/test_pytree.py::TestGenericPytree::test_register_pytree_node_py, test/test_pytree.py::TestGenericPytree::test_tree_all_any_cxx, test/test_pytree.py::TestGenericPytree::test_tree_all_any_py, test/test_pytree.py::TestGenericPytree::test_tree_map_cxx, test/test_pytree.py::TestGenericPytree::test_tree_map_multi_inputs_cxx, test/test_pytree.py::TestGenericPytree::test_tree_map_multi_inputs_py, test/test_pytree.py::TestGenericPytree::test_tree_map_only_cxx, test/test_pytree.py::TestGenericPytree::test_tree_map_only_predicate_fn_cxx, test/test_pytree.py::TestGenericPytree::test_tree_map_only_predicate_fn_py, test/test_pytree.py::TestGenericPytree::test_tree_map_only_py, test/test_pytree.py::TestGenericPytree::test_tree_map_py, test/test_pytree.py::TestPythonPytree::test_constant, test/test_pytree.py::TestPythonPytree::test_constant_default_eq_error, test/test_pytree.py::TestPythonPytree::test_constant_default_hash_error, test/test_pytree.py::TestPythonPytree::test_dataclass, test/test_pytree.py::TestPythonPytree::test_deprecated_register_pytree_node, test/test_pytree.py::TestPythonPytree::test_flatten_flatten_with_key_consistency, test/test_pytree.py::TestPythonPytree::test_import_pytree_doesnt_import_optree, test/test_pytree.py::TestPythonPytree::test_key_access, test/test_pytree.py::TestPythonPytree::test_key_str, test/test_pytree.py::TestPythonPytree::test_pytree_context_serialize_bad, test/test_pytree.py::TestPythonPytree::test_pytree_custom_type_serialize, test/test_pytree.py::TestPythonPytree::test_pytree_custom_type_serialize_bad, test/test_pytree.py::TestPythonPytree::test_pytree_serialize_bad_protocol, test/test_pytree.py::TestPythonPytree::test_pytree_serialize_defaultdict_enum, test/test_pytree.py::TestPythonPytree::test_pytree_serialize_enum, test/test_pytree.py::TestPythonPytree::test_pytree_serialize_namedtuple, test/test_pytree.py::TestPythonPytree::test_pytree_serialize_namedtuple_bad, test/test_pytree.py::TestPythonPytree::test_pytree_serialize_register_bad, test/test_pytree.py::TestPythonPytree::test_pytree_serialize_spec0, test/test_pytree.py::TestPythonPytree::test_pytree_serialize_spec1, test/test_pytree.py::TestPythonPytree::test_pytree_serialize_spec2, test/test_pytree.py::TestPythonPytree::test_pytree_serialize_spec3, test/test_pytree.py::TestPythonPytree::test_pytree_serialize_spec4, test/test_pytree.py::TestPythonPytree::test_pytree_serialize_spec5, test/test_pytree.py::TestPythonPytree::test_pytree_serialize_spec6, test/test_pytree.py::TestPythonPytree::test_pytree_serialize_spec7, test/test_pytree.py::TestPythonPytree::test_pytree_serialize_spec8, test/test_pytree.py::TestPythonPytree::test_pytree_serialize_spec9, test/test_pytree.py::TestPythonPytree::test_register_dataclass_class, test/test_pytree.py::TestPythonPytree::test_saved_serialized, test/test_pytree.py::TestPythonPytree::test_tree_flatten_with_path_is_leaf, test/test_pytree.py::TestPythonPytree::test_tree_flatten_with_path_roundtrip, test/test_pytree.py::TestPythonPytree::test_tree_leaves_with_path, test/test_pytree.py::TestPythonPytree::test_tree_map_with_path, test/test_pytree.py::TestPythonPytree::test_tree_map_with_path_multiple_trees, test/test_pytree.py::TestPythonPytree::test_treespec_equality, test/test_pytree.py::TestPythonPytree::test_treespec_repr, test/test_pytree.py::TestCxxPytree::test_pytree_custom_type_serialize, test/test_pytree.py::TestCxxPytree::test_pytree_serialize_namedtuple, test/test_pytree.py::TestCxxPytree::test_pytree_serialize_spec0, test/test_pytree.py::TestCxxPytree::test_pytree_serialize_spec1, test/test_pytree.py::TestCxxPytree::test_pytree_serialize_spec2, test/test_pytree.py::TestCxxPytree::test_pytree_serialize_spec3, test/test_pytree.py::TestCxxPytree::test_pytree_serialize_spec4, test/test_pytree.py::TestCxxPytree::test_pytree_serialize_spec5, test/test_pytree.py::TestCxxPytree::test_pytree_serialize_spec6, test/test_pytree.py::TestCxxPytree::test_pytree_serialize_spec7, test/test_pytree.py::TestCxxPytree::test_pytree_serialize_spec8, test/test_pytree.py::TestCxxPytree::test_pytree_serialize_spec9, test/test_pytree.py::TestCxxPytree::test_treespec_equality, test/test_pytree.py::TestCxxPytree::test_treespec_repr 2025-08-14T22:33:39.7747534Z 2025-08-14T22:33:43.4965029Z Running test_module_tracker 1/1 ... [2025-08-14 22:33:43.496178] 2025-08-14T22:33:43.4965526Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:33:43.4972367Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_module_tracker.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:33:43.496803] 2025-08-14T22:33:45.6657876Z Running test_typing 1/1 ... [2025-08-14 22:33:45.665440] 2025-08-14T22:33:45.6658330Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:33:45.6667196Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_typing.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:33:45.666089] 2025-08-14T22:33:49.2192065Z 2025-08-14T22:33:49.2193719Z test_module_tracker 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_module_tracker_1.1_3d1034c1825651c4_.log 2025-08-14T22:33:49.2196389Z Running 3 items in this shard: test/test_module_tracker.py::TestModuleTracker::test_bw_detection, test/test_module_tracker.py::TestModuleTracker::test_confused_hierarchy, test/test_module_tracker.py::TestModuleTracker::test_module_hierarchy 2025-08-14T22:33:49.2198156Z 2025-08-14T22:33:51.1691625Z 2025-08-14T22:33:51.1692719Z test_typing 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_typing_1.1_2ceb2a0fa57aa51d_.log 2025-08-14T22:33:51.1698440Z Running 18 items in this shard: test/test_typing.py::TestTyping::test_fail_arithmetic_ops.py, test/test_typing.py::TestTyping::test_fail_creation_ops.py, test/test_typing.py::TestTyping::test_fail_random.py, test/test_typing.py::TestTyping::test_fail_torch_size.py, test/test_typing.py::TestTyping::test_reveal_module_list.py, test/test_typing.py::TestTyping::test_reveal_namedtuple.py, test/test_typing.py::TestTyping::test_reveal_opt_size.py, test/test_typing.py::TestTyping::test_reveal_size.py, test/test_typing.py::TestTyping::test_reveal_tensor_constructors.py, test/test_typing.py::TestTyping::test_reveal_tensor_copy.py, test/test_typing.py::TestTyping::test_reveal_tensor_sampling.py, test/test_typing.py::TestTyping::test_reveal_torch_optim.py, test/test_typing.py::TestTyping::test_success_arithmetic_ops.py, test/test_typing.py::TestTyping::test_success_creation_ops.py, test/test_typing.py::TestTyping::test_success_cuda_steam.py, test/test_typing.py::TestTyping::test_success_distributions.py, test/test_typing.py::TestTyping::test_success_math_ops.py, test/test_typing.py::TestTyping::test_success_torch_size.py 2025-08-14T22:33:51.1703529Z 2025-08-14T22:33:55.2225982Z Running test_openmp 1/1 ... [2025-08-14 22:33:55.222233] 2025-08-14T22:33:55.2226480Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:33:55.2233455Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_openmp.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:33:55.222875] 2025-08-14T22:33:57.3732407Z Running torch_np/numpy_tests/core/test_scalarinherit 1/1 ... [2025-08-14 22:33:57.372498] 2025-08-14T22:33:57.3733040Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:33:57.3739904Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/numpy_tests/core/test_scalarinherit.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:33:57.372498] 2025-08-14T22:34:02.4588978Z 2025-08-14T22:34:02.4590711Z torch_np/numpy_tests/core/test_scalarinherit 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.numpy_tests.core.test_scalarinherit_1.1_73e4d287345e93d4_.log 2025-08-14T22:34:02.4592875Z Running 3 items in this shard: test/torch_np/numpy_tests/core/test_scalarinherit.py::TestInherit::test_gh_15395, test/torch_np/numpy_tests/core/test_scalarinherit.py::TestInherit::test_init, test/torch_np/numpy_tests/core/test_scalarinherit.py::TestInherit::test_init2 2025-08-14T22:34:02.4594056Z 2025-08-14T22:34:05.3791676Z 2025-08-14T22:34:05.3794030Z test_openmp 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_openmp_1.1_0cc237e1e2800248_.log 2025-08-14T22:34:05.3795188Z Running 2 items in this shard: test/test_openmp.py::TestOpenMP_ParallelFor::test_n_threads, test/test_openmp.py::TestOpenMP_ParallelFor::test_one_thread 2025-08-14T22:34:05.3795870Z 2025-08-14T22:34:08.0135040Z Running functorch/test_ac_knapsack 1/1 ... [2025-08-14 22:34:08.012974] 2025-08-14T22:34:08.0135670Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:34:08.0142312Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ac_knapsack.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:34:08.013629] 2025-08-14T22:34:10.9122602Z Running backends/xeon/test_launch 1/1 ... [2025-08-14 22:34:10.910658] 2025-08-14T22:34:10.9123138Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:34:10.9129612Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'backends/xeon/test_launch.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:34:10.910658] 2025-08-14T22:34:13.5718376Z 2025-08-14T22:34:13.5719498Z functorch/test_ac_knapsack 1/1 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ac_knapsack_1.1_7df75f3b6a514fe7_.log 2025-08-14T22:34:13.5727399Z Running 15 items in this shard: test/functorch/test_ac_knapsack.py::TestGraphInfoProvider::test_full_joint_nx_graph, test/functorch/test_ac_knapsack.py::TestGraphInfoProvider::test_get_knapsack_memory_input, test/functorch/test_ac_knapsack.py::TestGraphInfoProvider::test_get_knapsack_runtime_input, test/functorch/test_ac_knapsack.py::TestGraphInfoProvider::test_get_non_ac_peak_memory, test/functorch/test_ac_knapsack.py::TestGraphInfoProvider::test_get_theoretical_max_runtime, test/functorch/test_ac_knapsack.py::TestGraphInfoProvider::test_inialize_from_graph, test/functorch/test_ac_knapsack.py::TestGraphInfoProvider::test_recomputable_node_only_graph, test/functorch/test_ac_knapsack.py::TestGraphInfoProvider::test_recomputable_node_only_graph_with_larger_graph_context, test/functorch/test_ac_knapsack.py::TestGraphInfoProvider::test_simplified_fx_joint_graph, test/functorch/test_ac_knapsack.py::TestKnapsackEvaluator::test_evaluate_distribution_of_results_for_knapsack_algo, test/functorch/test_ac_knapsack.py::TestKnapsackEvaluator::test_evaluate_knapsack_output_accounting_for_backward_pass, test/functorch/test_ac_knapsack.py::TestKnapsackEvaluator::test_evaluate_knapsack_output_not_accounting_for_backward_pass, test/functorch/test_ac_knapsack.py::TestKnapsackEvaluator::test_evaluate_knapsack_output_with_wrong_sized_values, test/functorch/test_ac_knapsack.py::TestKnapsackEvaluator::test_get_backward_memory_from_topologically_sorted_graph, test/functorch/test_ac_knapsack.py::TestKnapsackEvaluator::test_get_knee_point_memory_budget 2025-08-14T22:34:13.5734320Z 2025-08-14T22:34:16.0689020Z 2025-08-14T22:34:16.0690038Z backends/xeon/test_launch 1/1 was successful, full logs can be found in artifacts with path test/test-reports/backends.xeon.test_launch_1.1_fd28ecd117755bf9_.log 2025-08-14T22:34:16.0692122Z Running 2 items in this shard: test/backends/xeon/test_launch.py::TestTorchrun::test_cpu_info, test/backends/xeon/test_launch.py::TestTorchrun::test_multi_threads 2025-08-14T22:34:16.0693159Z 2025-08-14T22:34:19.8495579Z Running test_nestedtensor 1/4 ... [2025-08-14 22:34:19.849341] 2025-08-14T22:34:19.8496224Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:34:19.8503359Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_nestedtensor.py', '-m', 'not serial', '--shard-id=1', '--num-shards=4', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:34:19.850063] 2025-08-14T22:34:22.0728353Z Running test_nestedtensor 3/4 ... [2025-08-14 22:34:22.070759] 2025-08-14T22:34:22.0728820Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:34:22.0735388Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_nestedtensor.py', '-m', 'not serial', '--shard-id=3', '--num-shards=4', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:34:22.070759] 2025-08-14T22:37:21.8603951Z 2025-08-14T22:37:21.8604871Z test_proxy_tensor 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_proxy_tensor_1.2_be9434f08666d1e2_.log 2025-08-14T22:37:21.9471196Z Running 1781 items in this shard: test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_allclose, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_amp_cache, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_constant_proxy_tensor_mut, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_constant_random, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_constant_unbind, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_decomp_of_capture, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_isolated_graphmodule, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_make_fx_model_double_param, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_make_fx_model_fwd_bwd_wgtupdate, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_make_fx_overloads, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_make_fx_reentrant_dispatch, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_make_fx_simple, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_partial_decomp, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_pre_dispatch_functionalization_view_op, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_pre_dispatch_mode_stack, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_resnet18_backward_trace, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_scalar_device, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_strides, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_tensor_constants, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_trace_subclasses, test/test_proxy_tensor.py::TestGenericProxyTensorReal::test_varargs, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_allclose, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_constant_blowup, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_constant_unbind, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_empty_like_doesnt_burn_in_defaults, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_isolated_graphmodule, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_make_fx_model_fwd_bwd, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_make_fx_model_fwd_bwd_wgtupdate, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_partial_decomp, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_pr_86917, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_pre_dispatch_functionalization_view_op, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_pre_dispatch_no_grad, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_proxy_tensor_mode_with_decomp_table_preserves_proxy, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_resnet18_backward_trace, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_scalar_device, test/test_proxy_tensor.py::TestGenericProxyTensorFake::test_val_metadata_mutation, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_amp_cache, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_constant_proxy_tensor_mut, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_constant_random, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_constant_unbind, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_decomp_of_capture, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_decomposition_interpreter, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_empty_like_doesnt_burn_in_defaults, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_make_fx_model_fwd_bwd_wgtupdate, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_make_fx_overloads, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_make_fx_reentrant_dispatch, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_make_fx_simple, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_mode_tracing_factory_function, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_partial_decomp, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_pr_86917, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_pre_dispatch_functionalization, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_pre_dispatch_functionalization_view_op, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_pre_dispatch_no_grad, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_strides, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_trace_subclasses, test/test_proxy_tensor.py::TestGenericProxyTensorSymbolic::test_varargs, test/test_proxy_tensor.py::TestRealProxyTensor::test_error_on_data_dependent_ops, test/test_proxy_tensor.py::TestFakeProxyTensor::test_fake_tensor_mode, test/test_proxy_tensor.py::TestFakeProxyTensor::test_fused_adam, test/test_proxy_tensor.py::TestFakeProxyTensor::test_meta, test/test_proxy_tensor.py::TestSymbolicTracing::test_adv_index_batch, test/test_proxy_tensor.py::TestSymbolicTracing::test_broadcast_shapes, test/test_proxy_tensor.py::TestSymbolicTracing::test_constant_specialization, test/test_proxy_tensor.py::TestSymbolicTracing::test_debug_interpreter, test/test_proxy_tensor.py::TestSymbolicTracing::test_dynamic_pointwise_scalar, test/test_proxy_tensor.py::TestSymbolicTracing::test_elementwise_meta_with_sym_numbers, test/test_proxy_tensor.py::TestSymbolicTracing::test_expand, test/test_proxy_tensor.py::TestSymbolicTracing::test_fake_tensor_as_size, test/test_proxy_tensor.py::TestSymbolicTracing::test_guard_lowerbound_range_refinement, test/test_proxy_tensor.py::TestSymbolicTracing::test_guard_upperbound_range_refinement, test/test_proxy_tensor.py::TestSymbolicTracing::test_guard_upperbound_range_refinement_multivariate, test/test_proxy_tensor.py::TestSymbolicTracing::test_guards_equal, test/test_proxy_tensor.py::TestSymbolicTracing::test_int_input, test/test_proxy_tensor.py::TestSymbolicTracing::test_item_to_constructor, test/test_proxy_tensor.py::TestSymbolicTracing::test_mega_guard, test/test_proxy_tensor.py::TestSymbolicTracing::test_metadata, test/test_proxy_tensor.py::TestSymbolicTracing::test_metadata_fresh, test/test_proxy_tensor.py::TestSymbolicTracing::test_multiply_shape, test/test_proxy_tensor.py::TestSymbolicTracing::test_non_deduped_shape, test/test_proxy_tensor.py::TestSymbolicTracing::test_nonidentity_transitive_guards, test/test_proxy_tensor.py::TestSymbolicTracing::test_repeat_interleave, test/test_proxy_tensor.py::TestSymbolicTracing::test_repeat_interleave_unbacked_output_size, test/test_proxy_tensor.py::TestSymbolicTracing::test_reshape_divisibility_unbacked, test/test_proxy_tensor.py::TestSymbolicTracing::test_return_symint, test/test_proxy_tensor.py::TestSymbolicTracing::test_setitem_symint, test/test_proxy_tensor.py::TestSymbolicTracing::test_sym_storage_offset, test/test_proxy_tensor.py::TestSymbolicTracing::test_symbolic_repeat_interleave, test/test_proxy_tensor.py::TestSymbolicTracing::test_symint_to_tensor, test/test_proxy_tensor.py::TestSymbolicTracing::test_unary, test/test_proxy_tensor.py::TestSymbolicTracing::test_unbacked_unify_guard_transitivity, test/test_proxy_tensor.py::TestSymbolicTracing::test_view_divisibility_unbacked, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_NumpyCatCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_NumpyNonzeroCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_NumpySortCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_NumpyTakeCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_T_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive___rmatmul___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive___rpow___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive__native_batch_norm_legit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive__segment_reduce_offsets_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive__unsafe_masked_index_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive__unsafe_masked_index_put_accumulate_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive__upsample_bilinear2d_aa_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_abs_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_add_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_addbmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_addmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_addmm_decomposed_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_addmv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_all_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_allclose_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_aminmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_argmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_as_strided_partial_views_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_as_strided_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_atan2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_atan_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_atanh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_atleast_2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_atleast_3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_bernoulli_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_bfloat16_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_block_diag_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_bool_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_broadcast_shapes_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_broadcast_to_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_byte_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cartesian_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cdist_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cdouble_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cfloat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_char_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cholesky_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cholesky_inverse_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_clamp_min_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_clone_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_column_stack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_combinations_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cond_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_conj_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_conj_physical_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cosh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_count_nonzero_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cross_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cummax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cumsum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_cumulative_trapezoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_diag_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_diagflat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_diagonal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_dist_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_div_floor_rounding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_div_no_rounding_mode_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_dsplit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_empty_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_erfc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_exp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_expand_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_eye_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_fft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_fftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_hfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_ifft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_ifft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_ifftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_ihfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_irfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_irfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fft_irfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fill_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_flatten_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_flex_attention_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fliplr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_float_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_float_power_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_floor_divide_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_fmod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_frac_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_frexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_full_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_full_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_geometric_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_geqrf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_gt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_hash_tensor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_heaviside_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_histogramdd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_hstack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_hypot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_i0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_index_add_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_index_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_index_fill_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_index_put_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_index_reduce_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_index_reduce_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_invoke_quant_packed_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_invoke_quant_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_isclose_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_isnan_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_item_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_jiterator_2inputs_2outputs_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_jiterator_4inputs_with_extra_args_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_jiterator_binary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_jiterator_unary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_kron_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_lerp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_cond_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_det_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_diagonal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_eig_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_lstsq_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_lu_factor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_lu_factor_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_matrix_power_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_matrix_rank_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_norm_subgradients_at_zero_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_pinv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_pinv_singular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_qr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_solve_triangular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_tensorinv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_vander_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_linalg_vector_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_log_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_log_normal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_log_softmax_with_dtype_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_logaddexp2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_logaddexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_logical_xor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_lu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_lu_unpack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_mH_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_mT_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_map_triple_nested_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_argmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_argmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_cumprod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_cumsum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_logaddexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_logsumexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_median_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_softmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_std_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_masked_var_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_matmul_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_matrix_exp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_max_pool2d_with_indices_backward_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_max_reduction_no_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_median_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_meshgrid_list_of_tensors_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_min_reduction_with_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_minimum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_mm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_mode_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_movedim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_msort_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_mul_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_multinomial_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_mv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nan_to_num_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nanmean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nanmedian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nanquantile_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_narrow_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_neg_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_new_empty_strided_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_new_ones_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_new_zeros_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_avg_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_avg_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_bilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_binary_cross_entropy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_celu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_channel_shuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_conv1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_conv3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_conv_transpose1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_cosine_embedding_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_cosine_similarity_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_dropout2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_dropout_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_embedding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_fractional_max_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_gaussian_nll_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_group_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_hardshrink_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_hardsigmoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_hinge_embedding_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_interpolate_linear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_interpolate_trilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_kl_div_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_leaky_relu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_logsigmoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_margin_ranking_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_max_unpool2d_grad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_max_unpool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_mish_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_mse_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_multi_head_attention_forward_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_multi_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_nll_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_normalize_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_pad_circular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_pad_reflect_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_pad_replicate_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_pdist_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_pixel_unshuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_prelu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_relu6_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_relu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_rrelu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_smooth_l1_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_softmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_softplus_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_threshold_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_triplet_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nn_functional_unfold_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_nonzero_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_norm_fro_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_norm_inf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_norm_nuc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_normal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_normal_in_place_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_normal_number_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_ones_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_permute_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_polar_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_polygamma_polygamma_n_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_polygamma_polygamma_n_2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_polygamma_polygamma_n_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_polygamma_polygamma_n_4_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_positive_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_pow_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_put_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_qr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_quantile_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_rand_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_randn_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_ravel_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_real_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_reciprocal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_renorm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_repeat_interleave_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_reshape_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_reshape_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_resize__cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_resize_as__cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_resolve_conj_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_rot90_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_round_decimals_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_rsqrt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_scalar_tensor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_scan_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_scatter_reduce_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_scatter_reduce_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_searchsorted_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_sgn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_sign_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_signal_windows_blackman_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_signal_windows_cosine_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_signal_windows_exponential_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_signal_windows_gaussian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_signal_windows_general_cosine_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_signal_windows_kaiser_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_signal_windows_nuttall_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_sinc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_sinh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_slice_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_sort_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_sparse_mm_reduce_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_sparse_sampled_addmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_airy_ai_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_bessel_j0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_bessel_j1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_bessel_y0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_bessel_y1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_chebyshev_polynomial_t_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_chebyshev_polynomial_u_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_erfcx_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_hermite_polynomial_h_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_i1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_legendre_polynomial_p_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_log_ndtr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_modified_bessel_i0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_modified_bessel_k0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_modified_bessel_k1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_ndtr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_ndtri_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_special_zeta_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_split_list_args_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_split_with_sizes_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_split_with_sizes_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_square_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_squeeze_multiple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_stack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_std_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_sum_to_size_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_svd_lowrank_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_t_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_take_along_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_tan_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_tensordot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_to_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_trace_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_transpose_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_transpose_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_trapezoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_trapz_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_triangular_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_tril_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_true_divide_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_unbind_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_unbind_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_unfold_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_uniform_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_unique_consecutive_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_unsqueeze_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_unsqueeze_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_var_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_var_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_vdot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_view_as_complex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_view_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_vstack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_exhaustive_where_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_NumpyMulScalarCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_NumpySplitCopyWithIntCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_T_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive___getitem___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive___radd___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive___rmatmul___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive___rmul___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive___rsub___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive__softmax_backward_data_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive__unsafe_masked_index_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_acos_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_acosh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_addbmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_addmm_decomposed_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_addr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_all_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_angle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_arange_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_argmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_argwhere_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_as_strided_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_as_strided_partial_views_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_asin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_asinh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_atleast_2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_bmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_broadcast_tensors_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_broadcast_to_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cauchy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cdouble_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cholesky_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cholesky_inverse_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cholesky_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_chunk_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_clamp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_clamp_min_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_clone_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_column_stack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_combinations_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_contiguous_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cos_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cov_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cummin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_cumsum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_deg2rad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_diag_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_diagonal_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_diagonal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_diagonal_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_diff_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_div_floor_rounding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_div_no_rounding_mode_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_double_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_dsplit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_dstack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_einsum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_erfinv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_exp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_expand_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_exponential_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_fft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_hfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_hfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_ifft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_ifft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_ifftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_ihfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fft_irfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_flatten_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_flex_attention_backward_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_flip_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_flipud_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_float_power_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_floor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_floor_divide_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_fmod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_frexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_full_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_gather_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_ge_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_geometric_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_hash_tensor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_hsplit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_hypot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_i0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_index_put_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_index_reduce_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_index_reduce_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_index_select_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_inner_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_invoke_quant_packed_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_invoke_subgraph_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_isfinite_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_isin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_isnan_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_isneginf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_item_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_jiterator_binary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_jiterator_binary_return_by_ref_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_kron_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_lerp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_lgamma_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_cholesky_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_cholesky_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_diagonal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_eigh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_eigvals_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_eigvalsh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_ldl_factor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_ldl_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_lstsq_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_lstsq_grad_oriented_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_lu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_matrix_power_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_matrix_rank_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_multi_dot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_pinv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_pinv_singular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_qr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_slogdet_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_solve_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_svd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_svdvals_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_tensorinv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_tensorsolve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linalg_vecdot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linspace_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_linspace_tensor_overload_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_log10_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_log1p_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_log_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_logaddexp2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_logaddexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_logdet_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_logical_and_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_logical_xor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_logspace_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_logsumexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_lt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_lu_unpack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_mT_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_map_nested_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_map_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_argmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_argmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_cumprod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_log_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_logsumexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_normalize_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_masked_std_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_matmul_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_max_reduction_no_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_meshgrid_variadic_tensors_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_min_binary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_min_reduction_with_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_mm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_mode_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_msort_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_mv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nan_to_num_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nanmean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nanmedian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nanquantile_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_narrow_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_native_dropout_backward_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_new_empty_strided_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_new_full_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_new_ones_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_new_zeros_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nextafter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_avg_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_binary_cross_entropy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_conv2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_conv3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_conv_transpose1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_cosine_embedding_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_cosine_similarity_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_cross_entropy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_ctc_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_dropout2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_dropout_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_embedding_bag_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_embedding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_fractional_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_glu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_grid_sample_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_group_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_hardshrink_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_hardtanh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_hinge_embedding_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_huber_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_instance_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_interpolate_nearest_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_l1_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_layer_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_margin_ranking_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_max_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_max_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_max_unpool1d_grad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_max_unpool2d_grad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_max_unpool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_max_unpool3d_grad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_mish_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_multi_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_normalize_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_pad_circular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_pad_constant_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_pad_reflect_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_pad_replicate_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_pad_replicate_negative_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_pdist_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_pixel_shuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_pixel_unshuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_poisson_nll_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_prelu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_relu6_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_rrelu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_selu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_smooth_l1_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_soft_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_softmin_with_dtype_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_softplus_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_softsign_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_triplet_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_unfold_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_upsample_bilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_nn_functional_upsample_nearest_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_norm_inf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_norm_nuc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_ones_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_pca_lowrank_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_permute_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_permute_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_polygamma_polygamma_n_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_polygamma_polygamma_n_2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_polygamma_polygamma_n_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_polygamma_polygamma_n_4_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_pow_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_rad2deg_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_randint_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_randint_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_randn_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_repeat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_repeat_interleave_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_reshape_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_resize_as__cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_resolve_conj_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_roll_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_round_decimals_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_scalar_tensor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_scan_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_scatter_add_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_scatter_reduce_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_scatter_reduce_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_scatter_reduce_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_select_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_select_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_signal_windows_cosine_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_signal_windows_exponential_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_signal_windows_gaussian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_signal_windows_general_cosine_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_signal_windows_general_hamming_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_signal_windows_hamming_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_signal_windows_hann_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_signal_windows_kaiser_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_sinh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_softmax_with_dtype_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_sort_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_sparse_sampled_addmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_bessel_j0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_bessel_j1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_bessel_y1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_chebyshev_polynomial_u_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_chebyshev_polynomial_v_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_hermite_polynomial_h_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_laguerre_polynomial_l_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_legendre_polynomial_p_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_modified_bessel_i0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_modified_bessel_k0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_ndtri_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_scaled_modified_bessel_k0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_spherical_bessel_j0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_special_xlog1py_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_split_list_args_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_sqrt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_square_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_stack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_std_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_std_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_std_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_sub_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_svd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_svd_lowrank_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_t_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_t_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_take_along_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_take_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_tensor_split_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_tile_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_to_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_trapezoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_trapz_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_tril_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_true_divide_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_unfold_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_uniform_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_unsafe_chunk_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_unsafe_split_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_unsqueeze_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_unsqueeze_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_var_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_var_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_var_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_view_as_complex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_view_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_vsplit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_vstack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_while_loop_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_zeros_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_fake_exhaustive_zeros_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_H_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_NumpyCatCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_NumpyMulCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_NumpyMulScalarCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_NumpyNMSCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_NumpyNonzeroCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_NumpySortCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_NumpyTakeCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_NumpyViewCopyCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_T_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive___getitem___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive___rdiv___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive___rmatmul___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive___rmod___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive__chunk_cat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive__native_batch_norm_legit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive__softmax_backward_data_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive__upsample_bilinear2d_aa_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_abs_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_acosh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_addbmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_addcmul_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_addmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_addmv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_alias_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_all_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_aminmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_angle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_arange_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_argwhere_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_as_strided_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_as_strided_partial_views_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_asinh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_atan2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_atan_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_atleast_1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_atleast_2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_atleast_3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_bernoulli_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_bfloat16_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_bmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_bool_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_bucketize_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cauchy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_ceil_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cfloat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_chalf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cholesky_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cholesky_inverse_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cholesky_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_chunk_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_clone_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_combinations_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_complex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_conj_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_contiguous_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_copysign_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_count_nonzero_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cov_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cummin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cumprod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_cumulative_trapezoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_deg2rad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_diag_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_diag_embed_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_diagflat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_diagonal_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_diagonal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_diagonal_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_diff_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_dist_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_div_floor_rounding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_div_no_rounding_mode_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_div_trunc_rounding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_double_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_dsplit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_empty_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_empty_permuted_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_equal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_exp2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_expand_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_expand_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_expm1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_exponential_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_eye_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_fft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_fftshift_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_hfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_hfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_ifftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_ifftshift_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_ihfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_ihfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fft_irfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_flex_attention_backward_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_float_power_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_fmod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_full_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_gather_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_ge_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_geqrf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_gt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_half_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_heaviside_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_histc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_histogram_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_hsplit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_i0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_igamma_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_index_add_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_index_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_index_put_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_index_reduce_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_index_reduce_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_index_reduce_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inner_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_NumpyCatCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_NumpyCubeCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_NumpyMulScalarCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_NumpySortCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_NumpySplitCopyWithIntCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_NumpyViewCopyCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace___getitem___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace___rmatmul___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace___rsub___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace__chunk_cat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace__segment_reduce_offsets_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace__softmax_backward_data_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_abs_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_acos_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_acosh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_add_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_addcmul_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_addmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_addmm_decomposed_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_all_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_allclose_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_aminmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_argmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_argsort_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_as_strided_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_as_strided_partial_views_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_asin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_asinh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_atan_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_baddbmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_bernoulli_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_block_diag_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_bmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_broadcast_shapes_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cartesian_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cauchy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_chalf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cholesky_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cholesky_inverse_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cholesky_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_clamp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_clamp_max_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_clamp_min_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_conj_physical_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_constant_pad_nd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_contiguous_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_copysign_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_corrcoef_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cos_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cosh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cumsum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_cumulative_trapezoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_deg2rad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_diagflat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_digamma_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_dist_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_div_floor_rounding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_div_trunc_rounding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_dot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_dstack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_empty_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_empty_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_empty_permuted_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_equal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_erf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_erfc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_exp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_expand_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_expand_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_expm1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_exponential_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_fft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_fftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_fftshift_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_hfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_hfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_ifft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_ifftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_ifftshift_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_ihfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_ihfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_irfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_irfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fft_irfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fill_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_flip_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fliplr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_float_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_floor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_fmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_frexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_ge_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_geometric_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_grid_sampler_2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_heaviside_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_histc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_histogram_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_histogramdd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_hsplit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_hypot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_i0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_index_add_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_index_put_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_index_reduce_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_inner_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_isfinite_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_isin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_isinf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_isnan_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_isposinf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_item_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_jiterator_2inputs_2outputs_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_jiterator_4inputs_with_extra_args_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_jiterator_binary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_jiterator_binary_return_by_ref_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_kthvalue_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_lgamma_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_cholesky_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_cross_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_eigh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_eigvals_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_eigvalsh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_inv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_ldl_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_lstsq_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_lstsq_grad_oriented_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_lu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_lu_factor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_lu_factor_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_lu_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_matrix_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_matrix_rank_hermitian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_pinv_singular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_solve_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_svdvals_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_vander_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_linalg_vecdot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_log_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_log_normal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_log_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_logaddexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_logical_and_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_logical_or_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_logit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_logspace_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_logspace_tensor_overload_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_logsumexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_long_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_lu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_lu_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_logaddexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_logsumexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_median_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_masked_sum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_max_pool2d_with_indices_backward_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_max_reduction_with_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_median_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_minimum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_mm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_mode_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_movedim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_msort_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_mul_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_multinomial_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_mv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nanquantile_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_native_layer_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_neg_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_new_empty_strided_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_new_full_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_alpha_dropout_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_avg_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_avg_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_avg_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_batch_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_conv_transpose1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_conv_transpose2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_cosine_embedding_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_cross_entropy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_ctc_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_dropout_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_fractional_max_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_gaussian_nll_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_glu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_grid_sample_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_hardswish_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_hardtanh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_hinge_embedding_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_huber_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_interpolate_area_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_interpolate_bilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_interpolate_nearest_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_leaky_relu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_local_response_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_logsigmoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_margin_ranking_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_max_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_max_unpool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_nll_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_pad_circular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_pad_replicate_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_pairwise_distance_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_pdist_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_pixel_shuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_pixel_unshuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_relu6_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_selu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_silu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_soft_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_softmin_with_dtype_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_tanhshrink_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_threshold_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_triplet_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_nonzero_static_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_norm_fro_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_norm_nuc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_normal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_normal_in_place_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_ones_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_pca_lowrank_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_permute_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_pinverse_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_polygamma_polygamma_n_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_polygamma_polygamma_n_4_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_positive_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_randint_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_randn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_renorm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_reshape_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_reshape_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_resize__cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_resolve_conj_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_round_decimals_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_rsqrt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_rsub_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_scatter_add_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_scatter_reduce_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_scatter_reduce_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_scatter_reduce_sum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_select_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_select_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_sgn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_short_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_signal_windows_hamming_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_signal_windows_hann_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_signal_windows_nuttall_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_sin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_sinc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_sinh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_slice_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_sparse_mm_reduce_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_sparse_sampled_addmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_airy_ai_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_bessel_j1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_bessel_y0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_bessel_y1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_chebyshev_polynomial_w_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_entr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_erfcx_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_hermite_polynomial_h_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_i0e_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_modified_bessel_k0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_spherical_bessel_j0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_special_xlog1py_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_split_list_args_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_split_with_sizes_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_split_with_sizes_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_squeeze_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_squeeze_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_std_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_std_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_sub_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_sum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_svd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_t_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_t_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_tanh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_tensordot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_tile_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_trace_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_trapezoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_tril_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_true_divide_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_trunc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_unbind_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_unbind_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_unflatten_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_unfold_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_uniform_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_unique_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_unsafe_split_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_unsqueeze_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_var_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_var_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_view_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_vstack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_zero__cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_zeros_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_inplace_zeros_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_int_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_invoke_subgraph_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_isfinite_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_isin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_isinf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_isposinf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_item_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_jiterator_2inputs_2outputs_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_jiterator_binary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_jiterator_binary_return_by_ref_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_kron_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_kthvalue_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_ldexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_le_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_lerp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_lgamma_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_cholesky_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_cond_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_cross_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_diagonal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_eigh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_ldl_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_lstsq_grad_oriented_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_lu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_lu_factor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_lu_factor_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_matrix_power_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_matrix_rank_hermitian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_multi_dot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_pinv_hermitian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_qr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_slogdet_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_solve_triangular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_svdvals_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_tensorinv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linalg_vander_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_linspace_tensor_overload_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_log10_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_log_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_log_normal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_log_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_log_softmax_with_dtype_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_logdet_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_logical_and_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_logical_not_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_logical_or_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_logical_xor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_logit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_long_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_lu_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_lu_unpack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_mH_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_mT_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_map_nested_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_map_simple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_amin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_cumprod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_cumsum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_fill_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_logaddexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_logsumexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_median_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_select_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_std_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_masked_var_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_max_pool2d_with_indices_backward_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_max_reduction_no_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_max_reduction_with_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_meshgrid_list_of_tensors_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_meshgrid_variadic_tensors_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_min_reduction_no_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_mul_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_multinomial_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_mv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nanmean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nansum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_narrow_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_native_layer_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_ne_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_new_empty_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_new_ones_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_new_zeros_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nextafter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_alpha_dropout_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_avg_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_avg_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_batch_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_celu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_channel_shuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_conv1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_conv3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_conv_transpose3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_cosine_embedding_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_elu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_embedding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_fractional_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_gelu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_group_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_hardsigmoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_hardswish_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_huber_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_interpolate_bilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_interpolate_linear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_interpolate_nearest_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_layer_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_leaky_relu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_linear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_max_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_max_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_max_unpool1d_grad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_max_unpool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_mish_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_mse_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_multi_head_attention_forward_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_multilabel_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_nll_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_normalize_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_pad_circular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_pad_replicate_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_pairwise_distance_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_pixel_unshuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_poisson_nll_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_relu6_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_relu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_silu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_smooth_l1_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_softplus_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nn_functional_unfold_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_nonzero_static_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_norm_inf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_norm_nuc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_normal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_normal_in_place_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_normal_number_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_ones_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_ormqr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_NumpyCatCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_NumpyCubeCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_NumpyNMSCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_NumpySplitCopyWithIntCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_NumpyTakeCustomOp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_T_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out___getitem___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out___rmatmul___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out___rmul___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out___rpow___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out___rsub___cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out__chunk_cat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out__softmax_backward_data_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out__unsafe_masked_index_put_accumulate_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out__upsample_bilinear2d_aa_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_addcdiv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_addmm_decomposed_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_angle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_any_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_arange_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_argmin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_argsort_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_as_strided_partial_views_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_asin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_atan_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_baddbmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_bfloat16_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_block_diag_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_bmm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_broadcast_shapes_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_broadcast_tensors_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_byte_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cartesian_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cdist_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cdouble_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_ceil_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cfloat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_chalf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cholesky_inverse_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_clamp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_clamp_max_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_clone_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_complex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_conj_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_conj_physical_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_constant_pad_nd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_copysign_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_corrcoef_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cos_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cummax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cumsum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_cumulative_trapezoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_diag_embed_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_diagflat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_diagonal_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_diagonal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_diff_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_div_trunc_rounding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_empty_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_empty_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_empty_permuted_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_erfinv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_exp2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_exp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_expand_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_expand_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_exponential_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_fft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_fftshift_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_hfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_hfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_ifftshift_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_ihfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_irfft2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_rfft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fft_rfftn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_flatten_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_flip_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_fliplr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_flipud_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_float_power_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_floor_divide_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_frac_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_geqrf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_gt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_hash_tensor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_histogram_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_hsplit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_i0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_index_add_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_index_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_index_fill_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_index_reduce_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_inner_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_int_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_isfinite_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_isin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_isinf_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_isreal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_item_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_jiterator_4inputs_with_extra_args_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_jiterator_binary_return_by_ref_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_lgamma_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_cholesky_ex_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_cross_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_eig_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_eigvals_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_ldl_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_lu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_matrix_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_matrix_rank_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_pinv_hermitian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_pinv_singular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_qr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_slogdet_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_solve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_solve_triangular_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_svdvals_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_tensorinv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_tensorsolve_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_vander_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_linalg_vector_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_log10_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_log2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_log_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_log_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_log_softmax_with_dtype_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_logical_not_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_logical_xor_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_logsumexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_lt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_lu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_lu_unpack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_mH_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_mT_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_amax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_argmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_log_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_logaddexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_logsumexp_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_median_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_normalize_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_sum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_masked_var_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_matmul_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_max_pool2d_with_indices_backward_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_max_reduction_with_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_maximum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_meshgrid_list_of_tensors_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_min_binary_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_min_reduction_with_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_minimum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_mm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_mode_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_movedim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_multinomial_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_mv_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nan_to_num_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nanmedian_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_narrow_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_ne_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_new_ones_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_new_zeros_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_alpha_dropout_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_avg_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_avg_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_binary_cross_entropy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_conv1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_conv_transpose2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_cosine_embedding_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_cosine_similarity_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_cross_entropy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_ctc_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_dropout_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_embedding_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_fractional_max_pool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_fractional_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_gaussian_nll_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_gelu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_hardsigmoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_huber_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_interpolate_area_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_interpolate_bicubic_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_interpolate_bilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_interpolate_linear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_interpolate_nearest_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_kl_div_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_layer_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_leaky_relu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_logsigmoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_max_pool1d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_max_pool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_max_unpool1d_grad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_max_unpool2d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_max_unpool2d_grad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_max_unpool3d_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_max_unpool3d_grad_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_multi_head_attention_forward_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_multi_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_nll_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_pad_constant_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_pad_replicate_negative_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_pixel_shuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_pixel_unshuffle_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_relu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_rms_norm_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_smooth_l1_loss_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_softmin_with_dtype_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_softplus_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_softshrink_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_softsign_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_nn_functional_upsample_bilinear_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_norm_fro_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_normal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_ones_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_ones_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_ormqr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_pca_lowrank_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_permute_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_pinverse_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_polar_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_polygamma_polygamma_n_1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_polygamma_polygamma_n_2_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_polygamma_polygamma_n_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_polygamma_polygamma_n_4_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_put_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_qr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_rad2deg_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_rand_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_randn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_ravel_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_real_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_reciprocal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_remainder_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_repeat_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_reshape_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_resize__cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_resize_as__cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_round_decimals_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_round_decimals_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_rsqrt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_scatter_reduce_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_scatter_reduce_sum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_sgn_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_sign_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_signal_windows_exponential_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_signal_windows_general_hamming_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_signal_windows_hann_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_signal_windows_kaiser_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_sin_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_sinh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_slice_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_softmax_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_softmax_with_dtype_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_sort_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_sparse_mm_reduce_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_airy_ai_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_bessel_y0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_chebyshev_polynomial_t_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_chebyshev_polynomial_w_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_hermite_polynomial_h_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_hermite_polynomial_he_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_i0e_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_laguerre_polynomial_l_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_legendre_polynomial_p_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_log_ndtr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_modified_bessel_i0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_modified_bessel_k0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_ndtri_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_xlog1py_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_special_zeta_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_split_with_sizes_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_squeeze_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_squeeze_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_stack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_stft_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_sub_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_sum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_take_along_dim_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_tan_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_tensor_split_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_tile_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_topk_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_transpose_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_trapz_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_true_divide_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_unbind_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_unique_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_unsafe_chunk_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_var_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_var_mean_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_var_mean_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_var_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_vdot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_view_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_view_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_vsplit_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_vstack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_where_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_xlogy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_zero__cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_zeros_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_out_zeros_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_pca_lowrank_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_permute_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_pinverse_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_polygamma_polygamma_n_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_polygamma_polygamma_n_3_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_polygamma_polygamma_n_4_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_positive_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_pow_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_put_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_rand_like_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_real_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_reciprocal_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_remainder_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_reshape_as_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_reshape_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_resize_as__cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_resolve_neg_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_rot90_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_round_decimals_0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_rsqrt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_rsub_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_scatter_reduce_prod_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_select_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_select_scatter_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_sigmoid_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_signal_windows_cosine_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_signal_windows_exponential_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_signal_windows_general_cosine_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_signal_windows_kaiser_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_signal_windows_nuttall_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_sinc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_softmax_with_dtype_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_sparse_mm_reduce_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_bessel_j0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_bessel_y1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_entr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_erfcx_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_hermite_polynomial_he_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_i1e_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_legendre_polynomial_p_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_log_ndtr_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_modified_bessel_i0_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_modified_bessel_i1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_scaled_modified_bessel_k1_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_split_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_split_list_args_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_split_with_sizes_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_sqrt_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_squeeze_multiple_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_stack_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_sum_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_sum_to_size_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_svd_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_t_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_t_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_tanh_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_trace_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_transpose_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_trapz_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_tril_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_triu_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_trunc_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_unbind_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_unflatten_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_unfold_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_uniform_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_unique_consecutive_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_unique_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_unsqueeze_copy_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_var_mean_unbiased_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_vdot_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_view_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_zeros_cpu_float32, test/test_proxy_tensor.py::TestProxyTensorOpInfoCPU::test_make_fx_symbolic_exhaustive_zeros_like_cpu_float32 2025-08-14T22:37:22.0300658Z 2025-08-14T22:37:27.8977620Z Running test_nestedtensor 4/4 ... [2025-08-14 22:37:27.897572] 2025-08-14T22:37:27.8984132Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:37:27.8985251Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_nestedtensor.py', '-m', 'not serial', '--shard-id=4', '--num-shards=4', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:37:27.897661] 2025-08-14T22:42:25.4571300Z 2025-08-14T22:42:25.4572517Z test_nestedtensor 1/4 was successful, full logs can be found in artifacts with path test/test-reports/test_nestedtensor_1.4_43b98c757d8b23e1_.log 2025-08-14T22:42:25.4764462Z Running 378 items in this shard: test/test_nestedtensor.py::TestNestedTensor::test_2d_nested_tensor_batch_size_2_max_seq_len_5_vocab_size_10, test/test_nestedtensor.py::TestNestedTensor::test_2d_nested_tensor_batch_size_2_max_seq_len_5_vocab_size_20, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_batch_size_2_max_seq_len_3_vocab_size_20, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_batch_size_4_max_seq_len_3_vocab_size_20, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_batch_size_4_max_seq_len_5_vocab_size_20, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_float_batch_size_2_max_seq_len_3_vocab_size_10, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_float_batch_size_2_max_seq_len_3_vocab_size_20, test/test_nestedtensor.py::TestNestedTensor::test_cat, test/test_nestedtensor.py::TestNestedTensor::test_copy_, test/test_nestedtensor.py::TestNestedTensor::test_like_functions_randn_like, test/test_nestedtensor.py::TestNestedTensor::test_nested_tensor, test/test_nestedtensor.py::TestNestedTensor::test_size_dim, test/test_nestedtensor.py::TestNestedTensor::test_unbind_4, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_binary_ops_with_scalar_ge_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_bmm_cuda_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_bmm_noncontiguous_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_detach_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_detach_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_device_checks_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_dropout_jagged_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_dropout_jagged_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_embedding_jagged_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_linear_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_linear_noncontiguous_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_linear_noncontiguous_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_masked_fill_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_matmul_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_matmul_nt_with_broadcasted_t_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_matmul_with_bmm_path_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_narrow_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_dense_elementwise_embedding_dim_128_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_dense_elementwise_embedding_dim_128_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_dense_elementwise_embedding_dim_384_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_dense_elementwise_embedding_dim_8_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_indexing_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_indexing_noncontiguous_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_mul_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_scaled_dot_product_attention_input_dim_3_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_serialization_requires_grad_False_weights_only_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_softmax_noncontiguous_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_dim3_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_dim4_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_noncontiguous_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_cos_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_silu_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_sin_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_sqrt_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_tanh__cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_view_inference_mode_interaction_cpu_float32, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_backward_add_strided_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_backward_for_add_op_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_dropout_backward_jagged_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_gelu_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_5d_size_128_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_edge_case_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_size_128_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_size_4_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_size_512_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_generates_leaf_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_linear_plus_transpose_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_reshape_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_reshape_gradcheck_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_softmax_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_squeeze_gradcheck_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_relu_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_selu_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_to_buffer_series_ops_grad_with_broadcast_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_values_grad_with_broadcast_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_jagged_requires_grad_False_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_jagged_requires_grad_True_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_jagged_requires_grad_True_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_jagged_requires_grad_True_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_strided_requires_grad_False_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_strided_requires_grad_True_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_jagged_requires_grad_False_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_jagged_requires_grad_True_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_strided_requires_grad_False_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_strided_requires_grad_False_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_strided_requires_grad_False_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_jagged_requires_grad_False_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_jagged_requires_grad_False_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_jagged_requires_grad_True_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_strided_requires_grad_False_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_strided_requires_grad_True_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_strided_requires_grad_True_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_strided_requires_grad_True_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_jagged_requires_grad_False_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_jagged_requires_grad_False_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_jagged_requires_grad_False_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_jagged_requires_grad_True_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_strided_requires_grad_False_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_strided_requires_grad_True_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_strided_requires_grad_True_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_strided_requires_grad_True_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_jagged_requires_grad_False_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_jagged_requires_grad_True_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_strided_requires_grad_False_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_strided_requires_grad_False_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_strided_requires_grad_True_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_binary_pointwise_broadcasting_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_binary_pointwise_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_binary_pointwise_with_nested_int_second_arg_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_compile_padded_dense_conversion_preserves_metadata_cache_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_compile_preserves_metadata_cache_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_composite_op_with_custom_mode_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_construction_from_list_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_device_dtype_transfer_updates_offsets_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_flatten_decomp_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_flex_attention_noncontig_with_holes_False_cross_attention_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_flex_attention_noncontig_with_holes_True_cross_attention_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_flex_attention_noncontig_with_holes_True_cross_attention_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_is_contiguous_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_as_nested_tensor_components_require_grad_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_as_nested_tensor_components_require_grad_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_nested_tensor_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_nested_tensor_requires_grad_False_components_require_grad_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_sum_keepdim_False_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_sum_keepdim_True_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_view_from_values_offsets_requires_grad_True_values_is_view_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_operate_on_batch_dim_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_with_lengths_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layout_under_torch_dispatch_mode_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_linear_nt_dim_3_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_linear_nt_dim_4_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_linear_nt_dim_5_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_mean_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_mean_keepdim_False_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_mean_keepdim_False_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_mean_keepdim_True_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_sum_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_sum_keepdim_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_1_different_output_shape_mean_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_1_different_output_shape_sum_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_1_different_output_shape_sum_keepdim_True_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_1_different_output_shape_sum_keepdim_True_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_mean_transpose_offset_1_keepdim_True_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_mean_transpose_offset_2_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_mean_transpose_offset_2_keepdim_False_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_mean_transpose_offset_2_keepdim_True_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_mean_transpose_offset_2_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_sum_transpose_offset_2_keepdim_False_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_sum_transpose_offset_2_keepdim_True_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_transpose_non_ragged_dim_different_output_shape_mean_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_transpose_non_ragged_dim_different_output_shape_sum_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_transpose_non_ragged_dim_different_output_shape_sum_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_with_lengths_different_output_shape_mean_keepdim_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_with_lengths_different_output_shape_mean_keepdim_True_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_with_lengths_different_output_shape_mean_keepdim_True_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_with_lengths_different_output_shape_mean_keepdim_True_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_with_lengths_different_output_shape_sum_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_with_lengths_different_output_shape_sum_keepdim_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_with_lengths_different_output_shape_sum_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_with_lengths_different_output_shape_sum_keepdim_True_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_backwards_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_flop_counter_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_with_constant_sequence_length_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_with_constant_sequence_length_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_with_packed_in_proj_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_reduce_ragged_idx_1_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_reduce_ragged_idx_1_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_reduce_ragged_idx_greater_than_1_same_output_shape_transpose_offset_2_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_requires_grad_True_components_require_grad_False_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_with_lengths_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_with_lengths_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_reduce_batch_dim_requires_grad_True_components_require_grad_False_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_reduce_batch_dim_requires_grad_True_components_require_grad_True_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_specialize_dynamic_shape_recompile_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_squeeze_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_batch_and_non_batch_keepdim_False_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_batch_and_non_batch_keepdim_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_batch_and_non_batch_keepdim_False_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_ragged_and_non_batch_keepdim_False_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_ragged_and_non_batch_keepdim_True_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_2_requires_grad_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_2_requires_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_3_requires_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_4_requires_grad_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_4_requires_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_2_requires_grad_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_2_requires_grad_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_2_requires_grad_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_3_requires_grad_True_cpu_bool, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_backward_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_transpose_ragged_idx_3_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_view_ragged_idx_not_one_cpu, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward___rmod___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_add_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_amax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_amin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_angle_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_asin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_atan_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_ceil_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_chalf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_clamp_max_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_conj_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_erf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_erfinv_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_exp2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_float_power_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_frac_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_i0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_linalg_vector_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_logaddexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_masked_prod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_masked_var_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_max_reduction_with_dim_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_narrow_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_celu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_hardtanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_linear_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_logsigmoid_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_prelu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_softplus_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_softshrink_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_threshold_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_polygamma_polygamma_n_0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_polygamma_polygamma_n_2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_polygamma_polygamma_n_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_positive_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_rad2deg_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_real_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_reciprocal_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_remainder_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_sgn_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_sigmoid_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_special_i1e_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_special_ndtri_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_squeeze_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_where_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward___rmod___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward___rpow___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward___rsub___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_abs_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_acos_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_add_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_complex_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_digamma_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_frac_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_ldexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_masked_logsumexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_masked_mean_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_masked_std_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_masked_sum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_max_reduction_with_dim_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_min_binary_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_min_reduction_with_dim_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_mul_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_neg_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_embedding_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_hardshrink_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_prelu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_rms_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_rrelu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_polar_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_prod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_reciprocal_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_sigmoid_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_sin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_special_i1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_special_xlog1py_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_split_with_sizes_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_sqrt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_std_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_true_divide_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_xlogy_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward___rpow___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_abs_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_angle_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_argmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_atan2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_cfloat_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_char_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_deg2rad_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_digamma_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_div_floor_rounding_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_erf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_erfc_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_erfinv_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_float_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_float_power_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_floor_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_floor_divide_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_frac_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_ge_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_half_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_isclose_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_isneginf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_jiterator_binary_return_by_ref_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_logical_not_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_logical_or_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_masked_amax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_ne_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_hardshrink_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_linear_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_logsigmoid_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_relu6_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_rms_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_polar_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_polygamma_polygamma_n_1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_rad2deg_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_round_decimals_neg_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_rsub_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_short_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_sigmoid_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_sinc_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_sinh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_bessel_y0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_hermite_polynomial_he_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_spherical_bessel_j0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_zeta_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_split_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_tan_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_tanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_true_divide_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_trunc_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_acos_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_acosh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_add_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_asinh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_cfloat_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_chunk_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_cos_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_count_nonzero_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_digamma_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_eq_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_erfc_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_erfinv_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_exp2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_float_power_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_floor_divide_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_fmin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_frexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_i0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_igamma_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_igammac_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_isposinf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_ldexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_log1p_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_logical_xor_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_lt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_argmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_mean_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_min_binary_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_elu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_hardshrink_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_prelu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_rms_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_softsign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_tanhshrink_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_threshold_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_polygamma_polygamma_n_4_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_pow_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_round_decimals_0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_round_decimals_neg_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_airy_ai_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_bessel_j0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_chebyshev_polynomial_v_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_erfcx_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_hermite_polynomial_he_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_legendre_polynomial_p_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_modified_bessel_i0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_modified_bessel_i1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_scaled_modified_bessel_k0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_scaled_modified_bessel_k1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_split_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_sqrt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_to_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_trunc_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_xlogy_cpu_float32 2025-08-14T22:42:25.4942151Z 2025-08-14T22:42:31.2460929Z Running test_meta 2/5 ... [2025-08-14 22:42:31.245565] 2025-08-14T22:42:31.2461393Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:42:31.2467567Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_meta.py', '-m', 'not serial', '--shard-id=2', '--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:31.246478] 2025-08-14T22:45:49.7446448Z 2025-08-14T22:45:49.7447819Z test_nestedtensor 3/4 was successful, full logs can be found in artifacts with path test/test-reports/test_nestedtensor_3.4_0c4fdb22d8697ff5_.log 2025-08-14T22:45:49.7646693Z Running 405 items in this shard: test/test_nestedtensor.py::TestNestedTensor::test_2d_nested_tensor_batch_size_2_max_seq_len_3_vocab_size_10, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_batch_size_2_max_seq_len_3_vocab_size_10, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_float_batch_size_4_max_seq_len_5_vocab_size_10, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_float_batch_size_4_max_seq_len_5_vocab_size_20, test/test_nestedtensor.py::TestNestedTensor::test_is_contiguous, test/test_nestedtensor.py::TestNestedTensor::test_like_functions_zeros_like, test/test_nestedtensor.py::TestNestedTensor::test_unbind_3, test/test_nestedtensor.py::TestNestedInt::test_comparisons, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_bmm_cpu_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_bmm_cuda_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_contiguous_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_detach_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_dropout_noncontiguous_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_embedding_strided_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_linear_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_masked_fill_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_matmul_nt_with_broadcasted_t_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_matmul_with_bmm_path_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_narrow_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_narrow_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_add_in_place_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_add_in_place_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_add_transpose_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_chunk_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_dense_elementwise_embedding_dim_256_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_div_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_indexing_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_indexing_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_split_with_sizes_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_sub_transpose_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_sum_dim_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_reshape_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_reshape_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_serialization_requires_grad_False_weights_only_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_serialization_requires_grad_False_weights_only_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_serialization_requires_grad_True_weights_only_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_serialization_requires_grad_True_weights_only_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_squeeze_unsqueeze_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_dim2_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_dim3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_dim3_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_output_size_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_simple_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_simple_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_zero_numel_errors_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_then_from_padded_tensor_no_transform0213_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_transpose_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_transpose_inference_mode_interaction_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_abs__cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_abs_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_gelu__cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_isposinf_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_relu_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_silu__cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_tanh_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unbind_noncontiguous_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unbind_noncontiguous_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_view_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_view_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_view_inference_mode_interaction_cpu_float64, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_abs_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_backward_for_sub_op_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_backward_sub_strided_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_dropout_backward_strided_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_indexing_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_size_1023_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_size_1024_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_size_2_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_bmm_gradcheck_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_from_padded_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_linear_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_to_padded_tensor_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_split_with_sizes_flow_through_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_apply__cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_jagged_requires_grad_False_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_jagged_requires_grad_False_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_jagged_requires_grad_True_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_strided_requires_grad_False_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_strided_requires_grad_False_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_strided_requires_grad_True_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_strided_requires_grad_True_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_jagged_requires_grad_False_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_jagged_requires_grad_True_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_strided_requires_grad_True_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_strided_requires_grad_True_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_jagged_requires_grad_False_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_jagged_requires_grad_True_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_strided_requires_grad_False_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_strided_requires_grad_False_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_strided_requires_grad_True_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_strided_requires_grad_True_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_strided_requires_grad_True_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_jagged_requires_grad_False_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_jagged_requires_grad_False_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_strided_requires_grad_False_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_strided_requires_grad_False_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_strided_requires_grad_True_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_jagged_requires_grad_False_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_jagged_requires_grad_True_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_strided_requires_grad_False_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_strided_requires_grad_True_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_autograd_function_with_None_grad_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_compile_with_dynamic_max_seq_len_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_compile_with_dynamic_min_seq_len_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_dummy_mha_with_nt_use_legacy_api_False_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_dummy_mha_with_nt_use_legacy_api_True_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_index_put_error_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_as_nested_tensor_components_require_grad_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_nested_tensor_requires_grad_True_components_require_grad_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_mean_keepdim_False_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_mean_keepdim_True_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_padded_dense_conversion_kernels_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_view_from_values_offsets_requires_grad_True_values_is_view_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_view_from_values_offsets_requires_grad_True_values_is_view_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_view_from_values_offsets_requires_grad_True_values_is_view_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_operate_on_batch_dim_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_reduce_ragged_idx_1_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_reduce_ragged_idx_1_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_like_value_rand_like_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_narrow_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_nested_tensor_activation_checkpoint_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_nested_tensor_from_jagged_fx_trace_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_nested_tensor_from_jagged_pass_min_max_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_nested_tensor_from_jagged_pass_min_max_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_noncontiguous_pointwise_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_noncontiguous_to_noncontig_with_holes_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_noncontiguous_to_noncontig_with_holes_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_mean_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_mean_keepdim_True_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_sum_keepdim_False_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_sum_keepdim_True_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_1_different_output_shape_mean_keepdim_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_1_different_output_shape_sum_keepdim_True_requires_grad_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_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_mean_transpose_offset_1_keepdim_True_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_mean_transpose_offset_2_keepdim_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_mean_transpose_offset_2_keepdim_True_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_sum_transpose_offset_1_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_sum_transpose_offset_1_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_sum_transpose_offset_2_keepdim_False_requires_grad_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_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_transpose_non_ragged_dim_different_output_shape_mean_keepdim_False_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_transpose_non_ragged_dim_different_output_shape_mean_keepdim_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_transpose_non_ragged_dim_different_output_shape_mean_keepdim_False_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_transpose_non_ragged_dim_different_output_shape_mean_keepdim_True_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_transpose_non_ragged_dim_different_output_shape_sum_keepdim_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_transpose_non_ragged_dim_different_output_shape_sum_keepdim_False_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_transpose_non_ragged_dim_different_output_shape_sum_keepdim_True_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_with_lengths_different_output_shape_mean_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_with_lengths_different_output_shape_mean_keepdim_False_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_with_lengths_different_output_shape_sum_keepdim_True_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_with_lengths_different_output_shape_sum_keepdim_True_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_permute_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_autocast_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_compile_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_with_packed_in_proj_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_reduce_ragged_idx_1_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_reduce_ragged_idx_greater_than_1_same_output_shape_transpose_offset_1_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_reduce_ragged_idx_greater_than_1_same_output_shape_transpose_offset_2_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_requires_grad_False_components_require_grad_False_log_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_requires_grad_True_components_require_grad_False_log_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_requires_grad_True_components_require_grad_True_log_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_reduce_batch_dim_requires_grad_False_components_require_grad_False_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_reduce_batch_dim_requires_grad_False_components_require_grad_True_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_reduce_batch_dim_requires_grad_True_components_require_grad_True_log_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_batch_and_non_batch_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_batch_and_non_batch_keepdim_True_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_batch_and_non_batch_keepdim_True_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_ragged_and_non_batch_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_ragged_and_non_batch_keepdim_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_ragged_and_non_batch_keepdim_False_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_ragged_and_non_batch_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_dtype_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_2_requires_grad_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_2_requires_grad_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_3_requires_grad_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_3_requires_grad_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_4_requires_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_4_requires_grad_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_4_requires_grad_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_2_requires_grad_False_cpu_bool, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_2_requires_grad_True_cpu_bool, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_3_requires_grad_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_3_requires_grad_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_4_requires_grad_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unary_pointwise_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_lengths_ragged_idx_0_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_transpose_ragged_idx_last_dim_cpu, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward___radd___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward___rdiv___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward___rmul___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward___rpow___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_bfloat16_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_cfloat_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_clamp_min_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_complex_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_copysign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_div_no_rounding_mode_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_erfc_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_fill_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_fmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_half_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_log10_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_log2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_masked_std_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_masked_sum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_min_binary_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_minimum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_mul_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_relu6_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_relu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_tanhshrink_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_polygamma_polygamma_n_1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_polygamma_polygamma_n_4_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_round_decimals_0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_round_decimals_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_rsqrt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_sin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_special_erfcx_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_special_i1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_special_ndtr_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_special_xlog1py_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_square_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_std_unbiased_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_sum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_tan_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_xlogy_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_amax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_angle_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_asin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_atan_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_bfloat16_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_bmm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_ceil_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_chalf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_clamp_max_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_clamp_min_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_clone_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_conj_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_cosh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_div_no_rounding_mode_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_div_trunc_rounding_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_erfinv_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_hypot_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_i0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_lgamma_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_masked_amin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_masked_prod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_masked_select_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_masked_var_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_max_binary_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_maximum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_minimum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nanmean_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_narrow_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_embedding_bag_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_mish_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_selu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_silu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_tanhshrink_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_threshold_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_polygamma_polygamma_n_0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_polygamma_polygamma_n_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_pow_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_round_decimals_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_select_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_special_log_ndtr_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_squeeze_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_sub_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_tan_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_tanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_where_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward___rmod___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward___rmul___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward___rsub___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_amin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_any_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_argmin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_asin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_bool_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_cdouble_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_ceil_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_conj_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_cosh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_double_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_fmod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_frexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_gt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_hash_tensor_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_hypot_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_i0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_igammac_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_index_put_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_isnan_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_jiterator_binary_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_le_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_linalg_vector_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_log10_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_log_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_logical_and_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_logit_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_lt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_masked_argmin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_max_reduction_with_dim_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_min_binary_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_mul_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nan_to_num_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_prelu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_rrelu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_selu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_silu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_softshrink_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_softsign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_polygamma_polygamma_n_0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_polygamma_polygamma_n_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_pow_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_real_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_round_decimals_0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_round_decimals_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_sgn_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_sign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_airy_ai_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_bessel_y1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_chebyshev_polynomial_t_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_chebyshev_polynomial_v_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_chebyshev_polynomial_w_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_entr_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_erfcx_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_legendre_polynomial_p_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_modified_bessel_k1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_ndtr_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_squeeze_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_std_unbiased_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_sub_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_xlogy_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward___radd___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward___rdiv___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward___rmul___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_all_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_amin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_argmin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_atan2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_bool_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_byte_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_cdouble_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_char_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_clamp_min_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_conj_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_cosh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_div_trunc_rounding_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_fill_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_heaviside_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_isfinite_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_isnan_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_jiterator_binary_return_by_ref_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_jiterator_unary_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_long_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_logsumexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_select_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_std_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_sum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_matmul_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_max_reduction_with_dim_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_maximum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_minimum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nan_to_num_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nextafter_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_celu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_relu6_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_selu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_polar_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_polygamma_polygamma_n_1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_polygamma_polygamma_n_2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_polygamma_polygamma_n_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_prod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_rad2deg_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_reciprocal_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_round_decimals_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_sgn_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_sign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_signbit_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_chebyshev_polynomial_t_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_chebyshev_polynomial_u_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_entr_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_hermite_polynomial_h_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_i1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_modified_bessel_k0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_modified_bessel_k1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_std_unbiased_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_sub_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_tan_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_true_divide_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_unflatten_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_unsqueeze_cpu_float32 2025-08-14T22:45:49.7840565Z 2025-08-14T22:45:53.8038744Z 2025-08-14T22:45:53.8040170Z test_nestedtensor 4/4 was successful, full logs can be found in artifacts with path test/test-reports/test_nestedtensor_4.4_658cc563c3d8aafb_.log 2025-08-14T22:45:53.8293798Z Running 395 items in this shard: test/test_nestedtensor.py::TestNestedTensor::test_2d_nested_tensor_batch_size_2_max_seq_len_3_vocab_size_20, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_batch_size_2_max_seq_len_5_vocab_size_10, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_batch_size_2_max_seq_len_5_vocab_size_20, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_batch_size_4_max_seq_len_5_vocab_size_10, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_float_batch_size_2_max_seq_len_5_vocab_size_10, test/test_nestedtensor.py::TestNestedTensor::test_3d_nested_tensor_float_batch_size_2_max_seq_len_5_vocab_size_20, test/test_nestedtensor.py::TestNestedTensor::test_default_nested_tensor, test/test_nestedtensor.py::TestNestedTensor::test_nested_namespace, test/test_nestedtensor.py::TestNestedTensor::test_numel, test/test_nestedtensor.py::TestNestedTensor::test_size, test/test_nestedtensor.py::TestNestedTensor::test_stride, test/test_nestedtensor.py::TestNestedTensor::test_unbind_dim, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_bmm_cpu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_bmm_cuda_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_clone_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_contiguous_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_dropout_noncontiguous_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_dropout_strided_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_empty_like_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_empty_like_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_empty_like_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_layer_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_matmul_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_matmul_noncontiguous_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_add_transpose_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_add_transpose_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_chunk_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_chunk_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_dense_elementwise_embedding_dim_384_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_mul_in_place_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_sub_transpose_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_nested_tensor_sub_transpose_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_scaled_dot_product_attention_input_dim_4_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_serialization_requires_grad_False_weights_only_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_serialization_requires_grad_True_weights_only_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_serialization_requires_grad_True_weights_only_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_serialization_requires_grad_True_weights_only_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_squeeze_unsqueeze_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_dim4_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_noncontiguous_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_output_size_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_to_padded_tensor_zero_numel_errors_cpu_float64, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_transpose_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_transpose_cpu_float32, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_isinf_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unary_funcs_isnan_cpu, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_unbind_noncontiguous_cpu_float16, test/test_nestedtensor.py::TestNestedTensorDeviceTypeCPU::test_view_inference_mode_interaction_cpu_float16, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_as_nested_tensor_propagates_gradients_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_5d_size_2_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_layer_norm_backward_size_513_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_from_list_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_from_mask_and_to_padded_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_from_padded_fused_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_linear_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_matmul_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_squeeze_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_transpose_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_nested_tensor_unsqueeze_backward_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_set_requires_grad_from_list_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_set_requires_grad_from_mask_cpu, test/test_nestedtensor.py::TestNestedTensorAutogradCPU::test_unbind_flow_through_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_jagged_requires_grad_False_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_jagged_requires_grad_True_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_jagged_requires_grad_True_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_0_layout_strided_requires_grad_False_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_jagged_requires_grad_False_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_jagged_requires_grad_False_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_jagged_requires_grad_False_contiguous_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_jagged_requires_grad_True_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_strided_requires_grad_False_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_1_layout_strided_requires_grad_True_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_jagged_requires_grad_False_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_jagged_requires_grad_False_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_jagged_requires_grad_True_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_strided_requires_grad_False_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_2_layout_strided_requires_grad_False_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_jagged_requires_grad_True_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_jagged_requires_grad_True_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_strided_requires_grad_False_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_strided_requires_grad_False_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_strided_requires_grad_True_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_3_layout_strided_requires_grad_True_contiguous_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_jagged_requires_grad_False_contiguous_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_jagged_requires_grad_True_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_jagged_requires_grad_True_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_strided_requires_grad_False_contiguous_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_strided_requires_grad_False_contiguous_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_as_nested_tensor_from_tensor_dim_4_layout_strided_requires_grad_True_contiguous_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_broadcast_shapes_on_in_graph_constructed_njt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_chunk_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_compile_with_propagated_dynamic_max_seq_len_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_composite_op_in_inference_mode_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_device_dtype_transfer_updates_offsets_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_flex_attention_converts_stacked_seq_indices_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_is_same_size_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_as_nested_tensor_components_require_grad_True_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_as_nested_tensor_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_nested_tensor_requires_grad_False_components_require_grad_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_nested_tensor_requires_grad_False_components_require_grad_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_nested_tensor_requires_grad_True_components_require_grad_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_nested_tensor_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_layout_construction_nested_tensor_requires_grad_True_components_require_grad_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_mean_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_mean_keepdim_False_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_mean_keepdim_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_mean_keepdim_True_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_mean_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_mean_keepdim_True_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_sum_keepdim_False_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_op_different_output_shape_dim_sum_keepdim_False_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_padded_dense_conversion_kernels_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_view_from_values_offsets_requires_grad_False_values_is_view_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_view_from_values_offsets_requires_grad_False_values_is_view_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_view_from_values_offsets_requires_grad_False_values_is_view_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_jagged_view_from_values_offsets_requires_grad_True_values_is_view_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_2d_input_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_2d_input_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_reduce_ragged_idx_1_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_layer_norm_with_lengths_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_like_shape_randn_like_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_like_value_empty_like_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_like_value_full_like_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_like_value_ones_like_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_njt_cat_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_sum_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_batch_only_different_output_shape_sum_keepdim_True_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_1_different_output_shape_mean_keepdim_False_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_1_different_output_shape_mean_keepdim_False_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_1_different_output_shape_mean_keepdim_True_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_1_different_output_shape_mean_keepdim_True_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_1_different_output_shape_sum_keepdim_False_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_1_different_output_shape_sum_keepdim_False_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_1_different_output_shape_sum_keepdim_False_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_1_different_output_shape_sum_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_mean_transpose_offset_1_keepdim_False_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_mean_transpose_offset_1_keepdim_False_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_mean_transpose_offset_2_keepdim_False_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_sum_transpose_offset_1_keepdim_False_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_sum_transpose_offset_1_keepdim_False_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_sum_transpose_offset_1_keepdim_True_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_reduce_ragged_idx_greater_than_1_different_output_shape_sum_transpose_offset_2_keepdim_True_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_transpose_non_ragged_dim_different_output_shape_mean_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_transpose_non_ragged_dim_different_output_shape_mean_keepdim_True_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_transpose_non_ragged_dim_different_output_shape_sum_keepdim_False_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_transpose_non_ragged_dim_different_output_shape_sum_keepdim_True_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_transpose_non_ragged_dim_different_output_shape_sum_keepdim_True_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_with_lengths_different_output_shape_mean_keepdim_False_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_with_lengths_different_output_shape_mean_keepdim_True_requires_grad_False_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_op_dim_with_lengths_different_output_shape_sum_keepdim_False_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_record_stream_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_backwards_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_compile_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sdpa_with_constant_sequence_length_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_serialization_contig_weights_only_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_serialization_noncontig_with_holes_weights_only_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_reduce_ragged_idx_greater_than_1_same_output_shape_transpose_offset_1_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_requires_grad_False_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_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_transpose_non_ragged_dim_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_transpose_non_ragged_dim_requires_grad_True_components_require_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_dim_with_lengths_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_softmax_reduce_batch_dim_requires_grad_False_components_require_grad_False_log_softmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_batch_and_non_batch_keepdim_True_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_ragged_and_non_batch_keepdim_True_requires_grad_False_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_sum_dim_reduce_ragged_and_non_batch_keepdim_True_requires_grad_True_components_require_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_2_requires_grad_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_2_requires_grad_False_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_3_requires_grad_False_cpu_float16, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_compile_nt_dim_3_requires_grad_True_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_2_requires_grad_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_3_requires_grad_True_cpu_float32, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_4_requires_grad_False_cpu_bool, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_to_padded_tensor_nt_dim_4_requires_grad_False_cpu_float64, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unary_pointwise_transposed_inputs_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_lengths_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_lengths_ragged_idx_1_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_lengths_ragged_idx_3_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unbind_lengths_ragged_idx_equals_2_bad_dim_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_unsafe_view_cpu, test/test_nestedtensor.py::TestNestedTensorSubclassCPU::test_views_inherit_ragged_dim_cpu, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_acos_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_acosh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_atan2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_bmm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_cdouble_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_cos_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_cosh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_deg2rad_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_expm1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_floor_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_fmin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_frexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_index_put_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_ldexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_lgamma_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_log1p_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_masked_amin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_masked_logsumexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_masked_mean_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_masked_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_masked_select_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_maximum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nan_to_num_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_neg_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_hardshrink_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_rms_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_rrelu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_selu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_silu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_nn_functional_softsign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_polar_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_prod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_round_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_special_i0e_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_split_with_sizes_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_sqrt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_std_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_sub_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_tanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_backward_unflatten_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward___rdiv___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward___rmul___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_atanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_cfloat_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_chunk_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_conj_physical_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_copysign_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_double_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_erfc_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_exp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_expm1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_fill_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_float_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_floor_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_fmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_fmod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_frexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_index_put_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_log10_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_log2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_logaddexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_logit_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_masked_amax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_matmul_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nansum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_hardtanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_linear_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_nn_functional_relu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_polygamma_polygamma_n_1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_positive_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_rad2deg_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_real_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_round_decimals_0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_round_decimals_neg_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_rsqrt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_rsub_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_sinh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_special_entr_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_special_erfcx_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_special_i1e_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_split_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_std_unbiased_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_sum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_to_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_backward_var_unbiased_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_acosh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_all_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_amax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_atan_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_atanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_bfloat16_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_clamp_max_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_clone_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_conj_physical_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_cos_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_div_trunc_rounding_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_eq_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_exp2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_exp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_fmin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_int_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_isreal_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_jiterator_unary_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_ldexp_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_log2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_long_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_masked_argmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_masked_mean_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_masked_norm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_masked_prod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_matmul_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_mean_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_min_reduction_with_dim_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_minimum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nanmean_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nansum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_narrow_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_neg_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nextafter_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_hardsigmoid_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_hardtanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_mish_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_softplus_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_nn_functional_threshold_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_polygamma_polygamma_n_4_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_prod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_round_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_rsqrt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_select_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_signbit_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_sin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_hermite_polynomial_h_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_i1e_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_modified_bessel_k0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_ndtri_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_scaled_modified_bessel_k0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_special_xlog1py_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_sqrt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_sum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_unflatten_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_var_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_var_unbiased_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_compile_forward_where_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward___rmod___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward___rsub___cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_abs_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_amax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_argmax_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_asin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_atan_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_atanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_bfloat16_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_bmm_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_ceil_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_chalf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_complex_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_conj_physical_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_div_floor_rounding_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_div_no_rounding_mode_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_double_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_erf_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_expm1_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_float_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_floor_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_fmod_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_frac_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_ge_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_half_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_hash_tensor_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_int_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_isclose_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_isreal_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_jiterator_binary_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_lgamma_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_log10_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_log2_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_logical_not_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_argmin_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_mean_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_masked_var_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_max_binary_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_min_reduction_with_dim_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nansum_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_ne_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_neg_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_hardtanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_logsigmoid_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_mish_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_relu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_rrelu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_silu_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_nn_functional_softplus_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_rsqrt_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_select_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_sinc_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_bessel_y0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_log_ndtr_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_ndtr_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_ndtri_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_spherical_bessel_j0_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_special_xlog1py_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_split_with_sizes_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_squeeze_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_std_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_tanh_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_var_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_var_unbiased_cpu_float32, test/test_nestedtensor.py::TestNestedTensorOpInfoCPU::test_forward_where_cpu_float32 2025-08-14T22:45:53.8570572Z 2025-08-14T22:45:55.7337573Z Running test_meta 5/5 ... [2025-08-14 22:45:55.733509] 2025-08-14T22:45:55.7338427Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:45:55.7346476Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_meta.py', '-m', 'not serial', '--shard-id=5', '--num-shards=5', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:45:55.734172] 2025-08-14T22:45:59.7119412Z Running test_utils_filelock 1/1 ... [2025-08-14 22:45:59.711696] 2025-08-14T22:45:59.7119955Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:45:59.7125989Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_utils_filelock.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:45:59.711768] 2025-08-14T22:46:04.8915820Z 2025-08-14T22:46:04.8917142Z test_utils_filelock 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_utils_filelock_1.1_33ad5056910a18db_.log 2025-08-14T22:46:04.8918324Z Running 2 items in this shard: test/test_utils_filelock.py::TestFileLock::test_no_crash, test/test_utils_filelock.py::TestFileLock::test_sequencing 2025-08-14T22:46:04.8919084Z 2025-08-14T22:46:10.4060179Z Running torch_np/test_random 1/1 ... [2025-08-14 22:46:10.405746] 2025-08-14T22:46:10.4060665Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:46:10.4067408Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'torch_np/test_random.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:46:10.406498] 2025-08-14T22:46:15.7717283Z 2025-08-14T22:46:15.7718800Z torch_np/test_random 1/1 was successful, full logs can be found in artifacts with path test/test-reports/torch_np.test_random_1.1_eedd85a19b37b2f4_.log 2025-08-14T22:46:15.7733285Z Running 41 items in this shard: test/torch_np/test_random.py::TestScalarReturn::test_rndm_array_use_numpy_False_func0, test/torch_np/test_random.py::TestScalarReturn::test_rndm_array_use_numpy_False_func1, test/torch_np/test_random.py::TestScalarReturn::test_rndm_array_use_numpy_False_func2, test/torch_np/test_random.py::TestScalarReturn::test_rndm_array_use_numpy_False_func3, test/torch_np/test_random.py::TestScalarReturn::test_rndm_array_use_numpy_False_func6, test/torch_np/test_random.py::TestScalarReturn::test_rndm_array_use_numpy_False_func7, test/torch_np/test_random.py::TestScalarReturn::test_rndm_array_use_numpy_False_random_random, test/torch_np/test_random.py::TestScalarReturn::test_rndm_array_use_numpy_False_random_sample, test/torch_np/test_random.py::TestScalarReturn::test_rndm_array_use_numpy_True_func0, test/torch_np/test_random.py::TestScalarReturn::test_rndm_array_use_numpy_True_func1, test/torch_np/test_random.py::TestScalarReturn::test_rndm_array_use_numpy_True_func2, test/torch_np/test_random.py::TestScalarReturn::test_rndm_array_use_numpy_True_func3, test/torch_np/test_random.py::TestScalarReturn::test_rndm_array_use_numpy_True_func6, test/torch_np/test_random.py::TestScalarReturn::test_rndm_array_use_numpy_True_func7, test/torch_np/test_random.py::TestScalarReturn::test_rndm_array_use_numpy_True_random_random, test/torch_np/test_random.py::TestScalarReturn::test_rndm_array_use_numpy_True_random_sample, test/torch_np/test_random.py::TestScalarReturn::test_rndm_scalar_use_numpy_False_func0, test/torch_np/test_random.py::TestScalarReturn::test_rndm_scalar_use_numpy_False_func1, test/torch_np/test_random.py::TestScalarReturn::test_rndm_scalar_use_numpy_False_func2, test/torch_np/test_random.py::TestScalarReturn::test_rndm_scalar_use_numpy_False_func3, test/torch_np/test_random.py::TestScalarReturn::test_rndm_scalar_use_numpy_False_func6, test/torch_np/test_random.py::TestScalarReturn::test_rndm_scalar_use_numpy_False_func7, test/torch_np/test_random.py::TestScalarReturn::test_rndm_scalar_use_numpy_False_random_random, test/torch_np/test_random.py::TestScalarReturn::test_rndm_scalar_use_numpy_False_random_sample, test/torch_np/test_random.py::TestScalarReturn::test_rndm_scalar_use_numpy_True_func0, test/torch_np/test_random.py::TestScalarReturn::test_rndm_scalar_use_numpy_True_func1, test/torch_np/test_random.py::TestScalarReturn::test_rndm_scalar_use_numpy_True_func2, test/torch_np/test_random.py::TestScalarReturn::test_rndm_scalar_use_numpy_True_func3, test/torch_np/test_random.py::TestScalarReturn::test_rndm_scalar_use_numpy_True_func6, test/torch_np/test_random.py::TestScalarReturn::test_rndm_scalar_use_numpy_True_func7, test/torch_np/test_random.py::TestScalarReturn::test_rndm_scalar_use_numpy_True_random_random, test/torch_np/test_random.py::TestScalarReturn::test_rndm_scalar_use_numpy_True_random_sample, test/torch_np/test_random.py::TestShuffle::test_1d_use_numpy_False, test/torch_np/test_random.py::TestShuffle::test_1d_use_numpy_True, test/torch_np/test_random.py::TestShuffle::test_2d_use_numpy_False, test/torch_np/test_random.py::TestShuffle::test_2d_use_numpy_True, test/torch_np/test_random.py::TestShuffle::test_shuffle_list_use_numpy_False, test/torch_np/test_random.py::TestShuffle::test_shuffle_list_use_numpy_True, test/torch_np/test_random.py::TestChoice::test_choice_use_numpy_False, test/torch_np/test_random.py::TestChoice::test_choice_use_numpy_True, test/torch_np/test_random.py::TestNumpyGlobal::test_numpy_global 2025-08-14T22:46:15.7746859Z 2025-08-14T22:46:21.2625728Z Running profiler/test_kineto 1/1 ... [2025-08-14 22:46:21.259313] 2025-08-14T22:46:21.2626206Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:46:21.2632903Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'profiler/test_kineto.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:46:21.259313] 2025-08-14T22:46:28.6023321Z 2025-08-14T22:46:28.6024337Z profiler/test_kineto 1/1 was successful, full logs can be found in artifacts with path test/test-reports/profiler.test_kineto_1.1_52686f85597d355d_.log 2025-08-14T22:46:28.6025846Z Running 1 items in this shard: test/profiler/test_kineto.py::SimpleKinetoInitializationTest::test_kineto_profiler_with_environment_variable 2025-08-14T22:46:28.6026504Z 2025-08-14T22:46:34.0349524Z Running test_compile_benchmark_util 1/1 ... [2025-08-14 22:46:34.030800] 2025-08-14T22:46:34.0350065Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:46:34.0351379Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_compile_benchmark_util.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:46:34.031629] 2025-08-14T22:46:38.9395484Z 2025-08-14T22:46:38.9396857Z test_compile_benchmark_util 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_compile_benchmark_util_1.1_ba510b0c0d408632_.log 2025-08-14T22:46:38.9398177Z Running 1 items in this shard: test/test_compile_benchmark_util.py::TestCompileBenchmarkUtil::test_training_and_inference 2025-08-14T22:46:38.9398730Z 2025-08-14T22:46:44.5913989Z Running test_optim 1/1 ... [2025-08-14 22:46:44.590848] 2025-08-14T22:46:44.5914554Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:46:44.5925564Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', '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 22:46:44.592153] 2025-08-14T22:48:07.9440492Z 2025-08-14T22:48:07.9441768Z test_optim 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_optim_1.1_f5448a7043ef18bc_.log 2025-08-14T22:48:08.0095189Z Running 966 items in this shard: test/test_optim.py::TestLRScheduler::test_CosineAnnealingWarmRestarts_T_cur_reset, test/test_optim.py::TestLRScheduler::test_CosineAnnealingWarmRestarts_lr1_T_mult_1, test/test_optim.py::TestLRScheduler::test_CosineAnnealingWarmRestarts_lr1_T_mult_2, test/test_optim.py::TestLRScheduler::test_CosineAnnealingWarmRestarts_lr1_T_mult_4, test/test_optim.py::TestLRScheduler::test_CosineAnnealingWarmRestarts_lr2, test/test_optim.py::TestLRScheduler::test_CosineAnnealingWarmRestarts_lr3, test/test_optim.py::TestLRScheduler::test_CosineAnnealingWarmRestarts_lr_state_dict, test/test_optim.py::TestLRScheduler::test_add_param_group_does_not_break_reduce_lr_on_plateau_min_lr_list, test/test_optim.py::TestLRScheduler::test_add_param_group_does_not_break_reduce_lr_on_plateau_min_lr_scalar, test/test_optim.py::TestLRScheduler::test_add_param_group_errors_reduce_lr_on_plateau, test/test_optim.py::TestLRScheduler::test_chained_lr1, test/test_optim.py::TestLRScheduler::test_chained_lr2, test/test_optim.py::TestLRScheduler::test_chained_lr2_get_last_lr_before_step, test/test_optim.py::TestLRScheduler::test_chained_lr3, test/test_optim.py::TestLRScheduler::test_chained_lr4, test/test_optim.py::TestLRScheduler::test_chained_lr5, test/test_optim.py::TestLRScheduler::test_closed_form_constantlr, test/test_optim.py::TestLRScheduler::test_closed_form_cos_anneal_lr, test/test_optim.py::TestLRScheduler::test_closed_form_exp_lr, test/test_optim.py::TestLRScheduler::test_closed_form_linearlr, test/test_optim.py::TestLRScheduler::test_closed_form_multi_step_lr, test/test_optim.py::TestLRScheduler::test_closed_form_poly_lr, test/test_optim.py::TestLRScheduler::test_closed_form_step_lr, test/test_optim.py::TestLRScheduler::test_compound_cosanneal_and_exp_lr, test/test_optim.py::TestLRScheduler::test_compound_cosanneal_and_linearlr, test/test_optim.py::TestLRScheduler::test_compound_cosanneal_and_multistep_lr, test/test_optim.py::TestLRScheduler::test_compound_cosanneal_and_step_lr, test/test_optim.py::TestLRScheduler::test_compound_exp_and_linearlr, test/test_optim.py::TestLRScheduler::test_compound_exp_and_multistep_lr, test/test_optim.py::TestLRScheduler::test_compound_linearlr_and_multistep_lr, test/test_optim.py::TestLRScheduler::test_compound_reduce_lr_on_plateau1, test/test_optim.py::TestLRScheduler::test_compound_reduce_lr_on_plateau2, test/test_optim.py::TestLRScheduler::test_compound_reduce_lr_on_plateau3, test/test_optim.py::TestLRScheduler::test_compound_reduce_lr_on_plateau4, test/test_optim.py::TestLRScheduler::test_compound_reduce_lr_on_plateau5, test/test_optim.py::TestLRScheduler::test_compound_step_and_constantlr, test/test_optim.py::TestLRScheduler::test_compound_step_and_exp_lr, test/test_optim.py::TestLRScheduler::test_compound_step_and_multistep_lr, test/test_optim.py::TestLRScheduler::test_constant_initial_lr_LRClass0, test/test_optim.py::TestLRScheduler::test_constant_initial_lr_LRClass1, test/test_optim.py::TestLRScheduler::test_constant_initial_lr_LRClass2, test/test_optim.py::TestLRScheduler::test_constant_initial_lr_LRClass3, test/test_optim.py::TestLRScheduler::test_constant_initial_lr_LRClass4, test/test_optim.py::TestLRScheduler::test_constant_initial_lr_LRClass5, test/test_optim.py::TestLRScheduler::test_constant_initial_lr_LRClass6, test/test_optim.py::TestLRScheduler::test_constant_initial_lr_LRClass7, test/test_optim.py::TestLRScheduler::test_constant_initial_lr_LRClass8, test/test_optim.py::TestLRScheduler::test_constant_initial_lr_LRClass9, test/test_optim.py::TestLRScheduler::test_constant_initial_params_cyclelr, test/test_optim.py::TestLRScheduler::test_constant_initial_params_onecyclelr, test/test_optim.py::TestLRScheduler::test_constant_initial_params_swalr, test/test_optim.py::TestLRScheduler::test_constantlr, test/test_optim.py::TestLRScheduler::test_constantlr_is_constant_for_constant_epoch, test/test_optim.py::TestLRScheduler::test_constantlr_with_epoch, test/test_optim.py::TestLRScheduler::test_cos_anneal_lr, test/test_optim.py::TestLRScheduler::test_cos_anneal_lr_continue, test/test_optim.py::TestLRScheduler::test_cosine_lr_state_dict, test/test_optim.py::TestLRScheduler::test_cosine_then_cyclic, test/test_optim.py::TestLRScheduler::test_cycle_lr_cycle_momentum_fail_with_momentumless_optimizer, test/test_optim.py::TestLRScheduler::test_cycle_lr_cycle_momentum_with_beta1_optimizer, test/test_optim.py::TestLRScheduler::test_cycle_lr_exp_range_mode, test/test_optim.py::TestLRScheduler::test_cycle_lr_exp_range_mode_one_lr, test/test_optim.py::TestLRScheduler::test_cycle_lr_exp_range_mode_step_size_up_down, test/test_optim.py::TestLRScheduler::test_cycle_lr_invalid_mode, test/test_optim.py::TestLRScheduler::test_cycle_lr_removed_after_out_of_scope, test/test_optim.py::TestLRScheduler::test_cycle_lr_scale_fn_restored_from_state_dict, test/test_optim.py::TestLRScheduler::test_cycle_lr_state_dict_picklable, test/test_optim.py::TestLRScheduler::test_cycle_lr_triangular2_mode, test/test_optim.py::TestLRScheduler::test_cycle_lr_triangular2_mode_one_lr, test/test_optim.py::TestLRScheduler::test_cycle_lr_triangular2_mode_step_size_up_down, test/test_optim.py::TestLRScheduler::test_cycle_lr_triangular_mode, test/test_optim.py::TestLRScheduler::test_cycle_lr_triangular_mode_one_lr, test/test_optim.py::TestLRScheduler::test_cycle_lr_triangular_mode_one_lr_no_momentum, test/test_optim.py::TestLRScheduler::test_cycle_lr_triangular_mode_step_size_up_down, test/test_optim.py::TestLRScheduler::test_cycle_lr_with_adam, test/test_optim.py::TestLRScheduler::test_cycle_lr_with_momentumless_optimizer, test/test_optim.py::TestLRScheduler::test_error_when_getlr_has_epoch, test/test_optim.py::TestLRScheduler::test_exp_lr, test/test_optim.py::TestLRScheduler::test_exp_step_lr_state_dict, test/test_optim.py::TestLRScheduler::test_exponential_lr_is_constant_for_constant_epoch, test/test_optim.py::TestLRScheduler::test_get_last_lr_constantlr, test/test_optim.py::TestLRScheduler::test_get_last_lr_linearlr, test/test_optim.py::TestLRScheduler::test_get_last_lr_multi_step_lr, test/test_optim.py::TestLRScheduler::test_get_last_lr_sequentiallr, test/test_optim.py::TestLRScheduler::test_get_last_lr_step_lr, test/test_optim.py::TestLRScheduler::test_lambda_lr, test/test_optim.py::TestLRScheduler::test_lambda_lr_state_dict_fn, test/test_optim.py::TestLRScheduler::test_lambda_lr_state_dict_obj, test/test_optim.py::TestLRScheduler::test_linear_linearlr_is_constant_for_constant_epoch, test/test_optim.py::TestLRScheduler::test_linearlr, test/test_optim.py::TestLRScheduler::test_linearlr_start_factor_limits1, test/test_optim.py::TestLRScheduler::test_linearlr_start_factor_limits2, test/test_optim.py::TestLRScheduler::test_linearlr_with_epoch, test/test_optim.py::TestLRScheduler::test_lr_scheduler_checkpoint_LRClass0, test/test_optim.py::TestLRScheduler::test_lr_scheduler_checkpoint_LRClass1, test/test_optim.py::TestLRScheduler::test_lr_scheduler_checkpoint_LRClass10, test/test_optim.py::TestLRScheduler::test_lr_scheduler_checkpoint_LRClass11, test/test_optim.py::TestLRScheduler::test_lr_scheduler_checkpoint_LRClass12, test/test_optim.py::TestLRScheduler::test_lr_scheduler_checkpoint_LRClass2, test/test_optim.py::TestLRScheduler::test_lr_scheduler_checkpoint_LRClass3, test/test_optim.py::TestLRScheduler::test_lr_scheduler_checkpoint_LRClass4, test/test_optim.py::TestLRScheduler::test_lr_scheduler_checkpoint_LRClass5, test/test_optim.py::TestLRScheduler::test_lr_scheduler_checkpoint_LRClass6, test/test_optim.py::TestLRScheduler::test_lr_scheduler_checkpoint_LRClass7, test/test_optim.py::TestLRScheduler::test_lr_scheduler_checkpoint_LRClass8, test/test_optim.py::TestLRScheduler::test_lr_scheduler_checkpoint_LRClass9, test/test_optim.py::TestLRScheduler::test_lr_scheduler_checkpoint_on_plateau, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass0_weights_only_False, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass0_weights_only_True, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass10_weights_only_False, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass10_weights_only_True, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass11_weights_only_False, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass11_weights_only_True, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass12_weights_only_False, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass12_weights_only_True, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass13_weights_only_False, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass13_weights_only_True, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass14_weights_only_False, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass14_weights_only_True, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass1_weights_only_False, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass1_weights_only_True, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass2_weights_only_False, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass2_weights_only_True, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass3_weights_only_False, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass3_weights_only_True, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass4_weights_only_False, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass4_weights_only_True, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass5_weights_only_False, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass5_weights_only_True, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass6_weights_only_False, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass6_weights_only_True, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass7_weights_only_False, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass7_weights_only_True, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass8_weights_only_False, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass8_weights_only_True, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass9_weights_only_False, test/test_optim.py::TestLRScheduler::test_lr_scheduler_state_dict_load_LRClass9_weights_only_True, test/test_optim.py::TestLRScheduler::test_multi_step_lr, test/test_optim.py::TestLRScheduler::test_multi_step_lr_state_dict, test/test_optim.py::TestLRScheduler::test_multi_step_lr_with_epoch, test/test_optim.py::TestLRScheduler::test_multiplicative_lr, test/test_optim.py::TestLRScheduler::test_multiplicative_lr_with_lr_lambda, test/test_optim.py::TestLRScheduler::test_new_pattern_no_warning, test/test_optim.py::TestLRScheduler::test_new_pattern_no_warning_with_arg, test/test_optim.py::TestLRScheduler::test_new_pattern_no_warning_with_overridden_optim_step, test/test_optim.py::TestLRScheduler::test_no_cyclic_references, test/test_optim.py::TestLRScheduler::test_no_cyclic_references_in_step, test/test_optim.py::TestLRScheduler::test_old_pattern_warning, test/test_optim.py::TestLRScheduler::test_old_pattern_warning_resuming, test/test_optim.py::TestLRScheduler::test_old_pattern_warning_resuming_with_arg, test/test_optim.py::TestLRScheduler::test_old_pattern_warning_with_arg, test/test_optim.py::TestLRScheduler::test_old_pattern_warning_with_overridden_optim_step, test/test_optim.py::TestLRScheduler::test_onecycle_lr_cannot_calculate_total_steps, test/test_optim.py::TestLRScheduler::test_onecycle_lr_cosine_annealing, test/test_optim.py::TestLRScheduler::test_onecycle_lr_invalid_anneal_strategy, test/test_optim.py::TestLRScheduler::test_onecycle_lr_invalid_pct_start, test/test_optim.py::TestLRScheduler::test_onecycle_lr_legacy_state_dict, test/test_optim.py::TestLRScheduler::test_onecycle_lr_linear_annealing, test/test_optim.py::TestLRScheduler::test_onecycle_lr_linear_annealing_three_phases, test/test_optim.py::TestLRScheduler::test_poly_lr, test/test_optim.py::TestLRScheduler::test_polynomial_lr_is_constant_for_constant_epoch, test/test_optim.py::TestLRScheduler::test_reduce_lr_on_plateau1, test/test_optim.py::TestLRScheduler::test_reduce_lr_on_plateau2, test/test_optim.py::TestLRScheduler::test_reduce_lr_on_plateau3, test/test_optim.py::TestLRScheduler::test_reduce_lr_on_plateau4, test/test_optim.py::TestLRScheduler::test_reduce_lr_on_plateau5, test/test_optim.py::TestLRScheduler::test_reduce_lr_on_plateau6, test/test_optim.py::TestLRScheduler::test_reduce_lr_on_plateau7, test/test_optim.py::TestLRScheduler::test_reduce_lr_on_plateau8, test/test_optim.py::TestLRScheduler::test_reduce_lr_on_plateau_get_last_lr_before_step, test/test_optim.py::TestLRScheduler::test_reduce_lr_on_plateau_state_dict, test/test_optim.py::TestLRScheduler::test_sequentiallr1, test/test_optim.py::TestLRScheduler::test_sequentiallr2, test/test_optim.py::TestLRScheduler::test_sequentiallr3, test/test_optim.py::TestLRScheduler::test_sequentiallr4, test/test_optim.py::TestLRScheduler::test_sequentiallr5, test/test_optim.py::TestLRScheduler::test_step_lr, test/test_optim.py::TestLRScheduler::test_step_lr_is_constant_for_constant_epoch, test/test_optim.py::TestLRScheduler::test_step_lr_state_dict, test/test_optim.py::TestLRScheduler::test_swa_lr_state_dict, test/test_optim.py::TestLRScheduler::test_swalr_cosine_anneal_after_multiplicative, test/test_optim.py::TestLRScheduler::test_swalr_hypers, test/test_optim.py::TestLRScheduler::test_swalr_linear_anneal_after_multiplicative, test/test_optim.py::TestLRScheduler::test_swalr_no_anneal, test/test_optim.py::TestDifferentiableOptimizer::test_adadelta, test/test_optim.py::TestDifferentiableOptimizer::test_adagrad, test/test_optim.py::TestDifferentiableOptimizer::test_adam, test/test_optim.py::TestDifferentiableOptimizer::test_adam_differentiable_all_hyperparams, test/test_optim.py::TestDifferentiableOptimizer::test_adam_differentiable_betas, test/test_optim.py::TestDifferentiableOptimizer::test_adam_differentiable_lr, test/test_optim.py::TestDifferentiableOptimizer::test_adam_differentiable_weight_decay, test/test_optim.py::TestDifferentiableOptimizer::test_adamax, test/test_optim.py::TestDifferentiableOptimizer::test_adamw, test/test_optim.py::TestDifferentiableOptimizer::test_adamw_differentiable_all_hyperparams, test/test_optim.py::TestDifferentiableOptimizer::test_adamw_differentiable_betas, test/test_optim.py::TestDifferentiableOptimizer::test_adamw_differentiable_lr, test/test_optim.py::TestDifferentiableOptimizer::test_adamw_differentiable_weight_decay, test/test_optim.py::TestDifferentiableOptimizer::test_asgd, test/test_optim.py::TestDifferentiableOptimizer::test_differentiable_lr, test/test_optim.py::TestDifferentiableOptimizer::test_differentiable_weight_decay, test/test_optim.py::TestDifferentiableOptimizer::test_differentiable_weight_decay_and_lr, test/test_optim.py::TestDifferentiableOptimizer::test_nadam, test/test_optim.py::TestDifferentiableOptimizer::test_radam, test/test_optim.py::TestDifferentiableOptimizer::test_rmsprop, test/test_optim.py::TestDifferentiableOptimizer::test_rprop, test/test_optim.py::TestDifferentiableOptimizer::test_sgd, test/test_optim.py::TestSWAUtils::test_averaged_model_all_devices_ema_False, test/test_optim.py::TestSWAUtils::test_averaged_model_all_devices_ema_True, test/test_optim.py::TestSWAUtils::test_averaged_model_default_avg_fn_picklable, test/test_optim.py::TestSWAUtils::test_averaged_model_exponential_use_multi_avg_fn_False_use_buffers_False, test/test_optim.py::TestSWAUtils::test_averaged_model_exponential_use_multi_avg_fn_False_use_buffers_True, test/test_optim.py::TestSWAUtils::test_averaged_model_exponential_use_multi_avg_fn_True_use_buffers_False, test/test_optim.py::TestSWAUtils::test_averaged_model_exponential_use_multi_avg_fn_True_use_buffers_True, test/test_optim.py::TestSWAUtils::test_averaged_model_mixed_device_ema_False, test/test_optim.py::TestSWAUtils::test_averaged_model_mixed_device_ema_True, test/test_optim.py::TestSWAUtils::test_averaged_model_state_dict, test/test_optim.py::TestSWAUtils::test_bn_update_eval_momentum, test/test_optim.py::TestSWAUtils::test_update_bn_cnn, test/test_optim.py::TestSWAUtils::test_update_bn_dnn, test/test_optim.py::TestOptimRenewedCPU::test_adamw_serialization_cpu, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_False_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_False_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_False_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_False_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_False_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_False_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_False_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_False_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_False_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_False_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_False_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_False_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_False_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_True_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_True_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_True_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_True_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_True_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_True_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_True_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_True_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_True_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_True_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_True_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_True_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_False_is_named_optim1_True_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_False_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_False_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_False_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_False_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_False_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_False_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_False_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_False_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_False_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_False_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_False_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_False_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_False_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_True_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_True_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_True_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_True_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_True_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_True_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_True_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_True_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_True_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_True_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_True_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_True_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_from_to_named_state_dict_is_named_optim0_True_is_named_optim1_True_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_older_state_dict_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_older_state_dict_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_older_state_dict_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_older_state_dict_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_older_state_dict_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_older_state_dict_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_older_state_dict_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_older_state_dict_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_older_state_dict_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_older_state_dict_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_older_state_dict_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_older_state_dict_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_older_state_dict_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_can_load_older_state_dict_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_complex_2d_ASGD_cpu_complex64, test/test_optim.py::TestOptimRenewedCPU::test_complex_2d_Adadelta_cpu_complex64, test/test_optim.py::TestOptimRenewedCPU::test_complex_2d_Adagrad_cpu_complex64, test/test_optim.py::TestOptimRenewedCPU::test_complex_2d_AdamW_cpu_complex64, test/test_optim.py::TestOptimRenewedCPU::test_complex_2d_Adam_cpu_complex64, test/test_optim.py::TestOptimRenewedCPU::test_complex_2d_Adamax_cpu_complex64, test/test_optim.py::TestOptimRenewedCPU::test_complex_2d_LBFGS_cpu_complex64, test/test_optim.py::TestOptimRenewedCPU::test_complex_2d_NAdam_cpu_complex64, test/test_optim.py::TestOptimRenewedCPU::test_complex_2d_RAdam_cpu_complex64, test/test_optim.py::TestOptimRenewedCPU::test_complex_2d_RMSprop_cpu_complex64, test/test_optim.py::TestOptimRenewedCPU::test_complex_2d_Rprop_cpu_complex64, test/test_optim.py::TestOptimRenewedCPU::test_complex_2d_SGD_cpu_complex64, test/test_optim.py::TestOptimRenewedCPU::test_complex_ASGD_cpu_complex64, test/test_optim.py::TestOptimRenewedCPU::test_complex_Adadelta_cpu_complex64, test/test_optim.py::TestOptimRenewedCPU::test_complex_Adagrad_cpu_complex64, test/test_optim.py::TestOptimRenewedCPU::test_complex_AdamW_cpu_complex64, test/test_optim.py::TestOptimRenewedCPU::test_complex_Adam_cpu_complex64, test/test_optim.py::TestOptimRenewedCPU::test_complex_Adamax_cpu_complex64, test/test_optim.py::TestOptimRenewedCPU::test_complex_LBFGS_cpu_complex64, test/test_optim.py::TestOptimRenewedCPU::test_complex_NAdam_cpu_complex64, test/test_optim.py::TestOptimRenewedCPU::test_complex_RAdam_cpu_complex64, test/test_optim.py::TestOptimRenewedCPU::test_complex_RMSprop_cpu_complex64, test/test_optim.py::TestOptimRenewedCPU::test_complex_Rprop_cpu_complex64, test/test_optim.py::TestOptimRenewedCPU::test_complex_SGD_cpu_complex64, test/test_optim.py::TestOptimRenewedCPU::test_cpu_load_state_dict_impl_capturable_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_cpu_load_state_dict_impl_capturable_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_cpu_load_state_dict_impl_capturable_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_cpu_load_state_dict_impl_capturable_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_cpu_load_state_dict_impl_fused_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_cpu_load_state_dict_impl_fused_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_cpu_load_state_dict_impl_fused_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_cpu_load_state_dict_impl_fused_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_deepcopy_copies_all_public_attrs_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_deepcopy_copies_all_public_attrs_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_deepcopy_copies_all_public_attrs_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_deepcopy_copies_all_public_attrs_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_deepcopy_copies_all_public_attrs_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_deepcopy_copies_all_public_attrs_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_deepcopy_copies_all_public_attrs_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_deepcopy_copies_all_public_attrs_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_deepcopy_copies_all_public_attrs_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_deepcopy_copies_all_public_attrs_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_deepcopy_copies_all_public_attrs_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_deepcopy_copies_all_public_attrs_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_deepcopy_copies_all_public_attrs_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_deepcopy_copies_all_public_attrs_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_defaults_changed_to_foreach_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_defaults_changed_to_foreach_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_defaults_changed_to_foreach_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_defaults_changed_to_foreach_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_defaults_changed_to_foreach_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_defaults_changed_to_foreach_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_defaults_changed_to_foreach_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_defaults_changed_to_foreach_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_defaults_changed_to_foreach_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_defaults_changed_to_foreach_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_defaults_changed_to_foreach_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_errors_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_errors_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_errors_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_errors_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_errors_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_errors_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_errors_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_errors_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_errors_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_errors_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_errors_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_errors_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_errors_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_errors_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_foreach_large_tensor_ASGD_cpu_float16, test/test_optim.py::TestOptimRenewedCPU::test_foreach_large_tensor_Adadelta_cpu_float16, test/test_optim.py::TestOptimRenewedCPU::test_foreach_large_tensor_Adafactor_cpu_float16, test/test_optim.py::TestOptimRenewedCPU::test_foreach_large_tensor_Adagrad_cpu_float16, test/test_optim.py::TestOptimRenewedCPU::test_foreach_large_tensor_AdamW_cpu_float16, test/test_optim.py::TestOptimRenewedCPU::test_foreach_large_tensor_Adam_cpu_float16, test/test_optim.py::TestOptimRenewedCPU::test_foreach_large_tensor_Adamax_cpu_float16, test/test_optim.py::TestOptimRenewedCPU::test_foreach_large_tensor_NAdam_cpu_float16, test/test_optim.py::TestOptimRenewedCPU::test_foreach_large_tensor_RAdam_cpu_float16, test/test_optim.py::TestOptimRenewedCPU::test_foreach_large_tensor_RMSprop_cpu_float16, test/test_optim.py::TestOptimRenewedCPU::test_foreach_large_tensor_Rprop_cpu_float16, test/test_optim.py::TestOptimRenewedCPU::test_foreach_large_tensor_SGD_cpu_float16, test/test_optim.py::TestOptimRenewedCPU::test_foreach_matches_forloop_ASGD_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_foreach_matches_forloop_Adadelta_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_foreach_matches_forloop_Adafactor_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_foreach_matches_forloop_Adagrad_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_foreach_matches_forloop_AdamW_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_foreach_matches_forloop_Adam_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_foreach_matches_forloop_Adamax_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_foreach_matches_forloop_NAdam_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_foreach_matches_forloop_RAdam_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_foreach_matches_forloop_RMSprop_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_foreach_matches_forloop_Rprop_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_foreach_matches_forloop_SGD_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_False_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_False_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_False_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_False_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_False_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_False_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_False_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_False_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_False_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_False_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_False_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_False_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_False_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_False_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_True_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_True_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_True_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_True_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_True_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_True_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_True_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_True_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_True_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_True_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_True_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_True_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_True_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_False_with_lrsched_True_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_False_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_False_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_False_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_False_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_False_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_False_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_False_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_False_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_False_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_False_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_False_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_False_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_False_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_False_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_True_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_True_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_True_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_True_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_True_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_True_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_True_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_True_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_True_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_True_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_True_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_True_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_True_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_contiguous_True_with_lrsched_True_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_False_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_False_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_False_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_False_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_False_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_False_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_False_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_False_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_False_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_False_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_False_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_False_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_False_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_False_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_True_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_True_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_True_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_True_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_True_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_True_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_True_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_True_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_True_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_True_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_True_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_True_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_True_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_forloop_goes_right_direction_multigpu_with_lrsched_True_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_fused_cpu_matches_cuda_AdamW_cpu_bfloat16, test/test_optim.py::TestOptimRenewedCPU::test_fused_cpu_matches_cuda_AdamW_cpu_float16, test/test_optim.py::TestOptimRenewedCPU::test_fused_cpu_matches_cuda_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_fused_cpu_matches_cuda_AdamW_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_fused_cpu_matches_cuda_Adam_cpu_bfloat16, test/test_optim.py::TestOptimRenewedCPU::test_fused_cpu_matches_cuda_Adam_cpu_float16, test/test_optim.py::TestOptimRenewedCPU::test_fused_cpu_matches_cuda_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_fused_cpu_matches_cuda_Adam_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_fused_cpu_matches_cuda_SGD_cpu_bfloat16, test/test_optim.py::TestOptimRenewedCPU::test_fused_cpu_matches_cuda_SGD_cpu_float16, test/test_optim.py::TestOptimRenewedCPU::test_fused_cpu_matches_cuda_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_fused_cpu_matches_cuda_SGD_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_fused_does_not_step_if_foundinf_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_fused_does_not_step_if_foundinf_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_fused_does_not_step_if_foundinf_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_fused_does_not_step_if_foundinf_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_fused_error_on_params_on_meta_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_fused_error_on_params_on_meta_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_fused_error_on_params_on_meta_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_fused_error_on_params_on_meta_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_fused_large_tensor_Adagrad_cpu_float16, test/test_optim.py::TestOptimRenewedCPU::test_fused_large_tensor_AdamW_cpu_float16, test/test_optim.py::TestOptimRenewedCPU::test_fused_large_tensor_Adam_cpu_float16, test/test_optim.py::TestOptimRenewedCPU::test_fused_large_tensor_SGD_cpu_float16, test/test_optim.py::TestOptimRenewedCPU::test_fused_matches_forloop_Adagrad_cpu_bfloat16, test/test_optim.py::TestOptimRenewedCPU::test_fused_matches_forloop_Adagrad_cpu_float16, test/test_optim.py::TestOptimRenewedCPU::test_fused_matches_forloop_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_fused_matches_forloop_Adagrad_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_fused_matches_forloop_AdamW_cpu_bfloat16, test/test_optim.py::TestOptimRenewedCPU::test_fused_matches_forloop_AdamW_cpu_float16, test/test_optim.py::TestOptimRenewedCPU::test_fused_matches_forloop_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_fused_matches_forloop_AdamW_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_fused_matches_forloop_Adam_cpu_bfloat16, test/test_optim.py::TestOptimRenewedCPU::test_fused_matches_forloop_Adam_cpu_float16, test/test_optim.py::TestOptimRenewedCPU::test_fused_matches_forloop_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_fused_matches_forloop_Adam_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_fused_matches_forloop_SGD_cpu_bfloat16, test/test_optim.py::TestOptimRenewedCPU::test_fused_matches_forloop_SGD_cpu_float16, test/test_optim.py::TestOptimRenewedCPU::test_fused_matches_forloop_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_fused_matches_forloop_SGD_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_grads_are_never_inplaced_into_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_grads_are_never_inplaced_into_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_grads_are_never_inplaced_into_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_grads_are_never_inplaced_into_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_grads_are_never_inplaced_into_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_grads_are_never_inplaced_into_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_grads_are_never_inplaced_into_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_grads_are_never_inplaced_into_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_grads_are_never_inplaced_into_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_grads_are_never_inplaced_into_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_grads_are_never_inplaced_into_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_grads_are_never_inplaced_into_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_grads_are_never_inplaced_into_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_grads_are_never_inplaced_into_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_nontensor_step_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_nontensor_step_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_nontensor_step_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_nontensor_step_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_nontensor_step_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_nontensor_step_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_nontensor_step_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_nontensor_step_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_nontensor_step_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_nontensor_step_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_nontensor_step_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_nontensor_step_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_nontensor_step_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_nontensor_step_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_post_hook_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_post_hook_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_post_hook_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_post_hook_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_post_hook_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_post_hook_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_post_hook_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_post_hook_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_post_hook_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_post_hook_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_post_hook_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_post_hook_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_post_hook_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_post_hook_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_hook_and_prepend_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_hook_and_prepend_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_hook_and_prepend_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_hook_and_prepend_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_hook_and_prepend_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_hook_and_prepend_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_hook_and_prepend_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_hook_and_prepend_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_hook_and_prepend_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_hook_and_prepend_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_hook_and_prepend_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_hook_and_prepend_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_hook_and_prepend_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_hook_and_prepend_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_post_hook_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_post_hook_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_post_hook_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_post_hook_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_post_hook_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_post_hook_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_post_hook_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_post_hook_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_post_hook_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_post_hook_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_post_hook_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_post_hook_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_post_hook_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_load_state_dict_pre_post_hook_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_mixed_device_dtype_impl_foreach_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_mixed_device_dtype_impl_foreach_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_mixed_device_dtype_impl_foreach_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_mixed_device_dtype_impl_foreach_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_mixed_device_dtype_impl_foreach_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_mixed_device_dtype_impl_foreach_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_mixed_device_dtype_impl_foreach_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_mixed_device_dtype_impl_foreach_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_mixed_device_dtype_impl_foreach_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_mixed_device_dtype_impl_foreach_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_mixed_device_dtype_impl_foreach_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_mixed_device_dtype_impl_foreach_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_mixed_device_dtype_impl_fused_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_mixed_device_dtype_impl_fused_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_mixed_device_dtype_impl_fused_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_mixed_device_dtype_impl_fused_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_mixed_device_dtype_impl_fused_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_mixed_device_dtype_impl_fused_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_mixed_device_dtype_impl_fused_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_mixed_device_dtype_impl_fused_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_mixed_device_dtype_impl_fused_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_mixed_device_dtype_impl_fused_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_mixed_device_dtype_impl_fused_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_mixed_device_dtype_impl_fused_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_non_empty_state_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_non_empty_state_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_non_empty_state_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_non_empty_state_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_non_empty_state_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_non_empty_state_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_non_empty_state_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_non_empty_state_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_non_empty_state_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_non_empty_state_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_non_empty_state_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_non_empty_state_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_non_empty_state_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_non_empty_state_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optim_infos_do_not_specify_global_cliquey_kwargs_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optim_infos_do_not_specify_global_cliquey_kwargs_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optim_infos_do_not_specify_global_cliquey_kwargs_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optim_infos_do_not_specify_global_cliquey_kwargs_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optim_infos_do_not_specify_global_cliquey_kwargs_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optim_infos_do_not_specify_global_cliquey_kwargs_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optim_infos_do_not_specify_global_cliquey_kwargs_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optim_infos_do_not_specify_global_cliquey_kwargs_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optim_infos_do_not_specify_global_cliquey_kwargs_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optim_infos_do_not_specify_global_cliquey_kwargs_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optim_infos_do_not_specify_global_cliquey_kwargs_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optim_infos_do_not_specify_global_cliquey_kwargs_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optim_infos_do_not_specify_global_cliquey_kwargs_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optim_infos_do_not_specify_global_cliquey_kwargs_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optimizer_can_be_printed_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optimizer_can_be_printed_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optimizer_can_be_printed_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optimizer_can_be_printed_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optimizer_can_be_printed_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optimizer_can_be_printed_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optimizer_can_be_printed_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optimizer_can_be_printed_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optimizer_can_be_printed_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optimizer_can_be_printed_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optimizer_can_be_printed_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optimizer_can_be_printed_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optimizer_can_be_printed_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_optimizer_can_be_printed_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_group_with_lrscheduler_goes_right_direction_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_group_with_lrscheduler_goes_right_direction_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_group_with_lrscheduler_goes_right_direction_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_group_with_lrscheduler_goes_right_direction_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_group_with_lrscheduler_goes_right_direction_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_group_with_lrscheduler_goes_right_direction_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_group_with_lrscheduler_goes_right_direction_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_group_with_lrscheduler_goes_right_direction_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_group_with_lrscheduler_goes_right_direction_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_group_with_lrscheduler_goes_right_direction_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_group_with_lrscheduler_goes_right_direction_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_group_with_lrscheduler_goes_right_direction_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_group_with_lrscheduler_goes_right_direction_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_group_with_lrscheduler_goes_right_direction_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_lr_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_lr_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_lr_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_lr_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_lr_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_lr_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_lr_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_lr_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_lr_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_lr_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_lr_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_lr_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_lr_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_lr_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_weight_decay_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_weight_decay_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_weight_decay_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_weight_decay_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_weight_decay_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_weight_decay_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_weight_decay_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_weight_decay_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_weight_decay_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_weight_decay_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_weight_decay_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_weight_decay_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_weight_decay_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_param_groups_weight_decay_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_peak_memory_foreach_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_peak_memory_foreach_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_peak_memory_foreach_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_peak_memory_foreach_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_peak_memory_foreach_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_peak_memory_foreach_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_peak_memory_foreach_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_peak_memory_foreach_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_peak_memory_foreach_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_peak_memory_foreach_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_peak_memory_foreach_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_peak_memory_foreach_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_rosenbrock_sparse_with_lrsched_False_Adagrad_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_rosenbrock_sparse_with_lrsched_False_SGD_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_rosenbrock_sparse_with_lrsched_False_SparseAdam_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_rosenbrock_sparse_with_lrsched_True_Adagrad_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_rosenbrock_sparse_with_lrsched_True_SGD_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_rosenbrock_sparse_with_lrsched_True_SparseAdam_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_False_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_False_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_False_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_False_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_False_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_False_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_False_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_False_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_False_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_False_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_False_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_False_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_False_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_False_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_True_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_True_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_True_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_True_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_True_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_True_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_True_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_True_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_True_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_True_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_True_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_True_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_True_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_save_load_equality_with_weights_only_is_named_optim_True_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_second_order_optims_return_consistent_types_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_set_default_dtype_works_with_foreach_ASGD_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_set_default_dtype_works_with_foreach_Adadelta_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_set_default_dtype_works_with_foreach_Adafactor_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_set_default_dtype_works_with_foreach_Adagrad_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_set_default_dtype_works_with_foreach_AdamW_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_set_default_dtype_works_with_foreach_Adam_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_set_default_dtype_works_with_foreach_Adamax_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_set_default_dtype_works_with_foreach_NAdam_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_set_default_dtype_works_with_foreach_RAdam_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_set_default_dtype_works_with_foreach_RMSprop_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_set_default_dtype_works_with_foreach_Rprop_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_set_default_dtype_works_with_foreach_SGD_cpu_float64, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_False_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_False_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_False_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_False_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_False_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_False_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_False_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_False_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_False_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_False_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_False_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_False_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_False_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_False_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_True_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_True_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_True_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_True_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_True_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_True_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_True_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_True_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_True_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_True_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_True_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_True_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_True_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_False_is_named_optim1_True_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_False_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_False_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_False_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_False_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_False_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_False_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_False_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_False_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_False_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_False_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_False_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_False_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_False_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_False_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_True_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_True_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_True_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_True_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_True_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_True_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_True_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_True_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_True_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_True_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_True_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_True_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_True_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_deterministic_is_named_optim0_True_is_named_optim1_True_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_post_hook_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_post_hook_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_post_hook_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_post_hook_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_post_hook_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_post_hook_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_post_hook_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_post_hook_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_post_hook_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_post_hook_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_post_hook_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_post_hook_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_post_hook_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_post_hook_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_hook_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_hook_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_hook_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_hook_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_hook_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_hook_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_hook_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_hook_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_hook_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_hook_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_hook_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_hook_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_hook_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_hook_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_post_hook_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_post_hook_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_post_hook_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_post_hook_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_post_hook_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_post_hook_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_post_hook_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_post_hook_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_post_hook_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_post_hook_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_post_hook_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_post_hook_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_post_hook_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_pre_post_hook_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_with_cuda_params_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_with_cuda_params_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_with_cuda_params_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_with_cuda_params_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_with_cuda_params_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_with_cuda_params_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_with_cuda_params_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_with_cuda_params_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_with_cuda_params_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_with_cuda_params_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_with_cuda_params_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_with_cuda_params_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_with_cuda_params_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_state_dict_with_cuda_params_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_all_hooks_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_all_hooks_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_all_hooks_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_all_hooks_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_all_hooks_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_all_hooks_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_all_hooks_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_all_hooks_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_all_hooks_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_all_hooks_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_all_hooks_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_all_hooks_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_all_hooks_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_all_hooks_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_for_zero_grads_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_for_zero_grads_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_for_zero_grads_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_for_zero_grads_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_for_zero_grads_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_for_zero_grads_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_for_zero_grads_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_for_zero_grads_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_for_zero_grads_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_for_zero_grads_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_for_zero_grads_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_for_zero_grads_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_for_zero_grads_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_for_zero_grads_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_when_params_have_no_grad_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_when_params_have_no_grad_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_when_params_have_no_grad_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_when_params_have_no_grad_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_when_params_have_no_grad_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_when_params_have_no_grad_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_when_params_have_no_grad_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_when_params_have_no_grad_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_when_params_have_no_grad_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_when_params_have_no_grad_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_when_params_have_no_grad_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_when_params_have_no_grad_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_when_params_have_no_grad_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_is_noop_when_params_have_no_grad_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_post_hook_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_post_hook_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_post_hook_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_post_hook_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_post_hook_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_post_hook_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_post_hook_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_post_hook_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_post_hook_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_post_hook_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_post_hook_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_post_hook_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_post_hook_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_post_hook_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_pre_hook_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_pre_hook_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_pre_hook_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_pre_hook_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_pre_hook_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_pre_hook_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_pre_hook_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_pre_hook_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_pre_hook_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_pre_hook_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_pre_hook_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_pre_hook_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_pre_hook_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_step_pre_hook_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_0_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_0_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_0_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_0_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_0_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_0_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_0_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_0_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_0_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_0_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_0_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_0_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_0_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_0_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_1_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_1_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_1_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_1_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_1_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_1_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_1_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_1_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_1_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_1_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_1_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_1_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_1_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_1_SparseAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_2_ASGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_2_Adadelta_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_2_Adafactor_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_2_Adagrad_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_2_AdamW_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_2_Adam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_2_Adamax_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_2_LBFGS_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_2_NAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_2_RAdam_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_2_RMSprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_2_Rprop_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_2_SGD_cpu_float32, test/test_optim.py::TestOptimRenewedCPU::test_tensor_lr_num_dim_2_SparseAdam_cpu_float32 2025-08-14T22:48:08.0767397Z 2025-08-14T22:48:14.4304699Z Running test_decomp 1/17 ... [2025-08-14 22:48:14.419110] 2025-08-14T22:48:14.4305218Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:48:14.4311823Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=1', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:48:14.419110] 2025-08-14T22:52:55.1169435Z 2025-08-14T22:52:55.1170423Z test_meta 2/5 was successful, full logs can be found in artifacts with path test/test-reports/test_meta_2.5_341ea10a4324bf74_.log 2025-08-14T22:52:55.4268073Z Running 8409 items in this shard: test/test_meta.py::TestMetaConverter::test_imag, test/test_meta.py::TestMetaConverter::test_inplace_set_storage, test/test_meta.py::TestMetaConverter::test_non_leaf, test/test_meta.py::TestMetaConverter::test_view_mutate, test/test_meta.py::TestMetaConverter::test_weakref, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs__conversions_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs__conversions_polar_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_atan2_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_copysign_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_div_floor_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_eq_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_fmod_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_isclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_le_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_logical_and_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_nextafter_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_fmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_heaviside_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_igamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_jiterator_binary_return_by_ref_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_le_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_lt_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_max_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_laguerre_polynomial_l_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_true_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_xlogy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_H_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_H_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_T_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_T_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_T_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___getitem___cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___getitem___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___getitem___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___getitem___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___getitem___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___radd___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___radd___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rand___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rdiv___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rdiv___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rdiv___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmatmul___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmatmul___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmatmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmod___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rpow___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rpow___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_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rxor___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__batch_norm_with_update_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcdiv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_asin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_div_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_div_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erfc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_exp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_expm1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_expm1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_floor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_floor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_frac_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_frac_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_frac_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lerp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lerp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log10_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_maximum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_maximum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_minimum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_minimum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_neg_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_norm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_reciprocal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_rsqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_rsqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_rsqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sigmoid_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sigmoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sigmoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sigmoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sign_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_trunc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_zero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_zero_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__native_batch_norm_legit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__native_batch_norm_legit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__segment_reduce_offsets_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__segment_reduce_offsets_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_put_accumulate_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_put_accumulate_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_put_accumulate_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__upsample_bilinear2d_aa_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_abs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_abs_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addbmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addbmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addbmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcdiv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcdiv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_decomposed_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_decomposed_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_decomposed_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_all_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_all_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_all_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_aminmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_aminmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_angle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_angle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_angle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_angle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_any_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_any_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_arange_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argsort_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argsort_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argwhere_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_partial_views_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_3d_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_baddbmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_baddbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_baddbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bernoulli_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bfloat16_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bfloat16_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bfloat16_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bincount_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_and_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_and_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_and_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_left_shift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_not_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_not_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_or_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_or_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_or_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_right_shift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_to_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_to_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bucketize_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_byte_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_byte_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cartesian_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cartesian_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cartesian_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cauchy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdist_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdouble_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdouble_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdouble_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdouble_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ceil_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ceil_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ceil_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ceil_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cfloat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cholesky_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cholesky_inverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cholesky_inverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cholesky_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_min_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_min_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_column_stack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_column_stack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_column_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_column_stack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_combinations_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_physical_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_constant_pad_nd_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_contiguous_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_contiguous_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_contiguous_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_contiguous_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_copysign_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_copysign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_copysign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_corrcoef_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_corrcoef_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_corrcoef_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_corrcoef_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cov_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cov_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cov_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cross_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cross_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumprod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumulative_trapezoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumulative_trapezoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumulative_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_deg2rad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_deg2rad_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_embed_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_embed_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_embed_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_embed_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagflat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagflat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_digamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_floor_rounding_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_floor_rounding_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_no_rounding_mode_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_no_rounding_mode_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_trunc_rounding_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_trunc_rounding_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_double_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_double_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_double_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_double_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_double_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_double_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_permuted_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_permuted_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_equal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_equal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfinv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfinv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expm1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exponential_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftshift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftshift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftshift_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fliplr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fliplr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fliplr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flipud_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flipud_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flipud_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flipud_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_power_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_power_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_divide_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_divide_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_divide_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_frexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gcd_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gcd_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gcd_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ge_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ge_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ge_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ge_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geometric_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geometric_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geqrf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gradient_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gradient_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_half_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_half_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hash_tensor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_heaviside_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_heaviside_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_histogramdd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hypot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_i0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_i0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_i0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_i0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_igamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_igammac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_imag_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_mean_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_mean_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_mean_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_inner_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_inner_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_inner_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_inner_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_inner_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_int_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isinf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isneginf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isneginf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isneginf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isposinf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isposinf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isposinf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_istft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_2inputs_2outputs_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_2inputs_2outputs_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_2inputs_2outputs_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_4inputs_with_extra_args_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_4inputs_with_extra_args_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_unary_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_unary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_unary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_unary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kron_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kron_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kron_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kron_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kron_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kron_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kthvalue_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kthvalue_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lcm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lcm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lcm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ldexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_le_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_le_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lgamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lgamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cond_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cond_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cross_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eig_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eig_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigvals_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_inv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_ldl_factor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_ldl_factor_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_ldl_factor_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_factor_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_rank_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_rank_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_rank_hermitian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_multi_dot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_multi_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_multi_dot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_pinv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_pinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_pinv_singular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_pinv_singular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_slogdet_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_slogdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_solve_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_solve_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_solve_triangular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_solve_triangular_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_svdvals_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_tensorsolve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vander_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vander_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vander_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vecdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_tensor_overload_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_tensor_overload_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log10_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log1p_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log1p_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log1p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logaddexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logdet_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_not_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_xor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_xor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_tensor_overload_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logsumexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_long_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_long_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lu_unpack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mH_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumprod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_log_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logaddexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_normalize_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_var_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_var_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_no_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_no_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_with_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_with_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_maximum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_maximum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_median_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_list_of_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_list_of_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_list_of_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_list_of_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_no_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_with_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_minimum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_minimum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_minimum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_msort_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_msort_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nan_to_num_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nan_to_num_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nan_to_num_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nan_to_num_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmedian_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanmedian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nanquantile_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nansum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nansum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nansum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nansum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_batch_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_dropout_backward_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_dropout_backward_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_layer_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ne_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ne_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ne_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ne_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_zeros_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nextafter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_avg_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_max_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_alpha_dropout_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_alpha_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_bilinear_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_binary_cross_entropy_with_logits_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_channel_shuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_channel_shuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_embedding_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_embedding_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cross_entropy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_ctc_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_dropout_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_embedding_bag_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_embedding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_embedding_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_gelu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_gelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_glu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_grid_sample_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hinge_embedding_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hinge_embedding_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_huber_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_linear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_nearest_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_trilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_kl_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_kl_div_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_layer_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_linear_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_local_response_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_local_response_norm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_margin_ranking_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_margin_ranking_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_margin_ranking_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool2d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool3d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool3d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool3d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_multi_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_multi_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_multilabel_soft_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_normalize_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_circular_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_circular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_circular_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_circular_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_circular_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_circular_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_circular_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_circular_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_constant_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_constant_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_constant_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_reflect_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_reflect_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_reflect_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_reflect_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_reflect_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_reflect_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pairwise_distance_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pairwise_distance_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pairwise_distance_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pdist_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_shuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_shuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_unshuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_poisson_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_poisson_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_poisson_nll_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_prelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_prelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu6_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu6_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_rms_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_selu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_selu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_silu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softplus_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softplus_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softsign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softsign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softsign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softsign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_tanhshrink_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_unfold_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_upsample_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_upsample_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_static_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_static_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_inf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_inf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_nuc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_nuc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_normal_in_place_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_normal_number_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ormqr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ormqr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_outer_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pca_lowrank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pca_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pinverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_3_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_3_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_3_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_4_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_4_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_positive_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_positive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pow_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pow_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randn_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randn_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ravel_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_real_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_real_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reciprocal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reciprocal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reciprocal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_renorm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_interleave_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_interleave_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize__cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize_as__cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize_as__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_neg_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_roll_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_roll_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_roll_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_decimals_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_decimals_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_decimals_neg_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_decimals_neg_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_decimals_neg_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scalar_tensor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scalar_tensor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scalar_tensor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scalar_tensor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scalar_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_mean_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_short_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_short_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_short_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sigmoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_blackman_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_general_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_kaiser_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signbit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signbit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signbit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sort_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_airy_ai_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_u_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_v_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_entr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_erfcx_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_erfcx_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_h_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_he_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i0e_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i0e_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_laguerre_polynomial_l_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_legendre_polynomial_p_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_log_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_log_ndtr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_log_ndtr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_i1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_spherical_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_xlog1py_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_xlog1py_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_xlog1py_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_zeta_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_list_args_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_list_args_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_list_args_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_list_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_list_args_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_square_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_square_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_square_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_square_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_multiple_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_multiple_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_to_size_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_to_size_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_to_size_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_svd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensor_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensordot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensordot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensordot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensordot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tile_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tile_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tile_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_topk_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch__scaled_mm_cpu_float8_e5m2, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trace_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapezoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapezoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapezoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapz_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_true_divide_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_true_divide_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trunc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trunc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_uniform_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_consecutive_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_consecutive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unravel_index_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unravel_index_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_chunk_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_chunk_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_chunk_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vdot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vdot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vdot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_xlogy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_xlogy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___radd___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___radd___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rdiv___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmatmul___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmatmul___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmatmul___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmod___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___ror___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___ror___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rpow___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rpow___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rsub___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rsub___cpu_float32, 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__chunk_cat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_asin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_asin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_atan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_ceil_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_ceil_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_ceil_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_ceil_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_min_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_min_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_min_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_div_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erfc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erfc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_exp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_expm1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_expm1_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_expm1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_floor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lerp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lgamma_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lgamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lgamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log1p_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log1p_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_maximum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_minimum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_mul_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_mul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_pow_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_reciprocal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_reciprocal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_reciprocal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_reciprocal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_round_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_rsqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sigmoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_trunc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_zero_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_zero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_zero_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__native_batch_norm_legit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__native_batch_norm_legit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__native_batch_norm_legit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__softmax_backward_data_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__softmax_backward_data_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_put_accumulate_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__upsample_bilinear2d_aa_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__upsample_bilinear2d_aa_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_abs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addbmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addbmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcdiv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_decomposed_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_decomposed_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_decomposed_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_alias_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_alias_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_alias_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_alias_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_alias_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_allclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_allclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_allclose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_aminmax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_aminmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_angle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_angle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_angle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_angle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_any_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_any_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_any_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_any_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_arange_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argsort_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argsort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argsort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argsort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_partial_views_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_partial_views_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_partial_views_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_partial_views_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_1d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_2d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_baddbmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bfloat16_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bfloat16_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bfloat16_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bfloat16_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bfloat16_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bfloat16_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bincount_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bincount_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_and_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_and_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_left_shift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_not_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_not_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_right_shift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_right_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_right_shift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_to_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_to_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_to_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_to_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bucketize_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_byte_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_byte_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_byte_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_byte_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cartesian_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cartesian_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdouble_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdouble_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdouble_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdouble_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ceil_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cfloat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chalf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_char_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_char_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cholesky_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cholesky_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clone_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clone_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clone_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clone_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clone_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_physical_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_physical_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_constant_pad_nd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_constant_pad_nd_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_constant_pad_nd_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_copysign_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_copysign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_copysign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_copysign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_copysign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_corrcoef_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_corrcoef_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_corrcoef_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_corrcoef_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_count_nonzero_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cov_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cross_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cross_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cross_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumprod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumulative_trapezoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumulative_trapezoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumulative_trapezoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumulative_trapezoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_deg2rad_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_embed_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_embed_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_embed_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_embed_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagflat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagflat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diff_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_digamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dist_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_floor_rounding_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_floor_rounding_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_floor_rounding_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_no_rounding_mode_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_trunc_rounding_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_einsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eq_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_equal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfinv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfinv_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expm1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expm1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exponential_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exponential_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_float8_e5m2fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftshift_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftshift_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftshift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flip_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flip_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flip_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flip_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flip_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fliplr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fliplr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fliplr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_power_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_power_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_divide_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_frexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gather_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gather_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gcd_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gcd_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ge_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ge_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ge_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ge_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geometric_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geometric_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geometric_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geqrf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geqrf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gradient_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gradient_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_grid_sampler_2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_half_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_half_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hash_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hash_tensor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hash_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_heaviside_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_heaviside_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_histc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_i0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_igamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_igammac_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_imag_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_imag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_mean_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_inner_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_int_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_int_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_int_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_int_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_int_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isclose_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isfinite_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isfinite_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isfinite_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isfinite_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isnan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isnan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isnan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isnan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isnan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isneginf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isneginf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isposinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isposinf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isposinf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_item_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_item_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_2inputs_2outputs_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_4inputs_with_extra_args_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_4inputs_with_extra_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_4inputs_with_extra_args_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_return_by_ref_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_return_by_ref_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_return_by_ref_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kthvalue_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kthvalue_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lcm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_le_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_le_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_le_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lgamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lgamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lgamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cholesky_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cholesky_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cross_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cross_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cross_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cross_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_diagonal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_diagonal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_diagonal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_diagonal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eigh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eigvals_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eigvalsh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eigvalsh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_inv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_inv_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_ldl_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lstsq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lstsq_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_power_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_power_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_rank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_rank_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_multi_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_multi_dot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_multi_dot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_subgradients_at_zero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_pinv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_pinv_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_solve_triangular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_svd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_tensorsolve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vander_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vander_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vander_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vecdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vector_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_tensor_overload_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log10_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log10_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_with_dtype_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logaddexp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logaddexp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logaddexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logcumsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logdet_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_and_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_and_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_and_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_not_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_not_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_not_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_or_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_xor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_xor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_xor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_xor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_tensor_overload_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_tensor_overload_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logsumexp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_unpack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mH_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mT_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mT_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mT_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumprod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumprod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logaddexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logsumexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_normalize_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_var_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_var_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matrix_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_pool2d_with_indices_backward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_pool2d_with_indices_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_no_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_no_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_with_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_with_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_median_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_list_of_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_list_of_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_list_of_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_list_of_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_no_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_with_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_minimum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_minimum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mode_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_msort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_msort_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_msort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nan_to_num_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nan_to_num_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nan_to_num_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmedian_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmedian_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanquantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_dropout_backward_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_dropout_backward_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ne_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ne_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ne_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_full_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_full_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_full_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_full_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_ones_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_ones_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_ones_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_zeros_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_zeros_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_avg_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_channel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_channel_shuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_channel_shuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_embedding_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_embedding_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_dropout2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_dropout2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_dropout3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_dropout3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_elu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_elu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_embedding_bag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_fractional_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_gelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_grid_sample_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardswish_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardtanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_bicubic_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_nearest-exact_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_nearest-exact_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_trilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_kl_div_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_layer_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_linear_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_linear_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_local_response_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_local_response_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_logsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_margin_ranking_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_margin_ranking_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool2d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool1d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_mish_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_multi_head_attention_forward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_multilabel_soft_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_normalize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_one_hot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_circular_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_circular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_circular_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_circular_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_constant_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_constant_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_reflect_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_reflect_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_negative_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_negative_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_negative_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pairwise_distance_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pairwise_distance_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_shuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_unshuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_unshuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_unshuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_poisson_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_poisson_nll_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_poisson_nll_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_prelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu6_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu6_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_rms_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_rrelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_scaled_dot_product_attention_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_silu_complex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_soft_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_soft_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softsign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softsign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_tanhshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_tanhshrink_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_threshold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_threshold_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_unfold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_unfold_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_upsample_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_upsample_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_static_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_inf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_nuc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ormqr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_outer_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_outer_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_outer_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pca_lowrank_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_3_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_3_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_4_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_4_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_positive_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_positive_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_positive_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_positive_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_quantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rad2deg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rand_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rand_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ravel_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ravel_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ravel_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ravel_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_real_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_real_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_real_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_real_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_real_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_real_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reciprocal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reciprocal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_remainder_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_remainder_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_remainder_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_remainder_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize__cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize__cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize_as__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize_as__cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize_as__cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_conj_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_roll_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_roll_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_roll_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rot90_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_decimals_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_decimals_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsqrt_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_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scalar_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scalar_tensor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_mean_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_searchsorted_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_searchsorted_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sgn_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sgn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sgn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sgn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_short_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_short_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sigmoid_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sigmoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sign_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_gaussian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_general_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_hamming_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signbit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signbit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_with_dtype_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sort_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sparse_mm_reduce_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sparse_sampled_addmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sparse_sampled_addmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_airy_ai_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_airy_ai_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_y1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_v_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_w_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_entr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_entr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_entr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_entr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_erfcx_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_erfcx_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_hermite_polynomial_h_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_hermite_polynomial_h_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_hermite_polynomial_h_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_hermite_polynomial_he_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i0e_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i0e_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i0e_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1e_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_laguerre_polynomial_l_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_laguerre_polynomial_l_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_laguerre_polynomial_l_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_laguerre_polynomial_l_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_laguerre_polynomial_l_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_legendre_polynomial_p_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_log_ndtr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtri_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtri_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_spherical_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_spherical_bessel_j0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_spherical_bessel_j0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_xlog1py_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_xlog1py_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_zeta_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_zeta_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_list_args_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_list_args_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_square_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_square_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_square_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sub_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sub_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_svd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_svd_lowrank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_along_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_along_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_along_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensor_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensor_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensor_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensordot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensordot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_sparse_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_sparse_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_sparse_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_sparse_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_topk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_topk_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_topk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_topk_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_torch__scaled_mm_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_torch__scaled_mm_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trace_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trace_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trace_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapezoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapz_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapz_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapz_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_true_divide_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trunc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unflatten_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unflatten_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unflatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unflatten_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_uniform_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_consecutive_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_uint64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_mean_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_where_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_where_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_xlogy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_xlogy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_xlogy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_xlogy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zero__cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_T_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___getitem___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___getitem___cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___getitem___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___getitem___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___radd___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___radd___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___radd___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___radd___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___radd___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rand___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rdiv___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmatmul___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmatmul___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmatmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmod___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmod___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmul___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___ror___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___ror___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___ror___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rpow___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rpow___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rsub___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rsub___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rxor___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rxor___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rxor___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__batch_norm_with_update_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__chunk_cat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__chunk_cat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__chunk_cat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_abs_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_abs_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_abs_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_abs_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcdiv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcdiv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_asin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_atan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_min_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_div_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_div_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_div_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erfc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erfc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erfc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_expm1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_expm1_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_expm1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_floor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_floor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_frac_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_frac_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_frac_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_frac_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lgamma_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log10_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log10_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log1p_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log1p_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log1p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_maximum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_maximum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_minimum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_minimum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_minimum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_norm_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_norm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_pow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_pow_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_reciprocal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_reciprocal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_rsqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_rsqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_rsqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sigmoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sub_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sub_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_zero_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_zero_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__native_batch_norm_legit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__segment_reduce_lengths_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__segment_reduce_lengths_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__segment_reduce_offsets_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__softmax_backward_data_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_put_accumulate_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_put_accumulate_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_put_accumulate_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_abs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_abs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_abs_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcdiv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcdiv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_decomposed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_decomposed_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_T_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides___getitem___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides___rdiv___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides___rmod___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides___rxor___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_sinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__softmax_backward_data_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__unsafe_masked_index_put_accumulate_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_acosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_addmv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_all_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_aminmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_angle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_atan2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_bernoulli_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_bincount_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_bitwise_xor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cdouble_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cholesky_inverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_clamp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_clone_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_column_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_combinations_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_diagonal_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_digamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_div_no_rounding_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_double_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_eq_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_hfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_rfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_flipud_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_float_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_frexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_geqrf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_gradient_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_half_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_hsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_imag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_index_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_isfinite_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_istft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_item_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_jiterator_binary_return_by_ref_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_kron_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_kthvalue_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_cholesky_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_eig_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_inv_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_lstsq_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_matrix_rank_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_norm_subgradients_at_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_slogdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_solve_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_solve_triangular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_tensorinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_log_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_logcumsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_logical_not_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nanmedian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_narrow_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_native_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_new_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nextafter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_alpha_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_elu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_embedding_bag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_gaussian_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_hardsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_hinge_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_interpolate_area_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_local_response_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_margin_ranking_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_max_unpool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_multi_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_pad_replicate_negative_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_poisson_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_rrelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_norm_nuc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_normal_in_place_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_normal_number_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_ormqr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_permute_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_permute_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_positive_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_rand_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_randint_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_randn_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_repeat_interleave_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_resolve_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_rot90_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_round_decimals_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_round_decimals_neg_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_scatter_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_searchsorted_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_signal_windows_bartlett_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_signal_windows_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_signal_windows_hann_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_bessel_y0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_modified_bessel_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_modified_bessel_k0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_scaled_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_zeta_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_squeeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_t_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_torch__scaled_mm_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_transpose_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_trapz_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_triangular_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_true_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_unsafe_chunk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_unsqueeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_var_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_view_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_vsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_where_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_zeros_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_allclose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_allclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_allclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_aminmax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_angle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_any_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_any_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_arange_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_arange_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argsort_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argsort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argwhere_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argwhere_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argwhere_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argwhere_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_2d_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_2d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_baddbmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_baddbmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_baddbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bernoulli_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bernoulli_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bfloat16_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bfloat16_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bfloat16_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bincount_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_and_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_left_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_or_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_or_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_right_shift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_right_shift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bool_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bool_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bool_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bucketize_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_byte_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cartesian_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cartesian_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cauchy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdist_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ceil_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_char_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_char_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_inverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chunk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chunk_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chunk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chunk_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chunk_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_min_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_min_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_combinations_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_combinations_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_physical_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_constant_pad_nd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_constant_pad_nd_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_contiguous_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_contiguous_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_contiguous_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_contiguous_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_copysign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_copysign_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_copysign_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_copysign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_corrcoef_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_corrcoef_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_corrcoef_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_count_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cov_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cov_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cov_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cov_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumprod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumprod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumulative_trapezoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumulative_trapezoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumulative_trapezoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumulative_trapezoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumulative_trapezoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_deg2rad_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_embed_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_embed_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_embed_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diff_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diff_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diff_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_digamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_digamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_digamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dist_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dist_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dist_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_floor_rounding_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_floor_rounding_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_floor_rounding_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_trunc_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_trunc_rounding_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_double_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_double_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_double_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_einsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_einsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_einsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_permuted_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_permuted_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_permuted_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_permuted_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_equal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_equal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfinv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfinv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exponential_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftshift_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftshift_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftshift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftshift_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftshift_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftshift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftshift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftshift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flip_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flip_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flip_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flipud_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flipud_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flipud_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flipud_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flipud_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flipud_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_power_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_power_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_power_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_floor_divide_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_frac_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_frexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_uint32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gather_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gather_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ge_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ge_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_geometric_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_geqrf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gradient_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_grid_sampler_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hash_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hash_tensor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hash_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_histogramdd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_igamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_imag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_add_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_put_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_mean_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_mean_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_inner_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_inner_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_int_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_int_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_int_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_int_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_int_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isclose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isclose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isclose_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isclose_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isfinite_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isfinite_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isinf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isinf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isneginf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isneginf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isposinf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isposinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isposinf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_istft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_item_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_4inputs_with_extra_args_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_4inputs_with_extra_args_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_4inputs_with_extra_args_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_4inputs_with_extra_args_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_unary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_unary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_unary_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_unary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_unary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kron_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kron_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kron_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kron_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kthvalue_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lcm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lcm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ldexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ldexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ldexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_le_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lerp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lerp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lgamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lgamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lgamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cholesky_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cross_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cross_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_diagonal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eig_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eigh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eigvals_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_householder_product_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_householder_product_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_inv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_ldl_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_ldl_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_ldl_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lstsq_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lstsq_grad_oriented_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_factor_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_factor_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_rank_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_multi_dot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_multi_dot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_multi_dot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_multi_dot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_norm_subgradients_at_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_norm_subgradients_at_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_pinv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_pinv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_pinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_pinv_hermitian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_pinv_singular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_solve_triangular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_solve_triangular_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_svd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_svdvals_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_svdvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_tensorinv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vander_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vander_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vecdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vecdot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vector_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vector_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_tensor_overload_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_tensor_overload_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_tensor_overload_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log10_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log10_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log10_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log10_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log1p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_normal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_normal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logaddexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logcumsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logcumsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logdet_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_and_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_and_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_and_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_and_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_not_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_not_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_or_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_xor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_xor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_xor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_xor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_tensor_overload_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logsumexp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_long_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_long_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lu_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mH_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mH_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mH_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mT_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mT_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mT_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mT_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumprod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_log_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_logsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_normalize_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_softmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_std_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_std_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_sum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_var_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_var_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matrix_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_pool2d_with_indices_backward_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_pool2d_with_indices_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_with_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_maximum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_median_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_median_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_list_of_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_list_of_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_variadic_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_variadic_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_no_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_no_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_with_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_minimum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_minimum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_minimum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mode_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_msort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_msort_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_msort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_msort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_msort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_multinomial_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_multinomial_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nan_to_num_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nan_to_num_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nan_to_num_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nan_to_num_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanmean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanmean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanmean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanmedian_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanmedian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanmedian_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanquantile_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nansum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nansum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nansum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nansum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_batch_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_ones_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_ones_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_zeros_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_zeros_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_zeros_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_zeros_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_alpha_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_alpha_dropout_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_avg_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_avg_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_bilinear_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_binary_cross_entropy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_celu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_embedding_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_embedding_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_embedding_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_similarity_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_dropout2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_dropout3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_dropout3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_elu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_embedding_bag_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_embedding_bag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_embedding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_with_train_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_fractional_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_fractional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_grid_sample_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardtanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardtanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardtanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hinge_embedding_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_huber_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_area_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_linear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_nearest_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_l1_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_l1_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_l1_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_layer_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_linear_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_linear_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_local_response_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_logsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_logsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_margin_ranking_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_margin_ranking_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_margin_ranking_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool2d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool1d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool3d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_mse_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_multi_head_attention_forward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_multi_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_normalize_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_one_hot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_constant_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_constant_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_constant_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pairwise_distance_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pairwise_distance_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pairwise_distance_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pairwise_distance_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pairwise_distance_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_shuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_shuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_unshuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_unshuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_poisson_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_prelu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu6_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu6_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu6_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_selu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_silu_complex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softplus_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softsign_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softsign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_tanhshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_tanhshrink_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_threshold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_threshold_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_upsample_nearest_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_fro_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_fro_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_inf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_inf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_in_place_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_normal_number_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pca_lowrank_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pinverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polar_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_3_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_3_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_4_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_positive_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_positive_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_positive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pow_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_put_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_put_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_put_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rad2deg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rand_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ravel_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ravel_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_real_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_real_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_renorm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_interleave_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_interleave_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize__cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize__cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_conj_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_neg_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rot90_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rot90_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rot90_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_decimals_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_decimals_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_decimals_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_decimals_neg_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsub_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsub_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsub_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scalar_tensor_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_mean_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_searchsorted_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_searchsorted_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_searchsorted_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_searchsorted_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_searchsorted_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_short_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_short_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_short_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_short_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_short_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sigmoid_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sigmoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sigmoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sigmoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sign_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_blackman_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_exponential_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_gaussian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_gaussian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_general_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_kaiser_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sparse_mm_reduce_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sparse_mm_reduce_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sparse_sampled_addmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_airy_ai_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_airy_ai_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_u_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_u_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_u_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_u_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_v_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_v_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_entr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_entr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_entr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_entr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_erfcx_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_erfcx_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_erfcx_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_h_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_he_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_he_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_he_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i0e_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1e_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1e_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_laguerre_polynomial_l_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_laguerre_polynomial_l_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_laguerre_polynomial_l_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_legendre_polynomial_p_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_legendre_polynomial_p_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_scaled_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_zeta_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_zeta_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_zeta_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_list_args_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_list_args_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_list_args_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_list_args_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_list_args_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_square_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_square_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_multiple_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_multiple_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sub_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_to_size_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_to_size_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_to_size_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_svd_lowrank_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_along_dim_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_along_dim_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensor_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_topk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_topk_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_topk_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch__scaled_mm_cpu_float8_e5m2fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapezoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapz_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapz_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapz_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapz_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_indices_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_true_divide_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_true_divide_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_true_divide_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unflatten_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unflatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unflatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_uniform_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_consecutive_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_consecutive_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_cpu_uint16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unravel_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unravel_index_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_chunk_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_chunk_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_complex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_real_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_xlogy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_xlogy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_xlogy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zero__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zero__cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zero__cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zero__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_H_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_H_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_H_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_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___getitem___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___getitem___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___radd___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___radd___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rand___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rdiv___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmod___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmod___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmul___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmul___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmul___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___ror___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rpow___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rpow___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rpow___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rsub___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rsub___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__batch_norm_with_update_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__chunk_cat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__chunk_cat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_acos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_acos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcdiv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_atan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_ceil_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_ceil_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_max_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_min_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_min_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_min_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_div_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erfc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erfc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_exp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_exp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_expm1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_frac_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lgamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lgamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lgamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log10_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log10_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_max_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_maximum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_minimum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_minimum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_mul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_mul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_norm_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_reciprocal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_reciprocal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_round_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_round_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_rsqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sigmoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sigmoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sign_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sub_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_trunc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__native_batch_norm_legit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_abs_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_abs_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addbmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addbmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcdiv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcdiv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_decomposed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_decomposed_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_decomposed_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_decomposed_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_alias_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_alias_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_alias_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_T_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides___getitem___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides___rdiv___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides___rmatmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__batch_norm_with_update_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__segment_reduce_lengths_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__upsample_bilinear2d_aa_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_addbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_all_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_any_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_atan2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_atanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_bincount_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_bitwise_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_bitwise_right_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_bitwise_xor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_broadcast_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_clamp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_column_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_constant_pad_nd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cumulative_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_diagflat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_diagonal_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_diff_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_div_floor_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_div_no_rounding_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_double_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_equal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_fft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_ihfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_flip_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_gradient_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_index_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_index_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_index_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_int_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_isfinite_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_isposinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_jiterator_4inputs_with_extra_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_kron_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_cholesky_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_cond_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_det_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_householder_product_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_pinv_singular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_svd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_logaddexp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_logit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_logspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_long_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_lt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_mH_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_max_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_max_pool2d_with_indices_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_min_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_mm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nanmean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_new_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_new_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_fractional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_hardswish_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_leaky_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_max_unpool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_mse_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_one_hot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_pad_constant_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_pixel_unshuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_softplus_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_triplet_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_pinverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_randint_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_randn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_ravel_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_roll_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_scatter_reduce_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_searchsorted_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_select_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_softmax_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_sparse_mm_reduce_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_sparse_sampled_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_airy_ai_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_bessel_y0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_i1e_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_laguerre_polynomial_l_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_legendre_polynomial_p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_log_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_modified_bessel_k0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_spherical_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_zeta_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_split_with_sizes_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_to_sparse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_triangular_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_view_as_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_view_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_vsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_aminmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_angle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_angle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_any_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_any_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_arange_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_arange_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argsort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argsort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argwhere_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argwhere_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argwhere_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_partial_views_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_partial_views_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_baddbmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_baddbmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_baddbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bincount_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_and_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_left_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_left_shift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_not_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_not_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_not_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_not_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_or_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_or_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_xor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_xor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_block_diag_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_block_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bool_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_to_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_to_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bucketize_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_byte_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_byte_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_byte_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_byte_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cartesian_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cartesian_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cauchy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cauchy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ceil_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ceil_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_char_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_char_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_char_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cholesky_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cholesky_inverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cholesky_inverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chunk_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chunk_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_min_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_column_stack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_column_stack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_column_stack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_column_stack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_column_stack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_combinations_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_combinations_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_constant_pad_nd_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_constant_pad_nd_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_constant_pad_nd_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_copysign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_count_nonzero_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_count_nonzero_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_count_nonzero_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cov_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cov_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cross_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumprod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumulative_trapezoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumulative_trapezoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumulative_trapezoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_deg2rad_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagflat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diff_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diff_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diff_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_digamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_digamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_digamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_digamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dist_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_floor_rounding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_no_rounding_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_no_rounding_mode_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_no_rounding_mode_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_trunc_rounding_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_double_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_double_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_double_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_double_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_einsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_einsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_einsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_permuted_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_permuted_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_permuted_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eq_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eq_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eq_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_equal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfinv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfinv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flatten_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flatten_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flatten_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flatten_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fliplr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fliplr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flipud_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flipud_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flipud_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flipud_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_frac_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ge_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geometric_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geqrf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gradient_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gradient_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gradient_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_grid_sampler_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_half_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_half_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hash_tensor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hash_tensor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_heaviside_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_histc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hypot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_i0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_i0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_igamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_imag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_inner_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_int_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_int_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_int_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_int_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_int_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isnan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isnan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isnan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isneginf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isneginf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isneginf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isposinf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isposinf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isposinf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_istft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_item_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_item_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_item_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_2inputs_2outputs_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_2inputs_2outputs_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_2inputs_2outputs_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_2inputs_2outputs_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_4inputs_with_extra_args_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_4inputs_with_extra_args_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_return_by_ref_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_return_by_ref_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_unary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kron_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kron_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kron_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kron_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kthvalue_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kthvalue_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lcm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ldexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ldexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ldexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lerp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lgamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lgamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cholesky_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cond_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cross_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cross_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_diagonal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eigh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eigh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eigh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eigvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eigvalsh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_householder_product_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_inv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_inv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_ldl_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lstsq_grad_oriented_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_power_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_power_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_rank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_rank_hermitian_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_multi_dot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_multi_dot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_multi_dot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_multi_dot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_norm_subgradients_at_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_norm_subgradients_at_zero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_pinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_pinv_hermitian_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_slogdet_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_solve_triangular_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_svd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_svd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_tensorinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vander_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vecdot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vector_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vector_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_tensor_overload_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_tensor_overload_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_tensor_overload_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log10_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log10_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log10_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log10_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log1p_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log1p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_normal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logcumsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logdet_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_and_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_and_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_not_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_not_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_or_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_or_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_or_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_xor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_xor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_xor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logsumexp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logsumexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_long_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_long_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_long_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_long_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_long_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumprod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logsumexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_normalize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_normalize_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_std_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_var_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_pool2d_with_indices_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_no_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_no_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_no_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_no_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_with_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_with_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_maximum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_maximum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_median_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_median_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_list_of_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_list_of_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_variadic_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_variadic_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_variadic_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_variadic_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_no_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_no_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_no_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_no_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_with_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_minimum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mode_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mode_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_msort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_msort_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nan_to_num_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nan_to_num_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nan_to_num_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanmedian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanquantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nansum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nansum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nansum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nansum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_batch_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_dropout_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_dropout_backward_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_layer_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ne_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_full_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_zeros_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_zeros_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nextafter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_max_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_max_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_batch_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_binary_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_binary_cross_entropy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_binary_cross_entropy_with_logits_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_celu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_channel_shuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_channel_shuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_channel_shuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_channel_shuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cosine_embedding_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cosine_similarity_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cosine_similarity_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_ctc_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_dropout2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_dropout_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_fractional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_gaussian_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_gelu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_gelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_glu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_grid_sample_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_grid_sample_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_group_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardsigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hinge_embedding_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_huber_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_huber_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_trilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_l1_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_l1_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_linear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_linear_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_local_response_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_margin_ranking_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_margin_ranking_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_margin_ranking_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool2d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool3d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool3d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multi_head_attention_forward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multi_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multilabel_soft_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multilabel_soft_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_normalize_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_circular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_circular_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_circular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_constant_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_constant_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_constant_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_constant_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_reflect_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_negative_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_negative_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_negative_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pairwise_distance_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pairwise_distance_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_unshuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_unshuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_unshuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_poisson_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_poisson_nll_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_poisson_nll_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_poisson_nll_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_prelu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu6_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_scaled_dot_product_attention_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_selu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_selu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_silu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_soft_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_with_dtype_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softplus_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softsign_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_tanhshrink_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_tanhshrink_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_tanhshrink_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_threshold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_threshold_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_threshold_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_unfold_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_upsample_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_upsample_nearest_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_upsample_nearest_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_fro_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_fro_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_inf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_inf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_nuc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_normal_number_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_normal_number_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ormqr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ormqr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_outer_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_outer_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_outer_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_positive_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_positive_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_positive_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_put_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_put_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_put_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rad2deg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rand_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randn_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randn_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randn_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randn_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ravel_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ravel_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_real_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_real_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_real_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_real_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reciprocal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_remainder_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_remainder_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_remainder_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_remainder_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_renorm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_interleave_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize__cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize__cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize_as__cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize_as__cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_roll_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rot90_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rot90_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_decimals_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_decimals_neg_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsub_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scalar_tensor_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scalar_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scalar_tensor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scalar_tensor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_mean_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_searchsorted_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_searchsorted_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sgn_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sgn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_short_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_short_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_short_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sign_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sign_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_blackman_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_gaussian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_general_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_general_hamming_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_hann_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signbit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sort_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sparse_mm_reduce_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sparse_sampled_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_airy_ai_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_u_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_u_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_v_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_v_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_v_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_w_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_w_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_entr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_entr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_erfcx_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_erfcx_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_erfcx_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_hermite_polynomial_h_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_hermite_polynomial_he_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_hermite_polynomial_he_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_hermite_polynomial_he_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i0e_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i0e_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_laguerre_polynomial_l_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_log_ndtr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_log_ndtr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_k1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_spherical_bessel_j0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_xlog1py_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_zeta_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_list_args_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_list_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_square_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_square_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sub_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_to_size_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_svd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_svd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_svd_lowrank_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_along_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_along_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_along_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensordot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensordot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensordot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tile_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tile_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_sparse_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_sparse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_sparse_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_sparse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_sparse_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_topk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch__scaled_mm_cpu_float8_e5m2, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trace_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapezoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapezoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapz_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapz_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapz_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapz_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triangular_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_indices_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triu_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_true_divide_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_true_divide_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_true_divide_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trunc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unflatten_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unflatten_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unflatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_uniform_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_uniform_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_uint16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_uint32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_uint64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unravel_index_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unravel_index_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_mean_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_mean_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vdot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vdot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_real_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_xlogy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_xlogy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_xlogy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zero__cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zero__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_embedding_bag_dense_backward_per_sample_weights_cpu, test/test_meta.py::TestMetaCPU::test_empty_quantized_cpu, test/test_meta.py::TestMetaCPU::test_fill__alias_relationship_cpu, test/test_meta.py::TestMetaCPU::test_fill_stride_cpu, test/test_meta.py::TestMetaCPU::test_group_norm_backward_output_mask0_cpu, test/test_meta.py::TestMetaCPU::test_huber_loss_backward_cpu, test/test_meta.py::TestMetaCPU::test_layer_norm_backward_output_mask0_cpu, test/test_meta.py::TestMetaCPU::test_layer_norm_backward_output_mask1_cpu, test/test_meta.py::TestMetaCPU::test_layer_norm_backward_output_mask4_cpu, test/test_meta.py::TestMetaCPU::test_layer_norm_backward_output_mask6_cpu, test/test_meta.py::TestMetaCPU::test_map_location_deserialize_cpu, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_H_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace___getitem___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rdiv___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace___rdiv___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rdiv___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmatmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmul___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmul___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmul___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace___rpow___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rsub___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rsub___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rsub___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rxor___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace___rxor___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rxor___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__batch_norm_with_update_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_abs_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_abs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_abs_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_acos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcdiv_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcdiv_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcdiv_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_asin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_asin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_ceil_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_ceil_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_min_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_min_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cos_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cos_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_div_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_div_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_div_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erfc_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erfc_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_expm1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_expm1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_floor_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_frac_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_frac_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_frac_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lerp_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lerp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lgamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lgamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log10_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log10_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log10_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log10_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log10_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log1p_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_maximum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_norm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_reciprocal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_reciprocal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_reciprocal_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_round_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_round_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_round_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_rsqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_rsqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sigmoid_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sigmoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sigmoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sign_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tan_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_trunc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__native_batch_norm_legit_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_put_accumulate_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__upsample_bilinear2d_aa_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_abs_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_abs_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_abs_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_abs_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_abs_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_acosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_addbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcdiv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcdiv_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcdiv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_decomposed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_decomposed_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_decomposed_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_decomposed_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_decomposed_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmv_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addr_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_addr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_addr_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addr_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addr_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_all_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_aminmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_aminmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_aminmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_angle_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_angle_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_angle_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_any_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_arange_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_argsort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_argwhere_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_argwhere_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_scatter_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_asinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_asinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_asinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_asinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_asinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan2_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_atanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_baddbmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_baddbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bernoulli_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bfloat16_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_bfloat16_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bfloat16_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_and_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_left_shift_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_or_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_or_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_right_shift_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_right_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bucketize_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_byte_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_byte_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_byte_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_byte_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cartesian_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cartesian_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cartesian_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cartesian_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_ceil_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ceil_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cfloat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cfloat_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cfloat_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cfloat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_min_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_clone_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clone_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_clone_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clone_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clone_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_combinations_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_physical_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_constant_pad_nd_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_copysign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_copysign_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_copysign_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_corrcoef_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cos_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_count_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_count_nonzero_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_count_nonzero_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cov_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cov_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cov_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cross_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cross_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumprod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumprod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_deg2rad_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_deg2rad_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagflat_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagflat_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diff_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diff_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_digamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_digamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_dist_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_dist_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_floor_rounding_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_floor_rounding_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_no_rounding_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_no_rounding_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_no_rounding_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_no_rounding_mode_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_no_rounding_mode_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_no_rounding_mode_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_trunc_rounding_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_dot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_dot_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_dot_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_double_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_double_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_double_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_dstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_dstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_einsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_einsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_permuted_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_permuted_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_erf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_erf_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_erf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfinv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfinv_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_expm1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_expm1_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_expm1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_exponential_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_flatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_flatten_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_flatten_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_flip_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_flip_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_flip_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_flipud_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_flipud_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_power_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_divide_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_divide_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_frac_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_frexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_uint16, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_gcd_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_ge_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ge_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ge_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ge_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ge_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_geometric_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_gradient_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_gradient_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_gradient_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_gradient_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_grid_sampler_2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_grid_sampler_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_gt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_gt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_gt_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_half_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_half_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_half_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_hash_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_hash_tensor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_heaviside_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_heaviside_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_heaviside_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_histc_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_hsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_hstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_hstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_hstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_hypot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_i0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_i0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_igamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_igammac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_inner_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_inner_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_int_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_int_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_int_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isclose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isclose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_isclose_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isfinite_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isfinite_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isfinite_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isfinite_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isnan_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_isnan_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isnan_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isneginf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isposinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isposinf_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_isposinf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isposinf_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isposinf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_item_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_item_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_item_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_2inputs_2outputs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_2inputs_2outputs_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_2inputs_2outputs_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_return_by_ref_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_return_by_ref_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_unary_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_unary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_lcm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_lcm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_le_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_le_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_lerp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_lerp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cholesky_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cholesky_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cond_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cond_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cross_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cross_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cross_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_det_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_det_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_eig_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_eig_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_eigh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_inv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_ldl_factor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_ldl_factor_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_factor_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_rank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_rank_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_rank_hermitian_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_multi_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_multi_dot_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_multi_dot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_norm_subgradients_at_zero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_norm_subgradients_at_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_hermitian_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_singular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_slogdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_solve_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_solve_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_svd_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_svdvals_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_tensorinv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vander_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vander_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vander_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vander_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_tensor_overload_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_tensor_overload_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_log10_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_log10_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log10_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_log1p_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log2_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_log2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_with_dtype_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logaddexp2_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logaddexp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_or_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_or_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_xor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logit_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logit_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_tensor_overload_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logsumexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_long_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_long_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_lt_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_lt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_lt_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_lu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_lu_unpack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumprod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_log_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logsumexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_softmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_std_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_std_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_std_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_std_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_sum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_var_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_var_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_var_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_matrix_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_binary_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_pool2d_with_indices_backward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_no_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_maximum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_median_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_median_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_list_of_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_variadic_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_variadic_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_no_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_no_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_with_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_minimum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_minimum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_minimum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_movedim_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_movedim_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_msort_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_multinomial_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nan_to_num_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmedian_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ne_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_full_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_full_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_full_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_full_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_zeros_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_avg_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_avg_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_batch_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_binary_cross_entropy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_celu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_channel_shuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_channel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_channel_shuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_channel_shuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_embedding_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_embedding_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_fractional_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_gelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_gelu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_gelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_glu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_group_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardswish_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardtanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hinge_embedding_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hinge_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hinge_embedding_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_huber_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_huber_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_area_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_area_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_linear_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_trilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_trilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_trilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_kl_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_l1_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_leaky_relu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_linear_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_local_response_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool2d_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool2d_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool1d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool2d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool2d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool3d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_mish_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_mish_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_normalize_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_circular_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_constant_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_constant_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_constant_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_constant_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_replicate_negative_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pairwise_distance_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pairwise_distance_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pairwise_distance_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_poisson_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_poisson_nll_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_prelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_prelu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_rms_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_rrelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_silu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_soft_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softsign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softsign_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softsign_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_threshold_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_unfold_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_upsample_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_upsample_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_upsample_nearest_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_fro_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_nuc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_in_place_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_number_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_outer_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_outer_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_4_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_4_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_4_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_positive_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_quantile_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_quantile_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rad2deg_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rad2deg_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ravel_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ravel_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_real_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_real_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_real_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_real_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_remainder_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_remainder_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_remainder_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_renorm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_interleave_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_interleave_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize__cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize__cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize__cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize_as__cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize_as__cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize_as__cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_conj_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_neg_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_decimals_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_decimals_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsub_cpu_complex128, 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_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amax_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_mean_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_mean_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_mean_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sgn_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sgn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_sgn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sgn_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sgn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sgn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sgn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_short_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_short_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sigmoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_blackman_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_blackman_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_gaussian_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_kaiser_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_signbit_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sort_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sort_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sparse_sampled_addmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_airy_ai_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_v_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_entr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_erfcx_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_erfcx_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_erfcx_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_erfcx_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_hermite_polynomial_h_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_hermite_polynomial_he_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_hermite_polynomial_he_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i0e_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1e_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1e_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1e_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_laguerre_polynomial_l_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_laguerre_polynomial_l_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_legendre_polynomial_p_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_log_ndtr_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_log_ndtr_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtr_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtr_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtri_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_spherical_bessel_j0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_spherical_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_spherical_bessel_j0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_spherical_bessel_j0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_xlog1py_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_zeta_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_zeta_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_zeta_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_list_args_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_list_args_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_list_args_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_list_args_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_square_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_square_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_square_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_mean_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_mean_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_stft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_stft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sub_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_to_size_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_to_size_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_to_size_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_to_size_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_svd_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_svd_lowrank_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_along_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensor_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensor_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensordot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tile_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_tile_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tile_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_topk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_topk_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapezoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapz_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapz_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapz_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_triangular_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_true_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_true_divide_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_uniform_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_uint64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unravel_index_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_mean_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_vdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_vdot_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_vdot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_xlogy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_xlogy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_xlogy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_zero__cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_zero__cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_zero__cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace___getitem___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace___getitem___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace___radd___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace___radd___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rdiv___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rdiv___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmod___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmod___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmod___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmul___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmul___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmul___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace___ror___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace___ror___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rpow___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rpow___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rpow___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rsub___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rsub___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rsub___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__chunk_cat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_abs_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_abs_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_acos_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_asin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_asin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_atan_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_ceil_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_max_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_min_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cos_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erf_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erf_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erf_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erfc_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erfc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_expm1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_floor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_floor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lgamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lgamma_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_maximum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_minimum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_mul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_norm_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_pow_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_pow_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_rsqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_rsqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_rsqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_rsqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sigmoid_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sigmoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tan_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_zero_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_zero_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_zero_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__native_batch_norm_legit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__segment_reduce_lengths_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__segment_reduce_lengths_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__segment_reduce_offsets_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_abs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_abs_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_abs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_acos_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_acosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_acosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_acosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addbmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addbmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addbmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_decomposed_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_decomposed_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_decomposed_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmv_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmv_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmv_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_addr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addr_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addr_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addr_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addr_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_allclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_aminmax_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_angle_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_angle_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_angle_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_angle_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_arange_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_arange_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_argsort_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_argsort_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_argsort_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_argwhere_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_argwhere_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_argwhere_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_partial_views_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_partial_views_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_partial_views_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_asinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_atanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_3d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_3d_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_baddbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_baddbmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_baddbmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_baddbmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bernoulli_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bfloat16_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bfloat16_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bfloat16_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bfloat16_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bincount_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_and_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_not_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_xor_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_xor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_bmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_shapes_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_to_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_byte_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_byte_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_byte_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cartesian_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cartesian_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cartesian_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cartesian_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cauchy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_ceil_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ceil_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_ceil_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_inverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_min_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_min_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_min_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_column_stack_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_combinations_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_combinations_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_combinations_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_combinations_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_constant_pad_nd_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_copysign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_corrcoef_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_corrcoef_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cos_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_count_nonzero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cov_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cross_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cross_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumprod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_deg2rad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_deg2rad_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_digamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_digamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_digamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_digamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_dist_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_no_rounding_mode_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_no_rounding_mode_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_trunc_rounding_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_trunc_rounding_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_trunc_rounding_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_double_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_double_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_double_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_double_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_dsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_dsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_eq_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_eq_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_eq_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_equal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_equal_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_erf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfc_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfinv_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfinv_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfinv_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftshift_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftshift_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_flatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_flip_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_flip_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fliplr_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fliplr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_flipud_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_flipud_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_flipud_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_flipud_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_divide_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_divide_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmax_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_like_cpu_uint16, test/test_meta.py::TestMetaCPU::test_meta_outplace_gather_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_gather_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_gcd_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_ge_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ge_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ge_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_geometric_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_geometric_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_geqrf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_gradient_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_grid_sampler_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_gt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_half_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_half_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_half_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_half_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_half_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_half_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_hash_tensor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_heaviside_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_histc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_histc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_hsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_hsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_hstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_hstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_hypot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_i0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_i0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_igamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_igammac_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_put_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_mean_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_inner_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_inner_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_inner_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_int_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_int_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_int_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isfinite_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isneginf_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_isneginf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isposinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_unary_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_unary_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_unary_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_kron_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_kthvalue_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ldexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ldexp_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_ldexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_le_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lerp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_lgamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_lgamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_lgamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cond_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cond_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cross_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cross_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cross_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cross_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_det_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_det_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eig_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eigh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eigvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_householder_product_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_householder_product_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_inv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_inv_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_inv_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_multi_dot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_subgradients_at_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_pinv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_pinv_singular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_pinv_singular_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_slogdet_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_slogdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_svd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_svd_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_svdvals_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_svdvals_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_svdvals_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vander_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vecdot_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vector_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_log10_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log10_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log1p_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_normal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logaddexp2_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logaddexp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logaddexp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logcumsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logcumsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_not_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_not_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_not_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logit_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_logit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logit_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logit_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_tensor_overload_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_tensor_overload_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_long_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_long_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_long_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_lt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_lt_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_lt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_unpack_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_unpack_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mH_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mH_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mH_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mH_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mT_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_mT_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_mT_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumprod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_log_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logaddexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logsumexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_normalize_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_softmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_softmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_var_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_var_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_matmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_matmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_matmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_matmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_binary_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_pool2d_with_indices_backward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_pool2d_with_indices_backward_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_pool2d_with_indices_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_no_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_with_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_median_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_median_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_list_of_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_list_of_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_variadic_tensors_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_no_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_no_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_with_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_with_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_minimum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_mm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mode_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_msort_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_msort_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_msort_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_mul_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mul_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mul_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_multinomial_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_mv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mv_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nan_to_num_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nan_to_num_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanmean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanmedian_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanmedian_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanmedian_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanquantile_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nansum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_nansum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ne_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ne_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ne_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_ones_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_ones_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_ones_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_zeros_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nextafter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nextafter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_avg_pool3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_batch_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_binary_cross_entropy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_channel_shuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_channel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_channel_shuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_embedding_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_ctc_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_dropout2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_dropout2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_dropout_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_elu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_embedding_bag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_embedding_bag_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_fractional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_fractional_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_gaussian_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_glu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_glu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_grid_sample_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_group_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardsigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardtanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hinge_embedding_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_huber_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_huber_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_area_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_area_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_bicubic_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_nearest-exact_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_nearest_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_trilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_l1_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_l1_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_linear_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_linear_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_logsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_margin_ranking_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_margin_ranking_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_margin_ranking_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool2d_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool1d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool3d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool3d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_mse_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_multi_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_multilabel_soft_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_normalize_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_one_hot_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_circular_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_circular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_circular_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_circular_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_circular_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_constant_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_constant_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_constant_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_reflect_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_reflect_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_negative_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_negative_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_negative_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_negative_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pairwise_distance_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pairwise_distance_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pairwise_distance_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_shuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_shuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_shuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_unshuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_unshuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_poisson_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_poisson_nll_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_prelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu6_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu6_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu6_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_rms_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_rms_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_rrelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_scaled_dot_product_attention_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_scaled_dot_product_attention_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_selu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_smooth_l1_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_smooth_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_soft_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softsign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softsign_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_tanhshrink_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_threshold_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_unfold_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_upsample_nearest_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_inf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_nuc_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_normal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_normal_in_place_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_normal_number_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_pca_lowrank_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_pinverse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_3_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_4_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_positive_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_pow_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_quantile_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rand_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_real_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_real_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_real_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_reciprocal_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_renorm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_renorm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize__cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize_as__cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_conj_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_conj_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_conj_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_decimals_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_decimals_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_decimals_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_decimals_neg_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsub_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsub_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_searchsorted_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_searchsorted_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_searchsorted_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sgn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sigmoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sigmoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sigmoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sign_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sign_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_nuttall_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signbit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_softmax_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sort_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sort_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sparse_mm_reduce_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sparse_sampled_addmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_airy_ai_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_v_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_w_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_entr_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_entr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_erfcx_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_erfcx_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_h_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i0e_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i0e_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1e_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1e_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_laguerre_polynomial_l_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_laguerre_polynomial_l_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_legendre_polynomial_p_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtr_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtri_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtri_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_spherical_bessel_j0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_xlog1py_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_zeta_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_stft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_stft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_sub_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_to_size_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_to_size_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_to_size_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_to_size_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_svd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_svd_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_along_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_along_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_tan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_tanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_tanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensor_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensor_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensor_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensor_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensordot_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tile_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_tile_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_sparse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_sparse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_sparse_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_topk_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_topk_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch__scaled_mm_cpu_float8_e5m2, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_trace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_trace_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapezoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapezoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapezoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapz_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_triangular_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_trunc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unflatten_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_unflatten_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unflatten_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unfold_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_uniform_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_consecutive_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_consecutive_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_consecutive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_chunk_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_chunk_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_mean_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_xlogy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_xlogy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_xlogy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_xlogy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_nan_to_num_cpu 2025-08-14T22:52:55.8044391Z 2025-08-14T22:53:01.5259493Z Running test_decomp 4/17 ... [2025-08-14 22:53:01.525624] 2025-08-14T22:53:01.5260164Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:53:01.5267040Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=4', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:53:01.526261] 2025-08-14T22:56:05.4525086Z 2025-08-14T22:56:05.4526199Z test_meta 5/5 was successful, full logs can be found in artifacts with path test/test-reports/test_meta_5.5_13b8d9eef32d582f_.log 2025-08-14T22:56:05.7360092Z Running 8082 items in this shard: test/test_meta.py::TestMetaConverter::test_channels_last_non_leaf, test/test_meta.py::TestMetaConverter::test_tensor_outlives_converter, test/test_meta.py::TestMetaConverter::test_view_of_leaf, test/test_meta.py::TestMetaCPU::test_batch_norm_backward_output_mask1_cpu, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype___radd___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__refs_heaviside_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_igamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_ne_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype__refs_true_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_atan2_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_div_no_rounding_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_fmod_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_igammac_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_logical_or_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_min_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_ne_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_polar_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_special_xlog1py_cpu_float32, test/test_meta.py::TestMetaCPU::test_binary_ufuncs_mixed_dtype_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_cdist_forward_cpu, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_H_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_H_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_H_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_H_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_T_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_T_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_T_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_T_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___getitem___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___getitem___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___radd___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___radd___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___radd___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rand___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rand___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rdiv___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rdiv___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rdiv___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rdiv___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmatmul___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmatmul___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmatmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___ror___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___ror___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rpow___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rpow___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rpow___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rpow___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rpow___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rsub___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rsub___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rxor___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rxor___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rxor___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace___rxor___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__chunk_cat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_abs_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_acos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcdiv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_addcmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_atan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_ceil_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_clamp_min_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_cosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_div_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_div_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_div_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erfc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erfc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_erfc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_exp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_expm1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_expm1_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_floor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_floor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_floor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_floor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_frac_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_frac_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_lgamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log10_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log1p_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_log_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_maximum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_minimum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_minimum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_minimum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_mul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_mul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_pow_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_reciprocal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_round_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_rsqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sigmoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sign_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sign_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sub_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_sub_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_tanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_trunc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_trunc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__foreach_trunc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__native_batch_norm_legit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__segment_reduce_lengths_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__softmax_backward_data_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace__unsafe_masked_index_put_accumulate_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_abs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_abs_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_abs_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acos_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_acosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_add_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addbmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addbmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcdiv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcdiv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addcmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addmm_decomposed_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_addr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_alias_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_all_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_all_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_allclose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_aminmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_angle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_any_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_any_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_any_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_arange_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_arange_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_arange_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_arange_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argsort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argsort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argsort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_argwhere_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_partial_views_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_partial_views_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_partial_views_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_as_strided_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_asinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_2d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_atleast_3d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_baddbmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bfloat16_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bfloat16_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bfloat16_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_left_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_not_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_or_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_xor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bitwise_xor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_block_diag_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bool_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_to_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_to_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_broadcast_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_bucketize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_byte_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_byte_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cartesian_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cartesian_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cartesian_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cdouble_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ceil_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ceil_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chalf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_char_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cholesky_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cholesky_inverse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_chunk_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_min_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clamp_min_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_clone_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_column_stack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_column_stack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_column_stack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_combinations_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_complex_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_complex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_conj_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_constant_pad_nd_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_constant_pad_nd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_constant_pad_nd_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_contiguous_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_contiguous_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_copysign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_copysign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_corrcoef_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_corrcoef_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_corrcoef_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_corrcoef_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_count_nonzero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cov_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cov_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cummin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumprod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumulative_trapezoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumulative_trapezoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_cumulative_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_deg2rad_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_deg2rad_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diag_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagflat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagflat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagflat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagflat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagflat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diagonal_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diff_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diff_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_diff_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_digamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dist_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_no_rounding_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_div_no_rounding_mode_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_double_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_dstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_einsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_permuted_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_empty_permuted_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eq_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eq_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eq_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eq_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_equal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_equal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_equal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_erfinv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exp2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expand_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expm1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expm1_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_expm1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exponential_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_eye_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftshift_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftshift_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_fftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_hfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ifftshift_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_ihfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_irfftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fft_rfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flatten_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_flip_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fliplr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fliplr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_float_power_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_floor_divide_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_fmod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_uint32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_full_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gather_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ge_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ge_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geometric_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_geometric_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_gradient_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_grid_sampler_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_half_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_half_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_half_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_half_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hash_tensor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hash_tensor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hash_tensor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hash_tensor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_heaviside_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_hypot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_i0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_i0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_igammac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_imag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_reduce_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_index_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_int_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_int_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_int_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_int_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isclose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isfinite_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isinf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isnan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isneginf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isposinf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isposinf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_isreal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_item_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_2inputs_2outputs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_2inputs_2outputs_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_4inputs_with_extra_args_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_4inputs_with_extra_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_4inputs_with_extra_args_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_4inputs_with_extra_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_binary_return_by_ref_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_unary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_unary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_unary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_jiterator_unary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_kthvalue_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ldexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ldexp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ldexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ldexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_le_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_le_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lerp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lgamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lgamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cholesky_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cond_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cross_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_cross_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_det_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_diagonal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_eigvals_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_householder_product_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_inv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_ldl_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_ldl_factor_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lstsq_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lstsq_grad_oriented_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lstsq_grad_oriented_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_matrix_rank_hermitian_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_multi_dot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_solve_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_svdvals_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_tensorinv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_tensorinv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_tensorinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vander_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vander_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vander_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vecdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linalg_vector_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_tensor_overload_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_linspace_tensor_overload_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log10_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log1p_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_log_softmax_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logaddexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logcumsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_and_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_not_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_or_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logical_xor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_tensor_overload_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_tensor_overload_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logspace_tensor_overload_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_logsumexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_long_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lu_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_lu_unpack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mH_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mH_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mH_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mH_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mH_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mH_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mT_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_argmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumprod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumprod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_cumsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_logsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_median_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_normalize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_std_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_std_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_var_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_var_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_var_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_masked_var_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_matrix_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_max_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_median_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_median_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_meshgrid_variadic_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_with_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_with_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_with_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_min_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_minimum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_minimum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mode_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_movedim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_msort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_multinomial_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mv_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nansum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nansum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_narrow_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_batch_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_native_dropout_backward_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ne_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ne_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_neg_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_strided_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_empty_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_full_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_ones_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_new_zeros_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nextafter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_max_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_alpha_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_avg_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_batch_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_bilinear_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_binary_cross_entropy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_binary_cross_entropy_with_logits_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_channel_shuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_channel_shuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_conv_transpose3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_embedding_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cosine_embedding_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_dropout2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_dropout3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_dropout3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_dropout_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_elu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_embedding_bag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_with_train_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_fractional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_fractional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_gaussian_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_gaussian_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_grid_sample_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardsigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardswish_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardswish_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hardtanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_hinge_embedding_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_huber_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_huber_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_bicubic_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_linear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_nearest_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_nearest_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_interpolate_trilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_kl_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_l1_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_l1_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_l1_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_l1_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_leaky_relu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_linear_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_linear_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_linear_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_linear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_local_response_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_logsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_logsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_margin_ranking_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_margin_ranking_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_pool2d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool1d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool1d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool1d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool3d_grad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_max_unpool3d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_mse_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_multilabel_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_multilabel_soft_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_constant_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_constant_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pad_replicate_negative_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pairwise_distance_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pairwise_distance_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pairwise_distance_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pairwise_distance_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_shuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_shuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_unshuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_unshuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_pixel_unshuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_prelu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu6_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu6_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu6_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_relu_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_rms_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_rms_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_rrelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_scaled_dot_product_attention_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_silu_complex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_silu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_soft_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_softsign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_tanhshrink_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_tanhshrink_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_tanhshrink_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_threshold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_threshold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_threshold_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_threshold_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_threshold_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_unfold_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nn_functional_upsample_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_static_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_nonzero_static_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_norm_inf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_normal_in_place_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_normal_number_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ones_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_ormqr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_outer_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_permute_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polar_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_3_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_3_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_polygamma_polygamma_n_4_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_positive_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_positive_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_positive_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_positive_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_pow_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_put_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rad2deg_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rand_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rand_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randint_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randn_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randn_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randn_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_randn_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_real_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reciprocal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_remainder_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_remainder_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_remainder_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_remainder_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_renorm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_interleave_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_interleave_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_repeat_interleave_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_reshape_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize__cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize_as__cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize_as__cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resize_as__cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_conj_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_conj_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_conj_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_resolve_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_roll_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_roll_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rot90_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_round_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsub_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_rsub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scalar_tensor_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scalar_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_scatter_reduce_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_searchsorted_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_searchsorted_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_select_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sgn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_short_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_short_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sigmoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sign_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_cosine_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_exponential_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_general_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_general_hamming_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signal_windows_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_signbit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_slice_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_softmax_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sort_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sparse_mm_reduce_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sparse_sampled_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sparse_sampled_addmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_j1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_bessel_y1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_chebyshev_polynomial_u_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_entr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_erfcx_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_erfcx_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_erfcx_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_h_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_h_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_he_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_he_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_hermite_polynomial_he_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1e_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1e_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1e_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_i1e_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_laguerre_polynomial_l_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_laguerre_polynomial_l_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_laguerre_polynomial_l_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_i0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_i1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_i1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_modified_bessel_k1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_ndtr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_scaled_modified_bessel_k1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_spherical_bessel_j0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_xlog1py_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_xlog1py_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_zeta_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_special_zeta_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_list_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_list_args_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_list_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_list_args_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_split_with_sizes_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_square_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_square_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_square_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_square_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_multiple_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_multiple_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_squeeze_multiple_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_stack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_mean_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_std_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_to_size_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_sum_to_size_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_svd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_svd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_svd_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_along_dim_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_take_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensor_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensor_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensor_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tensordot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tile_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tile_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tile_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tile_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_to_sparse_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_topk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_topk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_topk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch__scaled_mm_cpu_float8_e5m2fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_transpose_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trapz_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triangular_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triangular_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_tril_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_triu_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_true_divide_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_true_divide_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unbind_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unflatten_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unfold_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_uniform_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_uniform_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_consecutive_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_consecutive_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_consecutive_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unique_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unravel_index_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_chunk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_chunk_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_chunk_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_chunk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_chunk_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsafe_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_unsqueeze_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_var_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vdot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vdot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_as_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_view_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_vstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_where_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zero__cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_inplace_zeros_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_H_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_T_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___getitem___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___radd___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___radd___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___radd___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rand___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rand___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rdiv___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rdiv___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rdiv___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rdiv___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmatmul___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmod___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rmul___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___ror___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rpow___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rsub___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rxor___cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rxor___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rxor___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace___rxor___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__chunk_cat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__chunk_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcdiv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcdiv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_addcmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_asin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_atan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_atan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_ceil_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_ceil_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_min_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_clamp_min_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cos_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_cosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_div_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_div_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erfc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erfc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_erfc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_exp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_exp_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_exp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_exp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_expm1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_expm1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_expm1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_expm1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_floor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_floor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_floor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_frac_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_frac_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_frac_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lerp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lerp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lgamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lgamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_lgamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log10_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log1p_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_maximum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_minimum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_minimum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_mul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_neg_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_pow_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_pow_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_reciprocal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_round_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_rsqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_rsqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_rsqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_rsqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sigmoid_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sigmoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sign_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_sub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_tanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_zero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__foreach_zero_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__native_batch_norm_legit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__segment_reduce_lengths_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__segment_reduce_offsets_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__softmax_backward_data_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__softmax_backward_data_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace__unsafe_masked_index_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_abs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_abs_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_abs_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_acosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addbmm_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcdiv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcmul_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addcmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_decomposed_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_decomposed_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmm_decomposed_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addmv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_addr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_alias_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_alias_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_alias_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_all_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_allclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_aminmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_aminmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_aminmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_angle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_angle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_angle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_arange_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_arange_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argsort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argsort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_argwhere_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_partial_views_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_partial_views_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_partial_views_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_as_strided_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_asinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atan2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atanh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_1d_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_2d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_2d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_atleast_3d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_baddbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_baddbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bernoulli_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bernoulli_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bfloat16_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bincount_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bincount_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_and_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_and_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_left_shift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_or_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_or_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_or_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_xor_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bitwise_xor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_block_diag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bool_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_broadcast_to_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_bucketize_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_byte_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_byte_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_byte_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cartesian_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cartesian_prod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cartesian_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cartesian_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cauchy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cauchy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdist_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cdouble_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ceil_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cfloat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cfloat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cfloat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chalf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chalf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chalf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_char_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_char_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_char_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_char_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_char_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cholesky_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cholesky_inverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cholesky_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cholesky_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_chunk_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_min_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clamp_min_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clone_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clone_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_clone_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_column_stack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_combinations_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_complex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_physical_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_physical_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_physical_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_physical_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_conj_physical_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_constant_pad_nd_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_constant_pad_nd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_constant_pad_nd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_contiguous_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_corrcoef_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_count_nonzero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_count_nonzero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_count_nonzero_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cov_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cov_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cov_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cross_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cross_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cummin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumprod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumprod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumprod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumulative_trapezoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_cumulative_trapezoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_deg2rad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_deg2rad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_deg2rad_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_deg2rad_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_embed_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_embed_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diag_embed_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagflat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagflat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagflat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diagonal_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diff_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diff_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_diff_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_digamma_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_digamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dist_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dist_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_no_rounding_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_no_rounding_mode_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_no_rounding_mode_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_no_rounding_mode_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_trunc_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_div_trunc_rounding_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dot_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_double_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_dstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_einsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_einsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_einsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_permuted_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_empty_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eq_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eq_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eq_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_equal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_equal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfinv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfinv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_erfinv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_exp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expand_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expm1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expm1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expm1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_expm1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_eye_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftshift_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_fftshift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_hfft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftshift_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftshift_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftshift_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftshift_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ifftshift_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_ihfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_irfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fft_rfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flatten_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flip_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flip_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flip_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flip_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fliplr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fliplr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fliplr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_flipud_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_power_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_power_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_float_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_divide_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_floor_divide_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_fmod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_frexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_uint16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_full_like_cpu_uint32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gcd_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ge_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ge_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geometric_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_geqrf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gradient_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gradient_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_grid_sampler_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_gt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_half_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hash_tensor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hash_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_heaviside_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_heaviside_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_heaviside_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_heaviside_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_histc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_histogramdd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hypot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_hypot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_igamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_mean_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_reduce_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_index_select_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_inner_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_inner_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_int_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_int_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isclose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isclose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isclose_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isclose_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isfinite_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isfinite_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isinf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isnan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isnan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isneginf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isneginf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isposinf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isposinf_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isposinf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_isreal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_item_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_item_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_item_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_item_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_2inputs_2outputs_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_2inputs_2outputs_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_2inputs_2outputs_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_2inputs_2outputs_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_4inputs_with_extra_args_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_return_by_ref_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_binary_return_by_ref_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_jiterator_unary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kron_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_kthvalue_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lcm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lcm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ldexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_le_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_le_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_le_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cholesky_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cond_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cross_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_det_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_diagonal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_diagonal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_diagonal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eig_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eig_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eigh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eigvals_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eigvals_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_eigvalsh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_householder_product_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_ldl_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_ldl_factor_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_factor_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_lu_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_matrix_rank_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_multi_dot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_multi_dot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_multi_dot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_norm_subgradients_at_zero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_pinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_pinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_pinv_hermitian_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_pinv_singular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_pinv_singular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_slogdet_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_solve_triangular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_tensorsolve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vander_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vecdot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vecdot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vecdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vecdot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linalg_vector_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_tensor_overload_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_tensor_overload_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_tensor_overload_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_linspace_tensor_overload_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log10_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log1p_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_log_softmax_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logaddexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logcumsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logcumsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logcumsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_and_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_and_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_and_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_and_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_and_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_not_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_not_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_or_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_or_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logical_xor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_tensor_overload_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logspace_tensor_overload_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_logsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_long_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_lu_unpack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mH_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mH_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mH_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mH_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mH_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mT_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mT_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mT_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mT_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_argmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumprod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumsum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_cumsum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_log_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_logsumexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_prod_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_softmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_std_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_std_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_std_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_std_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_std_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_var_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_var_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_masked_var_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matrix_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_matrix_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_no_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_no_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_max_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_maximum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_median_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_median_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_list_of_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_list_of_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_list_of_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_meshgrid_variadic_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_binary_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_with_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_min_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mode_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mode_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_movedim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_msort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_multinomial_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mv_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nanmean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nansum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nansum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nansum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nansum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nansum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_narrow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_batch_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_batch_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_dropout_backward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_dropout_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_native_layer_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ne_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ne_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ne_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ne_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_empty_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_full_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_full_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_ones_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_zeros_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_zeros_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_zeros_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_new_zeros_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nextafter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nextafter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_avg_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_alpha_dropout_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_avg_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_bilinear_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_bilinear_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_binary_cross_entropy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_binary_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_channel_shuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_channel_shuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_channel_shuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_channel_shuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_conv_transpose3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_embedding_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_cosine_similarity_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_dropout_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_elu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_embedding_bag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_embedding_bag_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_embedding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_embedding_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_fractional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_gaussian_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_gelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_glu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardsigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardtanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardtanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardtanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hardtanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_hinge_embedding_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_instance_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_area_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_area_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_bicubic_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_linear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_interpolate_nearest_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_leaky_relu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_logsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_margin_ranking_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_margin_ranking_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool2d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool3d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool3d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_pool3d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool1d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_max_unpool3d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_multi_head_attention_forward_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_multi_head_attention_forward_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_multilabel_soft_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_normalize_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_normalize_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_circular_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_circular_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_circular_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_circular_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_constant_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_constant_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_constant_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_constant_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_reflect_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_reflect_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_reflect_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pad_replicate_negative_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pairwise_distance_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pairwise_distance_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pairwise_distance_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_shuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_shuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_unshuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_unshuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_pixel_unshuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu6_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_relu6_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_rms_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_rrelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_silu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_silu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_smooth_l1_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softmin_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softplus_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softsign_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_softsign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_tanhshrink_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_tanhshrink_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nn_functional_upsample_nearest_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_static_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_nonzero_static_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_fro_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_norm_nuc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_in_place_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_in_place_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_normal_in_place_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ones_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ormqr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_outer_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_permute_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pinverse_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_3_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_4_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_polygamma_polygamma_n_4_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_positive_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pow_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_pow_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_put_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_put_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_put_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rad2deg_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rad2deg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rad2deg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rad2deg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randint_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_randn_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ravel_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ravel_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_ravel_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_real_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reciprocal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_renorm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_renorm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_repeat_interleave_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_reshape_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize__cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize__cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize_as__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize_as__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resize_as__cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_conj_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_resolve_conj_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_roll_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_roll_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rot90_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rot90_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rot90_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rot90_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rot90_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_decimals_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_decimals_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_round_decimals_neg_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_rsub_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scalar_tensor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scalar_tensor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scalar_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scalar_tensor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_mean_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_scatter_reduce_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_searchsorted_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_select_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sgn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sgn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_short_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_short_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_short_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_short_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_short_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sigmoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sigmoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sigmoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_bartlett_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_general_hamming_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_hann_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_kaiser_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signal_windows_nuttall_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signbit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_signbit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_slice_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_softmax_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sort_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sparse_mm_reduce_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sparse_mm_reduce_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sparse_mm_reduce_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sparse_sampled_addmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sparse_sampled_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_airy_ai_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_airy_ai_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_airy_ai_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_airy_ai_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_bessel_j1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_u_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_u_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_w_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_chebyshev_polynomial_w_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_entr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_erfcx_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_erfcx_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_hermite_polynomial_he_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_hermite_polynomial_he_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i0e_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i0e_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1e_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_i1e_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_legendre_polynomial_p_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_legendre_polynomial_p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_log_ndtr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_log_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_log_ndtr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_log_ndtr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_i0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtri_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_ndtri_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k0_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_scaled_modified_bessel_k1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_spherical_bessel_j0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_xlog1py_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_xlog1py_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_xlog1py_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_xlog1py_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_special_zeta_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_list_args_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_split_with_sizes_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_square_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_square_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_squeeze_multiple_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_mean_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_std_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_stft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sub_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sub_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sub_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_to_size_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_to_size_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_sum_to_size_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_along_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_along_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_along_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_take_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tanh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensor_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensor_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensordot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensordot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensordot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tensordot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tile_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_to_sparse_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_topk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_topk_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_topk_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_torch__scaled_mm_cpu_float8_e5m2, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_transpose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapz_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapz_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trapz_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_tril_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_triu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_true_divide_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_true_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_true_divide_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unbind_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unflatten_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unflatten_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unfold_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_uniform_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_consecutive_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_consecutive_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unique_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unravel_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_chunk_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsafe_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_unsqueeze_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_mean_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_mean_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_mean_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_var_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vdot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_view_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_vstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_where_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_where_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_where_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_xlogy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_xlogy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_meta_outplace_zeros_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_H_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_T_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_T_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___getitem___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___getitem___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___radd___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rand___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rdiv___cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rdiv___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rdiv___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rdiv___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmatmul___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmatmul___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmod___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmul___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rpow___cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rpow___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rpow___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rsub___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rsub___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rsub___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace___rsub___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__chunk_cat_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__chunk_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_abs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_abs_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_abs_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_acos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcdiv_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcdiv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcdiv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcdiv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_addcmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_atan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_atan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_atan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_atan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_atan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_ceil_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_max_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_max_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_min_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_cosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_div_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_div_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erfc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erfc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_erfc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_exp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_exp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_expm1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_floor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_floor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_floor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_frac_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_frac_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lgamma_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_lgamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log10_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log10_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log10_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log10_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log1p_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log1p_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log1p_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_log_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_maximum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_maximum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_minimum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_minimum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_mul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_neg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_pow_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_reciprocal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_reciprocal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_reciprocal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_reciprocal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_round_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_rsqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_rsqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_rsqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sigmoid_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sigmoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sign_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sign_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sub_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_sub_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_tanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_trunc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_zero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_zero_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__foreach_zero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__segment_reduce_lengths_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__softmax_backward_data_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__softmax_backward_data_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__unsafe_masked_index_put_accumulate_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__upsample_bilinear2d_aa_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace__upsample_bilinear2d_aa_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_acosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addbmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addbmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcdiv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addcmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_decomposed_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_decomposed_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmm_decomposed_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addmv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addr_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_addr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_alias_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides___rand___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_acos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_clamp_min_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__foreach_tanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides__upsample_bilinear2d_aa_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_addbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_alias_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_arange_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_argwhere_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_as_strided_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_as_strided_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_atleast_1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_bool_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_broadcast_shapes_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_broadcast_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cartesian_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cauchy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_chunk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_copysign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cos_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_diff_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_div_trunc_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_dsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_empty_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_equal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_erfinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_exp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_expand_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_fft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_fftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_ifftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_ihfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_ihfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_irfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fft_irfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_fliplr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_floor_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_full_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_gcd_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_geometric_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_grid_sampler_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_heaviside_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_hstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_index_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_isclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_isposinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_isreal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_jiterator_2inputs_2outputs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_jiterator_4inputs_with_extra_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_jiterator_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_ldexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_det_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_lu_factor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_multi_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_svd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_tensorsolve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_vander_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_linalg_vecdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_log1p_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_log_softmax_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_logaddexp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_logical_and_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_logit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_logspace_tensor_overload_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_long_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_mH_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_mT_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_masked_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_max_pool2d_with_indices_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_meshgrid_list_of_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_min_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_movedim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_ne_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_new_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_conv2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_conv_transpose3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_hardtanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_interpolate_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_kl_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_leaky_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_mse_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_multilabel_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_one_hot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_pad_replicate_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_pixel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_rms_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_silu_complex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_silu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_softplus_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nn_functional_softshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_nonzero_static_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_ones_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_polar_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_polygamma_polygamma_n_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_ravel_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_reshape_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_resolve_neg_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_roll_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_round_decimals_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_rsub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_scatter_reduce_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_short_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_signal_windows_kaiser_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_signbit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_slice_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_softmax_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sparse_mm_reduce_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_bessel_y1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_ndtri_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_split_with_sizes_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_squeeze_multiple_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_std_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_svd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_to_sparse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_topk_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_tril_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_tril_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_unbind_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_unflatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_unfold_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_unique_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_unravel_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_var_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_all_strides_view_as_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_allclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_aminmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_angle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_angle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_angle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_angle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_any_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_any_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_any_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_arange_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_arange_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argsort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argwhere_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argwhere_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_argwhere_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_partial_views_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_as_strided_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asinh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_asinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atan_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_atleast_3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bfloat16_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bfloat16_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_left_shift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_left_shift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_left_shift_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_xor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bitwise_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_block_diag_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bool_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bool_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bool_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_tensors_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_broadcast_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bucketize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_bucketize_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_byte_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_byte_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cartesian_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cartesian_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cartesian_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cartesian_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cauchy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cdouble_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ceil_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ceil_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cfloat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chalf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chalf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chalf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chalf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_chalf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_char_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_char_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_inverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cholesky_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clamp_min_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_clone_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_column_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_combinations_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_combinations_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_combinations_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_physical_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_physical_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_conj_physical_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_constant_pad_nd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_constant_pad_nd_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_contiguous_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_contiguous_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_contiguous_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_copysign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_copysign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_corrcoef_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_corrcoef_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_corrcoef_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cos_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cos_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cosh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_count_nonzero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_count_nonzero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_count_nonzero_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cov_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cov_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cummin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_cumulative_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_deg2rad_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_deg2rad_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_deg2rad_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_deg2rad_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diag_embed_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagflat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagflat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagflat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagflat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diagonal_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_diff_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_digamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_floor_rounding_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_floor_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_floor_rounding_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_floor_rounding_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_no_rounding_mode_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_trunc_rounding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_div_trunc_rounding_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_double_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_double_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_dstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_einsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_einsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_einsum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_permuted_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_permuted_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_permuted_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_strided_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eq_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_equal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_equal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_equal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_erfc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp2_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expand_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_expm1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_float8_e5m2, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_float8_e5m2fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_eye_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_fftshift_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_hfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftn_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ifftshift_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_ihfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_irfftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fft_rfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flip_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flip_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flip_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fliplr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fliplr_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fliplr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fliplr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flipud_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_flipud_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_power_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_float_power_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_fmod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_frac_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_frac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_full_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gather_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gather_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gather_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gather_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gcd_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gcd_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ge_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ge_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ge_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ge_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_geometric_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_geqrf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gradient_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gradient_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_grid_sampler_2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_gt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_half_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hash_tensor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hash_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hash_tensor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_heaviside_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_heaviside_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_histc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_hypot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_i0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_igamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_igammac_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_fill_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_put_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amax_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_mean_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_reduce_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_index_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_int_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_int_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_int_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isclose_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isclose_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isclose_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isfinite_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isfinite_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isinf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isnan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isnan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isnan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isnan_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isnan_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isnan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isneginf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isneginf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isneginf_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isposinf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isposinf_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_isreal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_item_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_item_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_item_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_item_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_2inputs_2outputs_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_2inputs_2outputs_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_2inputs_2outputs_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_4inputs_with_extra_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_4inputs_with_extra_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_4inputs_with_extra_args_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_binary_return_by_ref_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_unary_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_unary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_jiterator_unary_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kron_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kron_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kthvalue_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kthvalue_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_kthvalue_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ldexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ldexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ldexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ldexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_le_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_le_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_le_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_le_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_le_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lgamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lgamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lgamma_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lgamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cholesky_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_cross_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_det_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_det_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_diagonal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_diagonal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_diagonal_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eig_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_eigvals_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_inv_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_inv_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_ldl_factor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_ldl_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_ldl_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lstsq_grad_oriented_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_factor_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_factor_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_matrix_power_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_multi_dot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_multi_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_multi_dot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_qr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_slogdet_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_slogdet_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_solve_triangular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_svdvals_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vander_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vander_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vecdot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vector_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linalg_vector_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_tensor_overload_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_linspace_tensor_overload_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log10_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log10_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log1p_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log1p_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log1p_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_with_dtype_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_log_softmax_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logaddexp2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_and_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_and_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_not_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_not_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_or_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logical_xor_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_tensor_overload_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_tensor_overload_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_tensor_overload_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_tensor_overload_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_tensor_overload_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logspace_tensor_overload_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_logsumexp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_long_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_long_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_long_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_lu_unpack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mH_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mT_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mT_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mT_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mT_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_argmin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumprod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_log_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_logaddexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_logsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_logsumexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_median_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_normalize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_normalize_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_scatter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_scatter_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_std_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_std_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_var_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_var_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_masked_var_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_matrix_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_no_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_max_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_maximum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_median_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_list_of_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_variadic_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_variadic_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_variadic_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_meshgrid_variadic_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_no_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_min_reduction_with_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mode_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_movedim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_msort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_msort_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_multinomial_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nan_to_num_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nan_to_num_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nan_to_num_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanmedian_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nanmedian_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nansum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nansum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nansum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_narrow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_dropout_backward_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_dropout_backward_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_dropout_backward_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_dropout_backward_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_native_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ne_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_neg_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_strided_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_empty_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_full_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_ones_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_ones_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_ones_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_zeros_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_new_zeros_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nextafter_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_max_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_adaptive_max_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_avg_pool1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_batch_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_bilinear_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_binary_cross_entropy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_celu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_channel_shuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_channel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_channel_shuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_conv_transpose3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_embedding_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cosine_embedding_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_cross_entropy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_ctc_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_dropout3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_dropout3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_dropout_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_elu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_fractional_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_fractional_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_fractional_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_gaussian_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_gelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_gelu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_gelu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_grid_sample_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_hardtanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_huber_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_huber_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_instance_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_bicubic_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_kl_div_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_kl_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_kl_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_leaky_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_linear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_linear_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_linear_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_local_response_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_local_response_norm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_logsigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_margin_ranking_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool2d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool2d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_pool3d_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool1d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool1d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool2d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool2d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_max_unpool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_mish_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_mish_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_mse_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_multi_head_attention_forward_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_multilabel_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_normalize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_normalize_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_circular_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_constant_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_constant_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_constant_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_reflect_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_negative_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_negative_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_negative_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pad_replicate_negative_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pairwise_distance_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pairwise_distance_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_shuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_shuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_shuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_shuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_unshuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_pixel_unshuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_poisson_nll_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_poisson_nll_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu6_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu6_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_rms_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_rms_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_rrelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_scaled_dot_product_attention_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_selu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_silu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_silu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_silu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_smooth_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_smooth_l1_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_soft_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_softsign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_tanhshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_tanhshrink_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_tanhshrink_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_threshold_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_nonzero_static_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_inf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_norm_nuc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ones_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ormqr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_ormqr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_outer_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_permute_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pinverse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_4_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_polygamma_polygamma_n_4_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_positive_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_positive_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_positive_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_positive_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_positive_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_positive_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pow_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_pow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_prod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_put_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rad2deg_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rad2deg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rad2deg_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rand_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rand_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randint_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_randn_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_real_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reciprocal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_remainder_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_remainder_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_renorm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_renorm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_renorm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_interleave_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_interleave_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_repeat_interleave_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_reshape_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize__cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize__cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resize_as__cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_conj_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_conj_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_neg_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_resolve_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_roll_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rot90_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rot90_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rot90_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_decimals_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_round_decimals_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_rsub_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scalar_tensor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scalar_tensor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scalar_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scalar_tensor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_mean_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_sum_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_scatter_reduce_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_searchsorted_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_searchsorted_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_searchsorted_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_select_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sgn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_short_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_short_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_short_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_short_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sigmoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_bartlett_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_cosine_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_general_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_general_hamming_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signal_windows_kaiser_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signbit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_signbit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_slice_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_with_dtype_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sort_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sort_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sort_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sparse_mm_reduce_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_airy_ai_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_j1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_bessel_y0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_u_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_v_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_w_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_chebyshev_polynomial_w_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_entr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_erfcx_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_hermite_polynomial_h_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i0e_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i0e_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i0e_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1e_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_i1e_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_laguerre_polynomial_l_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_laguerre_polynomial_l_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_i1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k1_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_modified_bessel_k1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_ndtr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_xlog1py_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_xlog1py_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_xlog1py_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_xlog1py_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_special_xlog1py_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_list_args_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_list_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_list_args_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_list_args_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_split_with_sizes_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_square_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_square_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_multiple_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_multiple_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_multiple_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_multiple_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_squeeze_multiple_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_stack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_mean_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_std_mean_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sub_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_to_size_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_to_size_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_to_size_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_sum_to_size_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_svd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_svd_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_svd_lowrank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_along_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_along_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_take_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensor_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensor_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensor_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensor_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensordot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensordot_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tensordot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tile_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_to_sparse_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_topk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_topk_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_topk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trace_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trace_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_transpose_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapezoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapezoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trapz_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_tril_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_triu_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_true_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_true_divide_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_true_divide_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trunc_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unbind_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unflatten_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unflatten_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unflatten_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unfold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_uniform_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_uniform_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_consecutive_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_consecutive_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_consecutive_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unique_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_chunk_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_chunk_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_chunk_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsafe_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_unsqueeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_var_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vdot_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_as_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_view_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vstack_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_vstack_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_where_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zero__cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zero__cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_inplace_zeros_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_H_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_H_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_T_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___getitem___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___getitem___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___radd___cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___radd___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rand___cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rand___cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmatmul___cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmatmul___cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmatmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmul___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___ror___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rsub___cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace___rsub___cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__batch_norm_with_update_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__chunk_cat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__chunk_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__chunk_cat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__chunk_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__chunk_cat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__chunk_cat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_abs_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcdiv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcdiv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_addcmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_asin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_atan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_ceil_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_ceil_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_clamp_min_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_cosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erfc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_erfc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_exp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_expm1_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_expm1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_floor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_floor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_floor_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_frac_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_frac_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_lgamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log10_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log1p_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_max_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_maximum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_maximum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_minimum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_minimum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_mul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_mul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_norm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_reciprocal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_round_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_round_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_round_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_rsqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_rsqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_rsqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sigmoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sin_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sinh_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_sqrt_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tan_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_tanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_trunc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_trunc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_trunc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_trunc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_zero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__foreach_zero_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_put_accumulate_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__unsafe_masked_index_put_accumulate_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__upsample_bilinear2d_aa_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace__upsample_bilinear2d_aa_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_abs_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_abs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_abs_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acos_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acosh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_acosh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_add_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addcmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmm_decomposed_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmv_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addmv_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_addr_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_alias_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_cpu_int32, 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___rxor___cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_ceil_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_minimum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides__foreach_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_addmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_angle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_argsort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_as_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_asinh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_bernoulli_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_bitwise_or_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cfloat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_clone_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_combinations_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_deg2rad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_diag_embed_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_diagonal_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_empty_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_empty_permuted_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_expand_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_eye_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_fftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_ifft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_ifft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_fft_rfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_frexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_gather_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_geqrf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_grid_sampler_2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_heaviside_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_igamma_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_index_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_inner_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_isnan_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_item_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_lcm_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_le_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_ldl_factor_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_lstsq_grad_oriented_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_matrix_rank_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_pinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_solve_triangular_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_tensorsolve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_linalg_vecdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_logdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_lu_unpack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_mT_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_masked_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_max_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nanmedian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_narrow_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_native_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_new_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_batch_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_celu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_conv1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_dropout3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_grid_sample_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_group_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_hardshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_hardsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_huber_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_interpolate_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_kl_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_local_response_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_logsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_max_unpool3d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_mish_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_multi_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_pad_reflect_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_pad_replicate_negative_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_poisson_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_rms_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_rrelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nn_functional_upsample_nearest_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_nonzero_static_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_norm_fro_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_normal_in_place_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_permute_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_resize_as__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_round_decimals_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_scatter_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_signal_windows_general_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_signal_windows_general_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_signal_windows_hann_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_signbit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_sort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_bessel_j0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_bessel_y1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_hermite_polynomial_h_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_modified_bessel_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_split_with_sizes_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_squeeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_squeeze_multiple_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_std_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_stft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_sum_to_size_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_tensordot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_transpose_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_trapz_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_tril_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_unbind_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_unique_consecutive_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_unravel_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_var_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_where_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_xlogy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_zero__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_all_strides_zeros_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_allclose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_allclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amax_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_aminmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_aminmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_angle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_angle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_any_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_any_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_arange_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argsort_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argsort_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argwhere_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argwhere_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_argwhere_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_partial_views_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_as_strided_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asin_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_asinh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan2_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_1d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_1d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_atleast_3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_baddbmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bernoulli_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bfloat16_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bincount_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_and_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_and_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_and_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_not_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_or_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_right_shift_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_right_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_right_shift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bitwise_xor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_block_diag_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_block_diag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_block_diag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_block_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_block_diag_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_block_diag_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bool_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bool_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bool_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bool_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_broadcast_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bucketize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bucketize_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_bucketize_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_byte_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_byte_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_byte_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cartesian_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cartesian_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cartesian_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cartesian_prod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cat_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cdouble_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ceil_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cfloat_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_chalf_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_char_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_char_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_char_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_char_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_char_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cholesky_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cholesky_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cholesky_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_max_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_max_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clamp_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_clone_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_column_stack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_column_stack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_column_stack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_column_stack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_combinations_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_combinations_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_physical_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_conj_physical_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_constant_pad_nd_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_constant_pad_nd_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_contiguous_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_copysign_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_copysign_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_copysign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_corrcoef_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_corrcoef_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_count_nonzero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_count_nonzero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_count_nonzero_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cov_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cov_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cross_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cross_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummax_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummin_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cummin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumprod_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumulative_trapezoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumulative_trapezoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_cumulative_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diag_embed_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagflat_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagflat_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagflat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagflat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diagonal_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_diff_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_digamma_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dist_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_floor_rounding_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_no_rounding_mode_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_no_rounding_mode_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_no_rounding_mode_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_no_rounding_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_no_rounding_mode_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_trunc_rounding_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_trunc_rounding_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_div_trunc_rounding_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dot_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dot_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_double_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_dstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_einsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_einsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_einsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_permuted_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_permuted_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_permuted_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_permuted_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_permuted_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_empty_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eq_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eq_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eq_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_equal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_equal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_equal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfc_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfinv_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfinv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_erfinv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp2_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp2_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exp_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expand_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expm1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expm1_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_expm1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_exponential_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_float8_e5m2fnuz, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_eye_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_fftshift_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_hfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ifftshift_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_ihfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfft_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_irfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fft_rfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flatten_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flatten_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flatten_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flip_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fliplr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fliplr_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_flipud_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_float_power_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_divide_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_floor_divide_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmod_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_fmod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_frac_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_full_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gather_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gcd_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ge_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ge_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ge_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ge_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ge_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_geometric_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gradient_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gradient_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gradient_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gradient_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_gt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_half_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_half_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_heaviside_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_heaviside_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_heaviside_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_heaviside_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_histc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_histc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_histc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_histogram_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_histogramdd_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_hypot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_igammac_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_add_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_put_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_put_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_put_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_reduce_mean_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_index_select_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_inner_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_inner_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_inner_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_inner_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_int_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_int_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isfinite_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isinf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isnan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isneginf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isposinf_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isposinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_isreal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_istft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_item_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_item_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_2inputs_2outputs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_2inputs_2outputs_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_2inputs_2outputs_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_4inputs_with_extra_args_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_4inputs_with_extra_args_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_return_by_ref_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_binary_return_by_ref_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_unary_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_jiterator_unary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kron_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kron_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_kron_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ldexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ldexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_le_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_le_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lerp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lerp_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lgamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cross_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_cross_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_det_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_diagonal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_diagonal_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_diagonal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_diagonal_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_diagonal_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_diagonal_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_diagonal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eig_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_eigvals_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_householder_product_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_inv_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_ldl_factor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_ldl_factor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_ldl_factor_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_ldl_factor_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lstsq_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lstsq_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lstsq_grad_oriented_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_factor_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_factor_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_matrix_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_multi_dot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_norm_subgradients_at_zero_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_pinv_hermitian_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_qr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_svdvals_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vander_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vander_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vander_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vecdot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vecdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vector_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vector_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linalg_vector_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_tensor_overload_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_linspace_tensor_overload_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log10_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log10_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log1p_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log1p_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log1p_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log2_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_log_softmax_with_dtype_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logaddexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logaddexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_and_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_not_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_not_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_not_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_or_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_or_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logical_xor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_tensor_overload_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_tensor_overload_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logspace_tensor_overload_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_logsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_long_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_long_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_long_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lt_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lt_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_lu_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mH_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mT_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_argmin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumprod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumprod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_cumsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_log_softmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logaddexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_logsumexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_median_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_normalize_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_softmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_softmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_softmin_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_std_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_sum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_masked_var_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matrix_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_matrix_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_no_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_no_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_with_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_with_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_max_reduction_with_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_median_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_median_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_list_of_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_list_of_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_list_of_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_meshgrid_variadic_tensors_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_no_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_with_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_min_reduction_with_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_minimum_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_minimum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_minimum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mode_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mode_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_movedim_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_movedim_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_movedim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_msort_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_msort_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mul_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_multinomial_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_multinomial_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mv_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nan_to_num_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nan_to_num_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nanquantile_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nansum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_narrow_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_dropout_backward_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_dropout_backward_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_dropout_backward_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_layer_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_native_layer_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ne_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ne_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_empty_strided_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_full_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_ones_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_zeros_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_zeros_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_zeros_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_zeros_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_new_zeros_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nextafter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_avg_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_max_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_alpha_dropout_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_avg_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_channel_shuffle_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_channel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_channel_shuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_channel_shuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_conv_transpose3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cosine_embedding_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cosine_embedding_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cosine_embedding_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cosine_similarity_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cross_entropy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_cross_entropy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_dropout3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_dropout_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_elu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_embedding_bag_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_embedding_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_with_train_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_fractional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_glu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_grid_sample_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardshrink_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardtanh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardtanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardtanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hardtanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_hinge_embedding_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_huber_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_instance_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_area_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_bicubic_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_bicubic_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_nearest-exact_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_nearest_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_interpolate_nearest_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_l1_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_layer_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_linear_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_linear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_linear_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_local_response_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool2d_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool2d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_pool3d_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool3d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_max_unpool3d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_mish_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_circular_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_constant_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_constant_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_constant_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_constant_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_constant_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_constant_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_reflect_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_reflect_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_negative_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pad_replicate_negative_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pairwise_distance_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pairwise_distance_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pairwise_distance_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_shuffle_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_pixel_unshuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_poisson_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_poisson_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu6_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_relu_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_rms_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_rms_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_rms_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_rrelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_selu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_selu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_silu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softmin_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softplus_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_softshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_tanhshrink_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_threshold_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_threshold_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_triplet_margin_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_unfold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_upsample_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nn_functional_upsample_nearest_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_nonzero_static_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_fro_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_fro_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_fro_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_inf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_nuc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_norm_nuc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_normal_in_place_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ones_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ormqr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ormqr_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pca_lowrank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pca_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_permute_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pinverse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polar_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_2_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_2_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_polygamma_polygamma_n_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_positive_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_positive_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pow_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_pow_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_put_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_qr_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rad2deg_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rad2deg_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rad2deg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rand_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randint_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randn_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_randn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ravel_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ravel_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_ravel_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_real_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_real_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_real_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reciprocal_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_remainder_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_renorm_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_interleave_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_interleave_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_interleave_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_interleave_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_repeat_interleave_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_as_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_reshape_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize__cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize__cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize_as__cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize_as__cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize_as__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize_as__cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resize_as__cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_conj_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_resolve_neg_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_decimals_0_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_decimals_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_decimals_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_round_decimals_neg_3_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsub_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsub_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsub_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_rsub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scalar_tensor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scalar_tensor_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amax_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_mean_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_prod_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_scatter_reduce_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_searchsorted_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_searchsorted_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_searchsorted_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_searchsorted_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_select_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sgn_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sgn_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_short_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_short_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sigmoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sign_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sign_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sign_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_blackman_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_kaiser_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signal_windows_kaiser_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_signbit_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sin_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinc_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinc_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinc_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinc_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sinh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_scatter_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_slice_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_softmax_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sort_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sort_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sparse_sampled_addmm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sparse_sampled_addmm_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_j1_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y0_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y0_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y0_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_bessel_y1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_u_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_u_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_entr_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_entr_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_hermite_polynomial_h_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_hermite_polynomial_h_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_hermite_polynomial_he_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i0e_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1e_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1e_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_i1e_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_laguerre_polynomial_l_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_laguerre_polynomial_l_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_legendre_polynomial_p_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_log_ndtr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i1_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_modified_bessel_i1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_ndtri_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k1_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k1_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_scaled_modified_bessel_k1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_spherical_bessel_j0_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_spherical_bessel_j0_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_xlog1py_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_xlog1py_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_xlog1py_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_xlog1py_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_special_zeta_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_list_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_split_with_sizes_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_square_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_square_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_square_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_squeeze_multiple_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stack_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_std_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_stft_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sub_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_to_size_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_sum_to_size_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_svd_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_svd_lowrank_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_t_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_along_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_along_dim_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_along_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_along_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_take_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tanh_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensor_split_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tensordot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tile_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_sparse_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_to_sparse_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_topk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trace_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trace_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_transpose_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapezoid_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapezoid_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapz_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapz_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapz_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trapz_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triangular_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_tril_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triu_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triu_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triu_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_triu_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_true_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_true_divide_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_true_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_true_divide_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trunc_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trunc_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unbind_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unflatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unfold_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_consecutive_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_consecutive_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unique_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unravel_index_cpu_int32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unravel_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsafe_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_unsqueeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_unbiased_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_var_unbiased_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_view_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_vsplit_cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_where_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_where_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_where_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_where_cpu_uint8, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zero__cpu_float64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zero__cpu_int16, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_cpu_bool, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_cpu_int64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_like_cpu_complex128, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_dispatch_symbolic_meta_outplace_zeros_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_group_norm_backward_output_mask1_cpu, test/test_meta.py::TestMetaCPU::test_group_norm_backward_output_mask3_cpu, test/test_meta.py::TestMetaCPU::test_group_norm_backward_output_mask4_cpu, test/test_meta.py::TestMetaCPU::test_group_norm_backward_output_mask6_cpu, test/test_meta.py::TestMetaCPU::test_layer_norm_backward_output_mask3_cpu, test/test_meta.py::TestMetaCPU::test_layer_norm_backward_output_mask7_cpu, test/test_meta.py::TestMetaCPU::test_meta_autograd_no_error_cpu, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_T_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace___getitem___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace___getitem___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace___getitem___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace___radd___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rand___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace___rand___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rdiv___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rdiv___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rdiv___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmatmul___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmatmul___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmatmul___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmatmul___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmod___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace___rmul___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace___ror___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace___rpow___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace___rpow___cpu_int8, 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__batch_norm_with_update_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__batch_norm_with_update_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__chunk_cat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_abs_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_abs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_acos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_acos_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_add_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcdiv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcdiv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcdiv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcdiv_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcdiv_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcmul_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcmul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_addcmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_asin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_atan_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_atan_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_atan_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_atan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_ceil_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_max_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_min_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_min_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_clamp_min_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cos_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cos_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_div_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erfc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erfc_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_erfc_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_exp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_exp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_expm1_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_expm1_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_frac_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_frac_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lerp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lerp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lgamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_lgamma_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log10_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log10_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log1p_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log1p_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_log_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_max_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_maximum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_minimum_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_neg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_norm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_norm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_round_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_round_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_round_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_rsqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sigmoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sigmoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sign_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sign_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_sub_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tan_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_tanh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_trunc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_trunc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace__foreach_zero_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace__native_batch_norm_legit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__native_batch_norm_legit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__segment_reduce_offsets_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_put_accumulate_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_put_accumulate_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace__unsafe_masked_index_put_accumulate_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace__upsample_bilinear2d_aa_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_abs_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_acos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_acosh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_acosh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_acosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_acosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_acosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_acosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_add_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_add_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_addbmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_addcmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_decomposed_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmm_decomposed_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addmv_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_addr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_addr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_alias_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_all_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_all_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_all_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_allclose_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_allclose_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_amin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_angle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_angle_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_any_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_any_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_any_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_any_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_arange_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_arange_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argmax_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_argsort_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_argsort_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_argsort_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_argwhere_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_argwhere_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_argwhere_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_partial_views_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_as_strided_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_asin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_asinh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_asinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atan_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_2d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_atleast_3d_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_baddbmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_baddbmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bernoulli_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bfloat16_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bfloat16_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bfloat16_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bfloat16_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bfloat16_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bincount_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bincount_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_and_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_and_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_left_shift_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_left_shift_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_left_shift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_not_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_or_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_or_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_or_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_right_shift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_xor_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_bitwise_xor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_block_diag_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_bmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_bool_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_tensors_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_broadcast_to_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bucketize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_bucketize_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_byte_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cartesian_prod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cat_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cauchy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cauchy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdist_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdist_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_cdouble_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ceil_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ceil_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ceil_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cfloat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cfloat_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cfloat_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cfloat_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_chalf_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_char_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cholesky_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cholesky_inverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cholesky_inverse_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_chunk_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_max_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_clamp_min_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_clone_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_clone_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_clone_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_column_stack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_combinations_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_combinations_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_combinations_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_conj_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_constant_pad_nd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_constant_pad_nd_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_constant_pad_nd_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_constant_pad_nd_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_contiguous_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_copysign_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_corrcoef_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_corrcoef_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_corrcoef_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cos_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cos_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cos_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cos_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cosh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_count_nonzero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_count_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_count_nonzero_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_count_nonzero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cov_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cov_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_cov_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cross_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cummin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumprod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumprod_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumprod_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumsum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_cumulative_trapezoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_deg2rad_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diag_embed_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagflat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagflat_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagflat_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_diagonal_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_diff_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_diff_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_digamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_digamma_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_floor_rounding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_floor_rounding_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_floor_rounding_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_no_rounding_mode_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_no_rounding_mode_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_trunc_rounding_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_trunc_rounding_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_div_trunc_rounding_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_dot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_dot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_dot_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_dot_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_dot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_double_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_double_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_dsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_dstack_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_dstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_dstack_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_einsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_like_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_permuted_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_permuted_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_permuted_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_strided_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_strided_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_strided_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_empty_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_eq_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_equal_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfinv_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_erfinv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_exp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_as_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_expand_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_expm1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expm1_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_expm1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_expm1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_exponential_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_eye_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_fftshift_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_hfftn_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ifftshift_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_ihfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_irfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fft_rfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_flatten_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_flatten_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_flatten_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_flatten_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_flip_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_flip_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fliplr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_flipud_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_flipud_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_power_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_power_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_float_power_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_floor_divide_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_fmod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_frexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_full_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_gather_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_gcd_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_ge_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_geometric_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_geometric_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_geqrf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_gt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_half_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_half_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_hash_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_hash_tensor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_hash_tensor_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_heaviside_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_heaviside_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_histogram_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_hsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_hsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_hstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_hstack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_i0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_i0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_igammac_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_igammac_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_imag_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_fill_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_put_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_amin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_mean_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_mean_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_index_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_inner_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_inner_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_inner_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_int_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_int_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isclose_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isclose_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isclose_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isfinite_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_isfinite_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isfinite_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isinf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isnan_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isnan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isnan_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_isnan_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_isneginf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_isposinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_isreal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_item_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_item_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_2inputs_2outputs_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_2inputs_2outputs_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_4inputs_with_extra_args_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_4inputs_with_extra_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_4inputs_with_extra_args_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_4inputs_with_extra_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_4inputs_with_extra_args_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_return_by_ref_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_binary_return_by_ref_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_unary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_unary_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_jiterator_unary_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_kron_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_kthvalue_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_kthvalue_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_kthvalue_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_kthvalue_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_lcm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ldexp_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_ldexp_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ldexp_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_le_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_lgamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_lgamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_diagonal_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_householder_product_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_householder_product_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_ldl_factor_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_ldl_factor_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_ldl_solve_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lstsq_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_factor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_factor_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_factor_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_factor_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_lu_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_power_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_power_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_rank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_rank_hermitian_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_matrix_rank_hermitian_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_multi_dot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_norm_subgradients_at_zero_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_hermitian_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_pinv_singular_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_qr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_slogdet_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_slogdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_solve_triangular_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_tensorinv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_tensorinv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vander_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vander_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vecdot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vector_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linalg_vector_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_linspace_tensor_overload_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log10_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_log1p_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_log2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_log2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_normal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_with_dtype_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_with_dtype_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_with_dtype_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_log_softmax_with_dtype_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logaddexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_logcumsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logcumsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_and_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_and_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_not_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_not_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_or_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_or_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_or_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_xor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_xor_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_logical_xor_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_tensor_overload_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_logspace_tensor_overload_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_logsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_long_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_long_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_lt_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_lt_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_lu_unpack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mH_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mT_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_mT_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mT_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mT_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mT_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_argmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumsum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_cumsum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_fill_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_fill_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_fill_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logaddexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logsumexp_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_logsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_median_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_prod_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_prod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_std_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_masked_var_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_matmul_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_matmul_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_matmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_pool2d_with_indices_backward_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_pool2d_with_indices_backward_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_no_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_no_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_no_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_max_reduction_with_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_maximum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_maximum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_median_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_list_of_tensors_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_variadic_tensors_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_meshgrid_variadic_tensors_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_binary_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_no_dim_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_no_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_no_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_no_dim_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_with_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_min_reduction_with_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mode_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mode_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_movedim_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_movedim_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_movedim_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_movedim_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_movedim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_msort_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_msort_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_msort_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_msort_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_mul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_mv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_mv_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mv_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_mvlgamma_mvlgamma_p_5_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nan_to_num_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nanmedian_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nansum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nansum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nansum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nansum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_narrow_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_dropout_backward_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_native_dropout_backward_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_ne_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_neg_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_neg_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_neg_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_neg_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_empty_strided_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_ones_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_zeros_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_zeros_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_new_zeros_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nextafter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nextafter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_bilinear_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_bilinear_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_binary_cross_entropy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_binary_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_binary_cross_entropy_with_logits_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_celu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_celu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_celu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_channel_shuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_channel_shuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_channel_shuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv1d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_conv_transpose3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_embedding_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_similarity_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cosine_similarity_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_cross_entropy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_dropout_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_elu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_feature_alpha_dropout_without_train_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_fractional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_gaussian_nll_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_grid_sample_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_group_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_hardsigmoid_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_instance_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_nearest_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_interpolate_nearest_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_kl_div_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_kl_div_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_l1_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_l1_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_leaky_relu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_linear_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_linear_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_linear_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_linear_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_local_response_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_local_response_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_local_response_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_local_response_norm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_margin_ranking_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_margin_ranking_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool2d_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_pool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool1d_grad_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_max_unpool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_mse_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_multi_margin_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_multilabel_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_nll_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_normalize_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_circular_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_circular_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_circular_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_circular_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_constant_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_constant_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_constant_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pad_reflect_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pairwise_distance_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pdist_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_shuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_shuffle_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_shuffle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_shuffle_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_shuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_pixel_unshuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_prelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu6_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu6_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu6_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu6_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_relu_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_rms_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_rms_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_rms_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_rrelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_silu_complex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_silu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softmin_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softplus_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softshrink_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_softsign_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_tanhshrink_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_tanhshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_threshold_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_threshold_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_threshold_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_loss_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_loss_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_triplet_margin_with_distance_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_unfold_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_upsample_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nn_functional_upsample_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_nonzero_static_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_fro_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_fro_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_inf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_inf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_inf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_inf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_norm_nuc_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_in_place_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_in_place_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_normal_number_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ones_like_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ormqr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ormqr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_ormqr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_outer_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_outer_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_outer_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_outer_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_outer_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_pca_lowrank_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_permute_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_polar_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_polygamma_polygamma_n_4_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_positive_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_pow_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_put_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_put_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_qr_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rad2deg_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_rad2deg_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rand_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_randint_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_randn_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ravel_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_ravel_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_ravel_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_real_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_reciprocal_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_renorm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_interleave_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_interleave_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_interleave_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_repeat_interleave_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_as_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_reshape_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize__cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize__cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize_as__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize_as__cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_resize_as__cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_conj_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_conj_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_conj_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_conj_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_resolve_neg_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_roll_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rot90_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_decimals_neg_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_round_decimals_neg_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsqrt_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_rsub_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scalar_tensor_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_add_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_scatter_reduce_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_searchsorted_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_searchsorted_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_scatter_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_select_scatter_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_short_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_short_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sigmoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sigmoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sign_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sign_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sign_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_exponential_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_general_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_general_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_hann_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_signal_windows_nuttall_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinc_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_sinh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_slice_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_softmax_with_dtype_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sort_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_sparse_mm_reduce_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_airy_ai_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_j1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_bessel_y1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_t_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_t_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_u_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_v_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_w_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_chebyshev_polynomial_w_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_entr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_hermite_polynomial_h_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i0e_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i0e_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i0e_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_i1e_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_laguerre_polynomial_l_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_laguerre_polynomial_l_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_laguerre_polynomial_l_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_legendre_polynomial_p_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_legendre_polynomial_p_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_legendre_polynomial_p_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_i1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_modified_bessel_k1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtr_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtr_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtri_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtri_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_ndtri_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_scaled_modified_bessel_k1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_t_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_u_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_spherical_bessel_j0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_xlog1py_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_special_zeta_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_list_args_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_list_args_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_split_with_sizes_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sqrt_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_square_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_square_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_squeeze_multiple_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_stack_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_mean_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_std_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_stft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_stft_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sub_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_to_size_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_sum_to_size_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_svd_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_t_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_along_dim_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_along_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_along_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_take_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_tanh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensor_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensordot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensordot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tensordot_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_to_sparse_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_topk_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_topk_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch__scaled_mm_cpu_float8_e5m2, test/test_meta.py::TestMetaCPU::test_meta_inplace_torch_ops_aten__safe_softmax_default_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_trace_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_trace_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_trace_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_transpose_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapezoid_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapezoid_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapz_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapz_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_trapz_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_triangular_solve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_triangular_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_tril_indices_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_triu_indices_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_true_divide_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_true_divide_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_true_divide_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_true_divide_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_trunc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_trunc_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unbind_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unflatten_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unfold_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_uniform_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_consecutive_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_consecutive_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_consecutive_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_consecutive_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unique_cpu_uint16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unravel_index_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_chunk_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_split_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsafe_split_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_unsqueeze_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_unbiased_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_var_unbiased_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_vdot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_vdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_vdot_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_vdot_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_as_real_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_view_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_vsplit_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_vstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_inplace_where_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_inplace_xlogy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_xlogy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_inplace_zero__cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_zero__cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_inplace_zero__cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_inplace_zeros_like_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_H_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_T_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace___getitem___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace___getitem___cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace___getitem___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace___getitem___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace___getitem___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace___radd___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace___radd___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace___radd___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace___radd___cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rand___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rand___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rand___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rdiv___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace___rdiv___cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rdiv___cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace___rdiv___cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rdiv___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmatmul___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmatmul___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmul___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace___rmul___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace___ror___cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace___rpow___cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace___rpow___cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rpow___cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace___rsub___cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace___rxor___cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace___rxor___cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__batch_norm_with_update_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__batch_norm_with_update_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__batch_norm_with_update_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__chunk_cat_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__chunk_cat_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__chunk_cat_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_abs_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_abs_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_abs_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_acos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_acos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_add_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_add_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcdiv_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcmul_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcmul_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_addcmul_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_asin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_asin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_asin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_asin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_atan_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_ceil_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_ceil_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_ceil_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_ceil_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_min_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_min_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_min_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_clamp_min_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cos_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cos_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cos_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cos_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_cosh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_div_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erf_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erf_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erfc_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_erfc_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_exp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_expm1_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_expm1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_expm1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_expm1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_expm1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_floor_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_floor_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_floor_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_frac_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lerp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lgamma_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_lgamma_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log10_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log10_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log1p_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_log_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_maximum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_minimum_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_minimum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_minimum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_minimum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_mul_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_neg_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_neg_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_pow_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_pow_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_pow_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_pow_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_reciprocal_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_round_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_rsqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_rsqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_rsqrt_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sign_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sinh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sqrt_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sqrt_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sqrt_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sub_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_sub_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tan_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_tanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_trunc_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_zero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace__foreach_zero_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__segment_reduce_offsets_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__segment_reduce_offsets_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__softmax_backward_data_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_put_accumulate_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace__unsafe_masked_index_put_accumulate_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_abs_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_abs_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_abs_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_acos_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_acos_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_acos_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_acos_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_acosh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_acosh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_acosh_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_acosh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcdiv_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcmul_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_addcmul_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmm_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmv_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_addmv_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_addr_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_addr_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_alias_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_all_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_allclose_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_allclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_amax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_amax_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_amin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_amin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_aminmax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_aminmax_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_aminmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_aminmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_angle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_angle_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_angle_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_angle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_any_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_arange_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_arange_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_arange_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_arange_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_argsort_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_argsort_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_partial_views_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_partial_views_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_partial_views_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_as_strided_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_asin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_asin_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_asin_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_asinh_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_asinh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atan_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atanh_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_atanh_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_1d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_2d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_3d_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_3d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_atleast_3d_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_baddbmm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_baddbmm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_baddbmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bernoulli_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bernoulli_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bfloat16_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bfloat16_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bincount_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_and_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_and_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_left_shift_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_left_shift_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_or_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_or_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_right_shift_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bitwise_right_shift_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_block_diag_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_bmm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bmm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bmm_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bool_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_to_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_to_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_to_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_to_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_broadcast_to_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bucketize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_bucketize_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_bucketize_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_byte_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cartesian_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_cat_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cdouble_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ceil_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cfloat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_chalf_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_char_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cholesky_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_chunk_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_max_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_max_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_max_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_max_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_min_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_clamp_min_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_clone_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_combinations_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_complex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_conj_physical_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_constant_pad_nd_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_contiguous_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_copysign_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_copysign_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_copysign_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_corrcoef_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_corrcoef_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cos_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_count_nonzero_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_count_nonzero_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_count_nonzero_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_count_nonzero_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cov_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cross_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_cross_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cross_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummax_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummax_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cummin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumprod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumprod_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumprod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumprod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_cumulative_trapezoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_deg2rad_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_deg2rad_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diag_embed_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagflat_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diagonal_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_diff_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_digamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_digamma_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_floor_rounding_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_floor_rounding_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_no_rounding_mode_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_no_rounding_mode_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_no_rounding_mode_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_no_rounding_mode_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_trunc_rounding_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_trunc_rounding_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_div_trunc_rounding_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_dot_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_double_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_dsplit_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dsplit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_dsplit_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_dsplit_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_dstack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_einsum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_like_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_permuted_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_permuted_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_permuted_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_permuted_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_empty_strided_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_eq_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_erf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_erf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_erf_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfc_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfinv_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_erfinv_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_exp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_as_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_expand_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_expm1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_exponential_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_exponential_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_eye_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftshift_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftshift_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftshift_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftshift_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftshift_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftshift_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_fftshift_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfftn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfftn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_hfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftn_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ifftshift_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_ihfftn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft2_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfft_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_irfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft2_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft2_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfft_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfftn_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fft_rfftn_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fill_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fill_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fill_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fill_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_flatten_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_flatten_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_flatten_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_flatten_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_flatten_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_flip_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_flip_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_flip_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_flip_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_flip_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fliplr_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_fliplr_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fliplr_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_flipud_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_flipud_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_flipud_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_flipud_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_float_power_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_divide_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_floor_divide_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmax_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_fmod_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_frexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_full_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_gather_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_gather_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_gather_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_gather_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ge_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_geometric_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_geqrf_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_geqrf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_gradient_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_gradient_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_gradient_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_grid_sampler_2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_half_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_hash_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_hash_tensor_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_hash_tensor_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_heaviside_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_histogram_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_histogramdd_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_hsplit_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_hsplit_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_hsplit_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_hsplit_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_hstack_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_hstack_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_hstack_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_hstack_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_hstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_igamma_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_add_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_copy_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_fill_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_fill_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_put_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_put_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amax_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amin_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_amin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_reduce_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_index_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_inner_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_int_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isclose_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isfinite_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isfinite_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isin_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isinf_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_isnan_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isneginf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isneginf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isneginf_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isneginf_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_isposinf_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_isposinf_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_isposinf_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_isreal_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_istft_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_item_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_2inputs_2outputs_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_2inputs_2outputs_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_2inputs_2outputs_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_4inputs_with_extra_args_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_binary_return_by_ref_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_unary_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_jiterator_unary_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_kron_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_kron_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ldexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ldexp_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_le_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_le_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_lerp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_lgamma_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cholesky_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cholesky_ex_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cond_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_cross_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_diagonal_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eigvalsh_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_eigvalsh_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_householder_product_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_inv_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_inv_ex_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_factor_ex_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_factor_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_ldl_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lstsq_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lstsq_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lstsq_grad_oriented_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_factor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_factor_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_lu_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_norm_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_power_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_matrix_rank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_multi_dot_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_multi_dot_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_pinv_singular_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_slogdet_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_ex_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_solve_triangular_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_tensorsolve_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vander_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vector_norm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linalg_vector_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_tensor_overload_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_tensor_overload_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_linspace_tensor_overload_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log1p_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_log1p_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log2_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_log2_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log2_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_log2_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_log_softmax_with_dtype_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_logcumsumexp_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logcumsumexp_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_logcumsumexp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logdet_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logdet_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_and_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_not_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_or_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_logical_xor_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logit_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_logit_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_logspace_tensor_overload_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_logsumexp_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_long_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_long_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_long_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_long_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_long_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_lu_unpack_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mH_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mH_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mT_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_amin_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmax_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmin_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_argmin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumprod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumprod_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumprod_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumprod_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumsum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumsum_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumsum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_cumsum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_fill_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_log_softmax_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logaddexp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logaddexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_logsumexp_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_normalize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_scatter_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_select_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_std_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_std_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_sum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_var_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_var_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_var_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_masked_var_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_matmul_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_matmul_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_matrix_exp_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_matrix_exp_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_binary_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_binary_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_binary_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_pool2d_with_indices_backward_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_no_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_no_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_with_dim_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_with_dim_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_with_dim_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_with_dim_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_max_reduction_with_dim_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_maximum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_median_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_median_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_median_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_median_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_list_of_tensors_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_list_of_tensors_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_variadic_tensors_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_meshgrid_variadic_tensors_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_min_binary_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_minimum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_minimum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_minimum_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_minimum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mm_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mm_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_movedim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_msort_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_msort_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mul_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mv_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_3_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nan_to_num_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nan_to_num_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nanmedian_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nansum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nansum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nansum_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_narrow_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_batch_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_dropout_backward_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_layer_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_native_layer_norm_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_neg_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_empty_strided_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_full_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_ones_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_ones_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_ones_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_ones_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_zeros_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_zeros_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_new_zeros_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_avg_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_avg_pool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_max_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_adaptive_max_pool2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_bilinear_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_bilinear_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_binary_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_binary_cross_entropy_with_logits_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_celu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_celu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_celu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_channel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_channel_shuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_channel_shuffle_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv2d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv2d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose1d_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose2d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose3d_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_conv_transpose3d_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_embedding_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cosine_similarity_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cross_entropy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_cross_entropy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_ctc_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_dropout3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_dropout_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_embedding_bag_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_embedding_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_embedding_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_with_train_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_feature_alpha_dropout_without_train_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_fractional_max_pool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_fractional_max_pool3d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_fractional_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_gaussian_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_glu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_glu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_grid_sample_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_group_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardswish_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardswish_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardtanh_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardtanh_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardtanh_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_hardtanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_instance_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_instance_norm_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_area_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_area_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_bicubic_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_bilinear_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_linear_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_nearest-exact_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_interpolate_nearest_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_kl_div_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_kl_div_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_leaky_relu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_leaky_relu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_leaky_relu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_linear_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_linear_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_linear_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_local_response_norm_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_local_response_norm_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_logsigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_margin_ranking_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_margin_ranking_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool2d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool2d_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_pool3d_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool1d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool1d_grad_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool2d_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool3d_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool3d_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_max_unpool3d_grad_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_mish_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_multi_head_attention_forward_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_multilabel_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_nll_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_normalize_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_normalize_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_circular_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_circular_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_constant_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_constant_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_constant_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_reflect_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_reflect_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_reflect_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_negative_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_negative_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pad_replicate_negative_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pairwise_distance_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pairwise_distance_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pairwise_distance_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pairwise_distance_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_shuffle_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_shuffle_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_shuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_unshuffle_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_unshuffle_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_pixel_unshuffle_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_poisson_nll_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_poisson_nll_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_prelu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_relu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_rms_norm_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_rrelu_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_silu_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_smooth_l1_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_soft_margin_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_soft_margin_loss_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_with_dtype_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softmin_with_dtype_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softplus_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softplus_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softplus_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softshrink_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_softsign_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_tanhshrink_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_threshold_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_triplet_margin_with_distance_loss_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_unfold_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_unfold_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_unfold_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_upsample_bilinear_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_upsample_bilinear_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_upsample_nearest_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_upsample_nearest_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_nn_functional_upsample_nearest_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_nonzero_static_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_fro_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_fro_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_norm_inf_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_normal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_normal_in_place_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_normal_number_mean_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_normal_number_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_like_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ones_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_outer_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_permute_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_pinverse_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_0_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_1_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_1_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_2_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_2_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_2_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_2_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_3_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_4_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_4_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_4_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_polygamma_polygamma_n_4_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_positive_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_positive_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_positive_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_pow_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_pow_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_pow_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_pow_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_prod_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_prod_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_prod_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_put_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_qr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rad2deg_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rand_like_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rand_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_like_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_randint_like_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_randn_like_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_ravel_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_real_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_real_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_real_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_real_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_real_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_reciprocal_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_reciprocal_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_reciprocal_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_remainder_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_remainder_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_renorm_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_repeat_interleave_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_as_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_as_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_as_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_as_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_reshape_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_resize__cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_conj_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_conj_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_conj_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_resolve_neg_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_roll_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_rot90_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_decimals_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_round_decimals_neg_3_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsqrt_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsub_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsub_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsub_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsub_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_rsub_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scalar_tensor_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_add_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amin_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_amin_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_mean_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_mean_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_prod_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_sum_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_scatter_reduce_sum_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_scatter_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_select_scatter_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sgn_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sgn_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sgn_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_short_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sigmoid_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_sigmoid_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sigmoid_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sigmoid_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sigmoid_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sign_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sign_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sign_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_general_cosine_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_general_hamming_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_hamming_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_signal_windows_kaiser_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_signbit_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_signbit_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sin_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sin_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sin_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sinc_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_scatter_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_scatter_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_slice_scatter_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sort_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sort_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sparse_mm_reduce_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_airy_ai_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_airy_ai_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_airy_ai_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_airy_ai_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_j1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y0_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_bessel_y0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_t_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_t_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_w_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_chebyshev_polynomial_w_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_entr_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_erfcx_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_h_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_he_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_hermite_polynomial_he_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1e_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_i1e_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_legendre_polynomial_p_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_legendre_polynomial_p_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i0_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i1_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_i1_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k0_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k1_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_modified_bessel_k1_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtr_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_ndtr_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_polygamma_special_polygamma_n_0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k0_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k1_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_scaled_modified_bessel_k1_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_shifted_chebyshev_polynomial_w_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_spherical_bessel_j0_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_spherical_bessel_j0_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_spherical_bessel_j0_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_special_xlog1py_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_list_args_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_copy_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_copy_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_copy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_split_with_sizes_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sqrt_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_sqrt_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sqrt_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_square_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_squeeze_multiple_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_stack_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_std_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sub_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sub_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sub_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_to_size_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_to_size_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_sum_to_size_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_svd_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_svd_lowrank_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_t_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_along_dim_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_along_dim_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_take_along_dim_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_tan_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_tan_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tanh_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensor_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensor_split_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensordot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tensordot_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tile_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_sparse_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_to_sparse_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_topk_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_topk_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch__scaled_mm_cpu_float8_e4m3fn, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch__scaled_mm_cpu_float8_e4m3fnuz, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_torch_ops_aten__safe_softmax_default_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_trace_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_trace_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_transpose_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_trapezoid_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_triangular_solve_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_triangular_solve_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_tril_indices_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_triu_indices_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_true_divide_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_trunc_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unbind_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unflatten_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unflatten_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_uniform_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_uniform_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_consecutive_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_consecutive_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_uint64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unique_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_chunk_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsafe_split_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_copy_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_unsqueeze_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_mean_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_mean_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_mean_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_mean_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_mean_unbiased_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_var_unbiased_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vdot_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vdot_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_vdot_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_vdot_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_vdot_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_vdot_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_vdot_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_as_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_copy_cpu_bfloat16, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_copy_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_copy_cpu_float16, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_copy_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_complex64, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_view_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_vsplit_cpu_int64, test/test_meta.py::TestMetaCPU::test_meta_outplace_vstack_cpu_int8, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_float32, test/test_meta.py::TestMetaCPU::test_meta_outplace_where_cpu_int32, test/test_meta.py::TestMetaCPU::test_meta_outplace_xlogy_cpu_uint8, test/test_meta.py::TestMetaCPU::test_meta_outplace_zero__cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_cpu_complex128, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_cpu_complex32, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_cpu_float64, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_cpu_int16, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_bool, test/test_meta.py::TestMetaCPU::test_meta_outplace_zeros_like_cpu_complex64, test/test_meta.py::TestMetaCPU::test_nonzero_cpu 2025-08-14T22:56:06.0059257Z 2025-08-14T22:56:11.5944706Z Running test_decomp 6/17 ... [2025-08-14 22:56:11.592813] 2025-08-14T22:56:11.5945727Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:56:11.5954028Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=6', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:56:11.594529] 2025-08-14T22:57:44.0766932Z 2025-08-14T22:57:44.0768198Z test_decomp 1/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_1.17_4c71d3cdb99026c4_.log 2025-08-14T22:57:44.0937484Z Running 514 items in this shard: test/test_decomp.py::TestDecompCPU::test_cat_single_input_cpu, test/test_decomp.py::TestDecompCPU::test_comprehensive_H_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive___getitem___cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive___getitem___cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rdiv___cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmatmul___cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive___ror___cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rpow___cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rpow___cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive___rpow___cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive__chunk_cat_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive__softmax_backward_data_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_addbmm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcmul_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcmul_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcmul_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmv_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_all_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_all_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_allclose_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_amax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_amin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_amin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_amin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_aminmax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_angle_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmax_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_argsort_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argsort_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_argwhere_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_argwhere_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_scatter_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_scatter_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_scatter_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_asinh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_asinh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_baddbmm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bernoulli_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_and_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_not_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_or_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_xor_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_xor_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bmm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ceil_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ceil_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_chalf_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_inverse_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_min_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_corrcoef_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cos_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_count_nonzero_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cov_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumsum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumulative_trapezoid_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_embed_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_einsum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_permuted_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_equal_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_equal_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_erf_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_erf_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfinv_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftshift_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfftn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_flip_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmax_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmod_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_geqrf_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_geqrf_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_histc_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_histogramdd_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_hstack_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_select_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isposinf_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_4inputs_with_extra_args_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_unary_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cholesky_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eigvals_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eigvals_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_householder_product_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_inv_ex_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lstsq_grad_oriented_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_multi_dot_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_qr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_tensorsolve_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vander_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_log10_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logaddexp2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logaddexp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_lu_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumprod_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumprod_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_median_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_scatter_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_var_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_var_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_var_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_no_dim_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_no_dim_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_with_dim_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_with_dim_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_maximum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_binary_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_minimum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mm_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_multinomial_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nan_to_num_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanmedian_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_strided_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_zeros_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_avg_pool2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_bilinear_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_celu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv2d_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_similarity_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_elu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_without_train_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_group_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardshrink_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardswish_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_l1_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_layer_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_linear_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_local_response_norm_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool3d_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool1d_grad_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool2d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_nll_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_normalize_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_circular_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_constant_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_reflect_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_reflect_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_reflect_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_negative_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_negative_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pairwise_distance_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_shuffle_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_shuffle_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_shuffle_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_with_dtype_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_with_dtype_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softshrink_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_tanhshrink_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_tanhshrink_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_threshold_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_threshold_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_1_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_1_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_3_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_pow_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_prod_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_prod_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rad2deg_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_reciprocal_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_renorm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_renorm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_renorm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_conj_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_conj_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_roll_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_rot90_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_rot90_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_decimals_neg_3_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amax_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_searchsorted_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_scatter_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_short_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_cosine_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_nuttall_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinc_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sort_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sparse_mm_reduce_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y0_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_u_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_u_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_w_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_w_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_entr_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_he_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_log_ndtr_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_log_ndtr_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i0_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i0_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i1_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k0_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtri_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtri_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_multiple_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_multiple_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_svd_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_sparse_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_sparse_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_topk_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_trace_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_trace_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapezoid_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapezoid_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapezoid_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_indices_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unravel_index_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_mean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_unbiased_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_vdot_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_complex_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_like_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_like_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_acosh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_acosh_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_addcdiv_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_all_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_amin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_amin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_amin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_any_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_any_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_arange_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_asin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_asinh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_atan_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_atan_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_baddbmm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_not_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_or_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_right_shift_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_clamp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_clamp_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_clamp_max_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_clone_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_complex_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_bernoulli_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_block_diag_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_linalg_cross_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_std_unbiased_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_unsafe_split_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cos_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_cos_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_count_nonzero_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_count_nonzero_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_diag_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_scatter_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_scatter_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_div_no_rounding_mode_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_exp2_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_exp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_expm1_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfftn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_floor_divide_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_geometric_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_i0_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_i0_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_index_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_item_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_item_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_linalg_vector_norm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_log2_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_log_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_logical_not_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_logspace_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_maximum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_maximum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_mean_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_list_of_tensors_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_1_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_5_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_native_batch_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_neg_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_neg_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_strided_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_binary_cross_entropy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_gelu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_glu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardsigmoid_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_leaky_relu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_logsigmoid_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_mse_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu6_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_norm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_norm_fro_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_rad2deg_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_rot90_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_rot90_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_round_decimals_3_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_rsqrt_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_select_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_select_scatter_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_sigmoid_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_signbit_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_special_erfcx_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_special_i0e_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_special_i1_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_split_list_args_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_std_unbiased_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_take_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_trace_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_var_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_view_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_bool, test/test_decomp.py::DecompOneOffTestsCPU::test_threshold_backward_dtype_cpu 2025-08-14T22:57:44.1106615Z 2025-08-14T22:57:49.8559482Z Running test_decomp 7/17 ... [2025-08-14 22:57:49.848322] 2025-08-14T22:57:49.8560030Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T22:57:49.8566546Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=7', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 22:57:49.848322] 2025-08-14T23:05:32.2094751Z 2025-08-14T23:05:32.2095676Z test_decomp 4/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_4.17_ef879dca9453d36f_.log 2025-08-14T23:05:32.2327494Z Running 531 items in this shard: test/test_decomp.py::TestDecompCPU::test_comprehensive_H_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive___getitem___cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive___getitem___cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive___getitem___cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmul___cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive___ror___cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive__batch_norm_with_update_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive__chunk_cat_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive__softmax_backward_data_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_acos_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_acosh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addbmm_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcmul_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_allclose_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_any_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_any_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_arange_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_scatter_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_asinh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atanh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atanh_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_not_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cauchy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdouble_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ceil_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_chalf_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_chalf_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_column_stack_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_column_stack_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_count_nonzero_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cross_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummax_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumulative_trapezoid_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_deg2rad_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_embed_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_embed_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_embed_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_digamma_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_floor_rounding_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_dot_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dot_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dot_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_einsum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_equal_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_equal_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_erf_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfinv_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_as_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_float8_e4m3fn, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft2_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftshift_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftshift_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftn_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftn_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfftn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fliplr_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_divide_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_frexp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_gcd_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_ge_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ge_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_gradient_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_hash_tensor_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_hash_tensor_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_hash_tensor_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_histc_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_hstack_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_hstack_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_hypot_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_igammac_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_fill_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_select_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_inner_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_inner_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isclose_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isclose_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_2inputs_2outputs_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_unary_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_lerp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cholesky_ex_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cond_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cross_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cross_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eigh_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eigvalsh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_ldl_solve_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lstsq_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lstsq_grad_oriented_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_factor_ex_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_solve_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_rank_hermitian_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_norm_subgradients_at_zero_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_qr_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_svd_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vander_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log10_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_normal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_normal_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_or_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logit_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logsumexp_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_logsumexp_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_long_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_long_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_lu_solve_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mH_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mH_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmax_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumprod_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_softmax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_matmul_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_matrix_exp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_binary_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_median_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_with_dim_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_with_dim_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_minimum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mm_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mode_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_msort_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_msort_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mv_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_mv_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nan_to_num_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanmedian_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nansum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ne_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_strided_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_strided_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nextafter_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_max_pool3d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_batch_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_binary_cross_entropy_with_logits_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_channel_shuffle_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv3d_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose2d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_dropout3d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_gaussian_nll_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_gelu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardsigmoid_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardtanh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hinge_embedding_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_area_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_bicubic_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_bicubic_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_bilinear_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_linear_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_kl_div_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_l1_loss_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_linear_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_linear_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_margin_ranking_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_margin_ranking_loss_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool1d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_mish_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_nll_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_normalize_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_circular_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_constant_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_negative_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_shuffle_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_poisson_nll_loss_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_prelu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_with_dtype_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softplus_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_tanhshrink_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_upsample_bilinear_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_pca_lowrank_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_pinverse_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_0_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_3_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_4_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_positive_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_pow_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_pow_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_prod_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_put_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_put_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rand_like_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_reciprocal_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_reciprocal_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_conj_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_roll_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_roll_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rot90_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_rot90_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_decimals_3_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_sum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_short_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_short_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_signbit_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sin_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_sin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_scatter_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_with_dtype_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sort_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j0_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j1_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y1_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_t_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_v_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i0e_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_legendre_polynomial_p_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_legendre_polynomial_p_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k0_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k1_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtr_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtr_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_t_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_to_size_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_svd_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_tile_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_sparse_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_sparse_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_sparse_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_topk_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch_ops_aten__safe_softmax_default_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapz_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapz_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_true_divide_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_true_divide_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_true_divide_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_consecutive_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_cpu_uint16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unravel_index_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_chunk_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_unbiased_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_vdot_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_vdot_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_xlogy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_like_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick__native_batch_norm_legit_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick__softmax_backward_data_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_addcmul_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_addmm_decomposed_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_amin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_aminmax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_asin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_asinh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_asinh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_asinh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_atan_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_bernoulli_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_clamp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_clamp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_clamp_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_constant_pad_nd_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_copysign_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_copysign_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_copysign_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_mv_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_special_xlog1py_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_split_list_args_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_std_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cos_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_cumprod_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_deg2rad_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_scatter_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_div_floor_rounding_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_div_no_rounding_mode_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_div_no_rounding_mode_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_div_trunc_rounding_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_erfc_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfftn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifftn_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfftn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfftn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfftn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfftn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_floor_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fmax_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fmod_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_fmod_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_frac_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_ge_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_ge_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_geometric_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_grid_sampler_2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_grid_sampler_2d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_heaviside_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_isneginf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_isposinf_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_item_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_lgamma_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_linalg_cross_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_linalg_vector_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_linspace_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_log2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_logical_and_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_logical_and_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_logical_and_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_logical_xor_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_logit_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_logspace_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_logspace_tensor_overload_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_logspace_tensor_overload_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_mv_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_mv_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_nansum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nansum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_nansum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_native_batch_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_native_layer_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_ne_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_ne_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_strided_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_embedding_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_glu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardsigmoid_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool2d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool2d_grad_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_prelu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu6_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_softplus_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_norm_fro_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_norm_inf_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_normal_in_place_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_normal_number_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_prod_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_prod_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_rad2deg_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_randn_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_randn_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_repeat_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_repeat_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_repeat_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_rot90_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_round_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sin_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_sin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtr_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtr_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtr_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_special_zeta_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_special_zeta_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_split_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_std_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_std_unbiased_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_std_unbiased_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_std_unbiased_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_take_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_take_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_take_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_vdot_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_xlogy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_xlogy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_zeros_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_int32, test/test_decomp.py::DecompOneOffTestsCPU::test_sdpa_nn_functional_scaled_dot_product_attention_cpu_bfloat16, test/test_decomp.py::DecompOneOffTestsCPU::test_sdpa_nn_functional_scaled_dot_product_attention_cpu_float16 2025-08-14T23:05:32.2532196Z 2025-08-14T23:05:38.4180839Z Running test_decomp 11/17 ... [2025-08-14 23:05:38.417226] 2025-08-14T23:05:38.4181685Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:05:38.4189674Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=11', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:05:38.418389] 2025-08-14T23:05:45.5631483Z 2025-08-14T23:05:45.5632639Z test_decomp 6/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_6.17_3b212cbaa49b7646_.log 2025-08-14T23:05:45.5911367Z Running 518 items in this shard: test/test_decomp.py::TestDecompCPU::test_comprehensive_H_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_H_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rdiv___cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmatmul___cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmul___cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive___ror___cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive___rpow___cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive__batch_norm_with_update_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive__chunk_cat_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive__segment_reduce_lengths_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_put_accumulate_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_put_accumulate_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_acos_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addbmm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_decomposed_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmv_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_all_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_all_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_amax_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_any_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_partial_views_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_scatter_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_asinh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_asinh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atanh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_baddbmm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_not_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_or_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_right_shift_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bmm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdouble_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_min_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_combinations_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_complex_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_constant_pad_nd_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cos_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_count_nonzero_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_count_nonzero_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cov_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cross_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumprod_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumprod_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_embed_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_digamma_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_trunc_rounding_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_trunc_rounding_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dot_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfinv_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_expm1_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_exponential_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftn_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfftn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftn_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfftn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fliplr_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fliplr_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmin_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmod_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_gcd_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_geometric_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_gradient_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_hash_tensor_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_igammac_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_mean_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_mean_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_isclose_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isclose_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_2inputs_2outputs_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_4inputs_with_extra_args_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_lgamma_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_lgamma_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_ldl_factor_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_power_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_rank_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_norm_subgradients_at_zero_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_ex_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_tensorinv_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_tensorsolve_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_tensor_overload_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_tensor_overload_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_normal_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logaddexp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_tensor_overload_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logsumexp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_long_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_lt_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mH_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumsum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumsum_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumsum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumsum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_log_softmax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logsumexp_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_normalize_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_minimum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_minimum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ne_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool1d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_channel_shuffle_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose3d_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_embedding_loss_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_dropout2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_embedding_bag_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_without_train_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_without_train_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_fractional_max_pool2d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_gaussian_nll_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_gelu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_glu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_grid_sample_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardtanh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_huber_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_linear_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_margin_ranking_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool2d_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool3d_grad_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool3d_grad_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_mse_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_multilabel_margin_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_circular_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_reflect_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_negative_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pairwise_distance_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_poisson_nll_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_poisson_nll_loss_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu6_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_selu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_soft_margin_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softplus_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_tanhshrink_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_threshold_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_loss_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_unfold_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_upsample_bilinear_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_upsample_nearest_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_fro_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_inf_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_like_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_pinverse_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_1_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_1_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_3_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_pow_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_put_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_like_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_renorm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_interleave_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize__cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_conj_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_conj_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_roll_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_roll_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rot90_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rot90_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_mean_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_searchsorted_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sign_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_sign_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sign_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sign_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinc_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_with_dtype_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sort_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sort_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j1_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_t_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_v_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_v_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_w_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_laguerre_polynomial_l_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_log_ndtr_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i0_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k1_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtri_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtri_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_spherical_bessel_j0_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_mean_unbiased_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_unbiased_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_stft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_svd_lowrank_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_sparse_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_trace_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapezoid_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapezoid_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapz_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_true_divide_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trunc_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_vdot_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_acos_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_acosh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_all_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_amin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_atan_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_atan_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_left_shift_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_right_shift_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_clamp_max_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_clamp_min_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_clone_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_constant_pad_nd_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_clamp_max_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_nn_functional_max_unpool2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_rad2deg_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_rot90_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_sinc_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cumprod_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_deg2rad_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_div_floor_rounding_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_div_floor_rounding_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_div_trunc_rounding_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_erf_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_erfinv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_expm1_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_fftn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_fftn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfftn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_floor_divide_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_frexp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_heaviside_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_i0_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_isin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_isposinf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_item_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_linspace_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_logical_not_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_logical_not_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_logical_not_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_logical_xor_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_logit_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_lt_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_list_of_tensors_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_list_of_tensors_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_variadic_tensors_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_variadic_tensors_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_variadic_tensors_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_minimum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_mul_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_nan_to_num_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nansum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_native_dropout_backward_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_native_dropout_backward_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_native_dropout_backward_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_strided_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_embedding_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardsigmoid_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool3d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu6_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_silu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_unfold_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_unfold_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_norm_inf_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_norm_inf_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_normal_number_mean_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_pow_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_prod_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_randn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_renorm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_rsqrt_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_rsub_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_rsub_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_slice_scatter_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_i1e_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_split_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_split_list_args_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_split_list_args_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_take_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_trace_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_trunc_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_unfold_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_var_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_var_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_unbiased_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_view_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_zero__cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_zero__cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_LSTM_train_mode_cpu_float32, test/test_decomp.py::DecompOneOffTestsCPU::test_contiguous_log_softmax_cpu, test/test_decomp.py::DecompOneOffTestsCPU::test_sdpa_nn_functional_scaled_dot_product_attention_cpu_float32 2025-08-14T23:05:45.6148642Z 2025-08-14T23:05:51.1252755Z Running test_decomp 13/17 ... [2025-08-14 23:05:51.116609] 2025-08-14T23:05:51.1253220Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:05:51.1259657Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=13', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:05:51.116609] 2025-08-14T23:09:05.9744327Z 2025-08-14T23:09:05.9745531Z test_decomp 7/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_7.17_9a50f0ca91d5b907_.log 2025-08-14T23:09:06.0011691Z Running 540 items in this shard: test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rand___cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive___rpow___cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_acosh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_acosh_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_acosh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addcdiv_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmv_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_aminmax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_aminmax_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_aminmax_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_argwhere_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_partial_views_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_asin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_bernoulli_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_bincount_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_right_shift_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_xor_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_to_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cauchy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cfloat_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_chalf_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_min_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_complex_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_constant_pad_nd_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_copysign_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_copysign_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_corrcoef_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cross_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumprod_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumsum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumsum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumulative_trapezoid_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumulative_trapezoid_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_embed_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dist_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dist_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_trunc_rounding_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dot_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_double_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_dsplit_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_like_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_permuted_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfinv_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft2_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfftn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfftn_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfftn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_ge_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_geometric_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_geqrf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_grid_sampler_2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_gt_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_hash_tensor_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_hstack_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_i0_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_igamma_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_imag_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_prod_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_inner_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isfinite_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isnan_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isneginf_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_2inputs_2outputs_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_kron_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_det_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_inv_ex_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_rank_hermitian_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_multi_dot_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_triangular_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_svd_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_tensorinv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vecdot_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_tensor_overload_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log10_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log1p_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_softmax_with_dtype_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_or_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_xor_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_tensor_overload_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_lt_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_mean_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_median_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_select_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_std_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_binary_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_maximum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_no_dim_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_minimum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_5_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nansum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_layer_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_zeros_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_binary_cross_entropy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_channel_shuffle_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose3d_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_dropout_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_gelu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardshrink_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardsigmoid_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardtanh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_margin_ranking_loss_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool2d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool2d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool2d_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool2d_grad_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_normalize_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_circular_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_constant_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_reflect_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_negative_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu6_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_rms_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_silu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_smooth_l1_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softshrink_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softsign_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_threshold_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_with_distance_loss_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_upsample_nearest_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_nuc_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_in_place_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_pca_lowrank_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_polar_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_0_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_2_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_positive_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_pow_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_rad2deg_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_renorm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rot90_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_rot90_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_decimals_0_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_prod_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_sum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_sum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sign_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_gaussian_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signbit_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinc_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sparse_mm_reduce_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j0_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j1_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y0_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_w_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_entr_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_erfcx_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_erfcx_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_h_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_h_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_he_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i0e_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1e_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1e_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i0_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k0_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k0_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtr_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtri_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_xlog1py_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_zeta_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_zeta_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_multiple_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_along_dim_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensor_split_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_topk_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch_ops_aten__safe_softmax_default_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_trace_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapz_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_triangular_solve_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_triu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trunc_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_trunc_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_consecutive_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_chunk_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick__softmax_backward_data_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_amax_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_aminmax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_any_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_atan_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_baddbmm_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_bernoulli_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_not_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_ceil_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_ceil_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_clamp_max_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_diag_embed_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_dot_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_logaddexp2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_special_entr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_t_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_count_nonzero_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_cumprod_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_deg2rad_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_scatter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_dist_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_div_trunc_rounding_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_dot_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_erf_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_erf_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_erf_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_exp2_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_exponential_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_float8_e5m2fnuz, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fmin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_fmin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_gcd_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_geometric_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_gt_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_hypot_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_i0_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_igamma_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_igamma_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_igammac_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_index_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_isnan_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_isneginf_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_le_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_linspace_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_linspace_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_logical_and_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_logspace_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_list_of_tensors_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_1_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_5_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_nan_to_num_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nan_to_num_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_native_batch_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_native_dropout_backward_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_neg_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_new_zeros_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardshrink_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool3d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_max_unpool3d_grad_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_mish_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu6_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_softshrink_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_normal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_repeat_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_repeat_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_repeat_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_rot90_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_round_decimals_0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_rsub_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_rsub_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_sign_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_signbit_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_slice_scatter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_special_i0e_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_special_i1e_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_special_i1e_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_special_i1e_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtr_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtri_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_special_xlog1py_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_special_xlog1py_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_special_zeta_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_sub_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_t_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_trace_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_unbind_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_var_mean_unbiased_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_var_unbiased_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_var_unbiased_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_vdot_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_view_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_view_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_zeros_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_zeros_like_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_RNN_train_mode_cpu_float64, test/test_decomp.py::DecompOneOffTestsCPU::test_native_layer_norm_cpu_decomp_cpu 2025-08-14T23:09:06.0257935Z 2025-08-14T23:09:12.2612806Z Running test_decomp 14/17 ... [2025-08-14 23:09:12.260740] 2025-08-14T23:09:12.2613507Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:09:12.2623510Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_decomp.py', '-m', 'not serial', '--shard-id=14', '--num-shards=17', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:09:12.261977] 2025-08-14T23:12:55.2317271Z 2025-08-14T23:12:55.2318482Z test_decomp 11/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_11.17_69af729502efe148_.log 2025-08-14T23:12:55.2550801Z Running 490 items in this shard: test/test_decomp.py::TestDecompCPU::test_broadcasting_index_copy_cpu, test/test_decomp.py::TestDecompCPU::test_comprehensive_H_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmatmul___cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmod___cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmod___cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive__chunk_cat_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive__chunk_cat_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive__native_batch_norm_legit_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_put_accumulate_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmv_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_alias_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_all_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_all_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_amin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_angle_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_angle_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_arange_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_argsort_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_argsort_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_asinh_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_baddbmm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_baddbmm_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bincount_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bmm_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_broadcast_tensors_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bucketize_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_chalf_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_char_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_inverse_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_inverse_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_max_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_column_stack_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_column_stack_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_column_stack_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_corrcoef_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_count_nonzero_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_count_nonzero_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cov_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumsum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cumulative_trapezoid_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_deg2rad_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagflat_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_digamma_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dist_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dot_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dot_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_strided_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_erf_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_erf_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfc_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_as_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fft2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftshift_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftshift_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfft_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfftn_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft2_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fill_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_flatten_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fliplr_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_divide_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_divide_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_gcd_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_gradient_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_grid_sampler_2d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_gt_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_gt_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_hstack_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_i0_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_igammac_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_prod_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_prod_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_prod_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_select_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_isclose_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_2inputs_2outputs_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_kron_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_kthvalue_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_lgamma_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cholesky_ex_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cholesky_ex_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_ldl_factor_ex_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_ldl_solve_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_factor_ex_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_power_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_singular_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vander_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log1p_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logcumsumexp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logcumsumexp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logdet_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_or_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logsumexp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logsumexp_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_long_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_long_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_long_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_lt_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_lu_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_lu_solve_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mH_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mH_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumprod_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logsumexp_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logsumexp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_scatter_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_softmin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_var_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_matmul_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_binary_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_pool2d_with_indices_backward_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_mm_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_msort_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_msort_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mv_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanmedian_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nansum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_dropout_backward_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ne_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_ones_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_zeros_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_zeros_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_max_pool1d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_max_pool2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool2d_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_avg_pool3d_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_bilinear_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_celu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv2d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv3d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_embedding_loss_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_with_train_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_fractional_max_pool3d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardshrink_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_huber_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_bilinear_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_nearest_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_nearest_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_trilinear_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_l1_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_linear_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_local_response_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_logsigmoid_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool1d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool2d_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_multi_margin_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_constant_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_constant_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_reflect_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_negative_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pairwise_distance_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pairwise_distance_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_shuffle_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_unshuffle_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu6_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu6_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_rms_norm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_rms_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_rrelu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_silu_complex_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_silu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_soft_margin_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_with_dtype_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_with_dtype_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softsign_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_threshold_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_unfold_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_nuc_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_positive_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_prod_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_put_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_qr_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_qr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rand_like_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_interleave_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_interleave_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize_as__cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_conj_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_roll_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsub_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_add_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_prod_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_prod_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_sum_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_sum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sgn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sigmoid_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_bartlett_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_exponential_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_hamming_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_hann_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_scatter_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_with_dtype_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j0_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_j1_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_legendre_polynomial_p_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_log_ndtr_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtr_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtri_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_scaled_modified_bessel_k1_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_w_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_spherical_bessel_j0_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_xlog1py_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_zeta_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_zeta_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tensordot_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_topk_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_true_divide_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_uniform_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_consecutive_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_consecutive_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unique_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_chunk_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_chunk_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_split_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_mean_unbiased_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_vdot_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_vdot_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick__chunk_cat_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick__upsample_bilinear2d_aa_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick__upsample_bilinear2d_aa_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_addcdiv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_addcmul_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_addmm_decomposed_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_amin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_any_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_arange_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_arange_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_atanh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_and_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_and_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_right_shift_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_cauchy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_clamp_min_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_complex_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_copysign_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_index_fill_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_vdot_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cos_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_cos_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_cumprod_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_diag_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_digamma_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_digamma_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_dot_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_dot_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_dot_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_erf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_erfinv_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_erfinv_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfftn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfftn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_flip_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_floor_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_floor_divide_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fmax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_gt_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_heaviside_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_i0_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_index_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_index_fill_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_index_select_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_isnan_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_lgamma_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_linalg_cross_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_linalg_cross_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_linalg_diagonal_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_log_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_log_normal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_log_softmax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp2_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp2_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_logical_and_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_logical_not_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_logical_not_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_logspace_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_minimum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_minimum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_minimum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_mul_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nan_to_num_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_nan_to_num_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_native_dropout_backward_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_new_full_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_new_ones_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_nextafter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_binary_cross_entropy_with_logits_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardshrink_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardtanh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_mse_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu6_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu6_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_softplus_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_unfold_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_norm_nuc_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_normal_in_place_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_normal_number_mean_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_permute_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_renorm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_renorm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_repeat_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_rot90_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_rot90_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_round_decimals_neg_3_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_rsqrt_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_select_scatter_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_sin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_slice_scatter_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_special_i0e_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_special_i1_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_i1e_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_special_i1e_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_special_log_ndtr_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtr_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_special_xlog1py_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_special_xlog1py_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_std_mean_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_std_mean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_std_mean_unbiased_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_tanh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_unbind_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_view_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_view_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_xlogy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_zero__cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_zeros_cpu_float32 2025-08-14T23:12:55.2776838Z 2025-08-14T23:13:01.1070019Z Running xpu/test_conv 1/1 ... [2025-08-14 23:13:01.106477] 2025-08-14T23:13:01.1070582Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:13:01.1077724Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'xpu/test_conv.py', '-m', 'not serial', '--shard-id=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:13:01.107115] 2025-08-14T23:13:06.6631762Z 2025-08-14T23:13:06.6632852Z xpu/test_conv 1/1 was successful, full logs can be found in artifacts with path test/test-reports/xpu.test_conv_1.1_b4574822d3eb2df8_.log 2025-08-14T23:13:06.6634148Z Running 0 items in this shard: 2025-08-14T23:13:06.6634402Z 2025-08-14T23:13:12.4460876Z Running test_ops_jit 2/3 ... [2025-08-14 23:13:12.445820] 2025-08-14T23:13:12.4462048Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:13:12.4479573Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_jit.py', '-m', 'not serial', '--shard-id=2', '--num-shards=3', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:13:12.446748] 2025-08-14T23:17:49.1106857Z 2025-08-14T23:17:49.1107987Z test_decomp 13/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_13.17_7e546d2f4c484236_.log 2025-08-14T23:17:49.1363490Z Running 531 items in this shard: test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rand___cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rdiv___cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmul___cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmul___cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive__native_batch_norm_legit_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive__segment_reduce_lengths_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive__softmax_backward_data_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive__unsafe_masked_index_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_acos_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_acos_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_acos_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_acosh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_acosh_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_addbmm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_decomposed_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_decomposed_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmv_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addr_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_all_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_amax_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_aminmax_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_any_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_arange_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_arange_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_asin_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atan2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atanh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atanh_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_baddbmm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bincount_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_and_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_right_shift_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_xor_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bmm_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_byte_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cat_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdouble_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_cdouble_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_chalf_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_combinations_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_constant_pad_nd_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_copysign_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cos_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_count_nonzero_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cross_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cummin_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_deg2rad_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_deg2rad_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_embed_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_embed_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_floor_rounding_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_no_rounding_mode_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_dot_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_dstack_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_strided_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfinv_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp2_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp2_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_as_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftn_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftshift_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfftn_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ihfftn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_rfft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_flip_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fliplr_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fliplr_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_flipud_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_float_power_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_divide_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmod_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_gather_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ge_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_gt_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_heaviside_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_histc_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_hypot_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_add_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amin_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_select_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_inner_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_int_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_istft_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_4inputs_with_extra_args_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_kron_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_kron_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_kthvalue_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_lcm_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_lerp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cholesky_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_diagonal_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eigvalsh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_ldl_factor_ex_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_matrix_rank_hermitian_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_norm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_svd_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_tensorsolve_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vecdot_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vector_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_tensor_overload_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log10_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_log1p_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logcumsumexp_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_not_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_or_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_logspace_tensor_overload_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logsumexp_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_logsumexp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_lt_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_lu_unpack_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mH_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mT_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amax_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_argmax_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumprod_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_cumprod_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_fill_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_normalize_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_prod_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_scatter_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_scatter_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_with_dim_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_with_dim_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_variadic_tensors_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_minimum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mode_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_movedim_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_3_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nan_to_num_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanmean_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanmedian_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanmedian_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_batch_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_batch_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_dropout_backward_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_dropout_backward_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_native_layer_norm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_ne_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_empty_strided_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_full_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_zeros_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_batch_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_bilinear_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_channel_shuffle_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_channel_shuffle_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose1d_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose1d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_embedding_loss_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_similarity_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_similarity_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_elu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_embedding_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_without_train_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_gaussian_nll_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_glu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardtanh_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_instance_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_instance_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_bilinear_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_trilinear_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_leaky_relu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool2d_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool1d_grad_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool2d_grad_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool2d_grad_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_reflect_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pairwise_distance_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_shuffle_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_poisson_nll_loss_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_relu_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_rms_norm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_selu_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softmin_with_dtype_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softplus_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softsign_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_tanhshrink_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_threshold_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_loss_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_triplet_margin_with_distance_loss_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_fro_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_fro_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_in_place_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_number_mean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_normal_number_mean_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_permute_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_0_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_4_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_quantile_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_like_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_like_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_real_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_reciprocal_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_interleave_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_as_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_reshape_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_roll_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_decimals_neg_3_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_mean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_prod_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_sum_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_searchsorted_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sgn_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_sign_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_general_hamming_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinc_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sinh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_with_dtype_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_with_dtype_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sort_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sparse_sampled_addmm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_airy_ai_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y0_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_bessel_y1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_chebyshev_polynomial_t_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_erfcx_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1e_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_laguerre_polynomial_l_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_legendre_polynomial_p_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i0_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_i0_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k1_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_modified_bessel_k1_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_polygamma_special_polygamma_n_0_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_spherical_bessel_j0_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_spherical_bessel_j0_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_list_args_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_list_args_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_list_args_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sqrt_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_to_size_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_svd_lowrank_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tan_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_tile_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_to_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_topk_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_topk_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch_ops_aten__safe_softmax_default_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_transpose_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_trunc_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_trunc_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unflatten_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_unfold_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsafe_chunk_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_var_mean_unbiased_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_where_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_zero__cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_like_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick__native_batch_norm_legit_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_abs_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_acos_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_addmm_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_addmm_decomposed_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_amax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_amax_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_any_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_arange_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_scatter_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_atan2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_baddbmm_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_bernoulli_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_not_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_bucketize_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_ceil_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_clamp_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_clamp_max_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_clamp_min_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_clone_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_constant_pad_nd_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_constant_pad_nd_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_stack_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_transpose_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_tril_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_count_nonzero_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_diag_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_diag_embed_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_dist_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_div_floor_rounding_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_div_floor_rounding_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_div_trunc_rounding_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_dot_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_dot_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_exp2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_exp2_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_exp2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_exp_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_expm1_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_eye_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifft_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifftn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_ifftn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfft2_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_ihfftn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_irfft_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfftn_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fmin_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fmin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_fmin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_fmod_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_fmod_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_frac_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_frexp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_full_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_ge_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_index_copy_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_isin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_isin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_isinf_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_item_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_lcm_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_le_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_lerp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_lgamma_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_lgamma_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_linalg_cross_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_log_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_logaddexp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_logical_not_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_logical_not_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_logical_xor_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_logit_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_logspace_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_logsumexp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_lt_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_masked_fill_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_mean_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_variadic_tensors_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_3_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_ne_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_ne_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_neg_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_new_full_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_nextafter_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_hardsigmoid_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_logsigmoid_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_relu6_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_permute_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_prod_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_prod_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_rad2deg_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_roll_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_round_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_rsub_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_select_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_select_scatter_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_select_scatter_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_sigmoid_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_sign_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_signbit_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_signbit_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_sin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_sin_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_sinc_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_slice_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_special_i1_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_special_log_ndtr_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_special_zeta_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_split_list_args_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_split_list_args_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_split_with_sizes_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_multiple_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_std_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_std_mean_unbiased_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_take_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_transpose_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_tril_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_trunc_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_unfold_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_var_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_vdot_cpu_float64, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_LSTM_eval_mode_cpu_float32, test/test_decomp.py::DecompOneOffTestsCPU::test_amp_batch_norm_backward_cpu 2025-08-14T23:17:49.1605953Z 2025-08-14T23:17:55.7330004Z Running test_ops_jit 3/3 ... [2025-08-14 23:17:55.732353] 2025-08-14T23:17:55.7331468Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:17:55.7339212Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_jit.py', '-m', 'not serial', '--shard-id=3', '--num-shards=3', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:17:55.733005] 2025-08-14T23:18:03.2643560Z 2025-08-14T23:18:03.2656905Z test_decomp 14/17 was successful, full logs can be found in artifacts with path test/test-reports/test_decomp_14.17_cda3e4d7a96b391a_.log 2025-08-14T23:18:03.2893157Z Running 520 items in this shard: test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_T_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive___radd___cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive___rdiv___cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmatmul___cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive___rmatmul___cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive___rsub___cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive__chunk_cat_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive__chunk_cat_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive__segment_reduce_lengths_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive__upsample_bilinear2d_aa_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_abs_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_add_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_addmm_decomposed_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_amax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_amax_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_amax_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_angle_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_any_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_arange_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_arange_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_argmin_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_argsort_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_argwhere_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_as_strided_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_1d_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_2d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_atleast_3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_bfloat16_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bitwise_and_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_block_diag_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bmm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_bool_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_bucketize_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_bucketize_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cartesian_prod_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_ceil_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cholesky_solve_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_chunk_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_clamp_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_clone_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_conj_physical_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_contiguous_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_cos_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cosh_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_cov_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_cross_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_deg2rad_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diag_embed_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_diagonal_scatter_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_diff_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_digamma_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_dist_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_div_floor_rounding_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_dot_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_empty_permuted_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_eq_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_erfinv_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp2_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_exp_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_as_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_expand_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_exponential_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_float8_e5m2, test/test_decomp.py::TestDecompCPU::test_comprehensive_eye_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftshift_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_fftshift_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfft_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_hfftn_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft2_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft2_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifft_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftn_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_ifftshift_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfftn_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_fft_irfftn_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_flip_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_floor_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmod_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_fmod_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_full_like_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_gcd_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_geometric_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_gradient_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_gradient_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_grid_sampler_2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_half_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_heaviside_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_hsplit_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_hstack_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_i0_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_put_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_amax_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_mean_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_reduce_prod_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_index_select_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isclose_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isinf_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_isneginf_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_isneginf_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_isneginf_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_isreal_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_item_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_4inputs_with_extra_args_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_binary_return_by_ref_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_jiterator_unary_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_kthvalue_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_lcm_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ldexp_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_le_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_cross_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_eigh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_inv_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_lu_solve_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_pinv_hermitian_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_solve_ex_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vander_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_linalg_vector_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_tensor_overload_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_linspace_tensor_overload_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_log10_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_log1p_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_log2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_logdet_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_logical_and_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_long_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_long_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_long_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_lt_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_amax_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_logaddexp_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_mean_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_normalize_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_masked_sum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_matmul_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_matmul_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_max_reduction_with_dim_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_maximum_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_maximum_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_median_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_median_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_median_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_meshgrid_list_of_tensors_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_binary_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_with_dim_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_with_dim_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_min_reduction_with_dim_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_mode_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_msort_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mul_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_multinomial_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_1_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nan_to_num_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nanquantile_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nansum_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_narrow_copy_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_neg_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_new_zeros_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_avg_pool2d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_adaptive_avg_pool3d_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_batch_norm_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose1d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_conv_transpose2d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cosine_embedding_loss_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_cross_entropy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_dropout3d_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_elu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_embedding_bag_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_hardtanh_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_linear_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_interpolate_nearest_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_leaky_relu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_logsigmoid_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_pool2d_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_max_unpool1d_grad_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_circular_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_constant_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_constant_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pad_replicate_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_pixel_shuffle_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_softshrink_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_tanhshrink_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_nn_functional_upsample_bilinear_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_nonzero_static_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_inf_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_inf_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_norm_nuc_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ones_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ormqr_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_outer_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_polar_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_0_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_1_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_3_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_polygamma_polygamma_n_4_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_positive_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_pow_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_put_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_put_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_qr_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rad2deg_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_randint_like_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_like_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_randn_like_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_ravel_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_reciprocal_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_remainder_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_remainder_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_interleave_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_repeat_interleave_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_resize__cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_resolve_neg_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_roll_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_round_decimals_neg_3_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsqrt_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsub_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsub_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_rsub_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_scalar_tensor_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amin_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_scatter_reduce_amin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_scatter_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_select_scatter_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sgn_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sign_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_gaussian_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_kaiser_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_signal_windows_kaiser_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_signbit_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_sin_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_slice_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_softmax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_erfcx_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_hermite_polynomial_h_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1e_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_i1e_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_laguerre_polynomial_l_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_ndtr_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_xlog1py_cpu_float32, test/test_decomp.py::TestDecompCPU::test_comprehensive_special_xlog1py_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_list_args_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_split_with_sizes_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_comprehensive_square_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_squeeze_copy_cpu_int8, test/test_decomp.py::TestDecompCPU::test_comprehensive_stack_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_mean_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_std_unbiased_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sub_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_sum_to_size_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_svd_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_t_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_take_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_tanh_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tile_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch__scaled_mm_cpu_float8_e4m3fnuz, test/test_decomp.py::TestDecompCPU::test_comprehensive_torch_ops_aten__safe_softmax_default_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapz_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_trapz_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_tril_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_unbind_cpu_bool, test/test_decomp.py::TestDecompCPU::test_comprehensive_unravel_index_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_unsqueeze_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_as_real_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_copy_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_view_cpu_int16, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_comprehensive_vsplit_cpu_int64, test/test_decomp.py::TestDecompCPU::test_comprehensive_vstack_cpu_int32, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_float64, test/test_decomp.py::TestDecompCPU::test_comprehensive_zeros_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick__unsafe_masked_index_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_acos_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_acosh_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_add_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_addcmul_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_addmv_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_addr_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_alias_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_amax_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_amin_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_aminmax_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_aminmax_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_as_strided_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_atan_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_baddbmm_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_and_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_left_shift_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_bitwise_xor_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_block_diag_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_bucketize_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_cat_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_clamp_max_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_clone_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_conj_physical_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_addcmul_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_clamp_min_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_masked_fill_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_nn_functional_glu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_nn_functional_hardshrink_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_squeeze_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_t_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_core_backward_triu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_cosh_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_count_nonzero_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_count_nonzero_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_cumprod_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_cumsum_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_diag_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_scatter_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_diagonal_scatter_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_dist_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_div_floor_rounding_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_div_floor_rounding_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_div_floor_rounding_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_div_trunc_rounding_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_div_trunc_rounding_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_empty_like_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_empty_strided_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_eq_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_erfc_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_erfinv_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_exp_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_exp_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_expand_copy_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_expand_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_fft2_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fft_fftn_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_fft_fftn_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft2_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfft_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fft_hfftn_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfft_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fft_rfftn_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_fill_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_floor_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_floor_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_fmax_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_fmax_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_fmin_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_fmin_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_fmin_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_frac_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_ge_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_geometric_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_grid_sampler_2d_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_gt_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_gt_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_gt_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_gt_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_index_add_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_index_copy_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_index_copy_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_isnan_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_isneginf_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_isneginf_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_isneginf_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_isposinf_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_item_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_lerp_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_linspace_tensor_overload_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_log10_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_log1p_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_log2_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_log_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_log_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_log_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_log_softmax_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_logical_and_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_logical_and_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_logical_or_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_logical_xor_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_logit_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_logspace_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_logspace_tensor_overload_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_maximum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_maximum_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_mean_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_list_of_tensors_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_meshgrid_variadic_tensors_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_mul_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_mv_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_1_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_1_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_mvlgamma_mvlgamma_p_5_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_nan_to_num_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_narrow_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_ne_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_new_empty_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_new_full_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_leaky_relu_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_mish_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_pad_constant_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_rrelu_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_nn_functional_silu_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_norm_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_norm_fro_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_norm_inf_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_norm_inf_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_norm_inf_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_norm_nuc_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_ones_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_ones_like_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_pow_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_pow_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_prod_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_rad2deg_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_rad2deg_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_rad2deg_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_randn_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_reciprocal_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_repeat_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_rot90_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_round_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_round_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_sgn_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_sinh_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_special_entr_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_special_erfcx_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_special_i1_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_special_log_ndtr_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_special_log_ndtr_cpu_int32, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtri_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_special_ndtri_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_split_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_split_list_args_cpu_bool, test/test_decomp.py::TestDecompCPU::test_quick_sqrt_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_squeeze_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_int16, test/test_decomp.py::TestDecompCPU::test_quick_stack_cpu_int8, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_sum_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_t_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_tan_cpu_complex64, test/test_decomp.py::TestDecompCPU::test_quick_trace_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_transpose_copy_cpu_float32, test/test_decomp.py::TestDecompCPU::test_quick_triu_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_trunc_cpu_float64, test/test_decomp.py::TestDecompCPU::test_quick_unfold_copy_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_unfold_copy_cpu_float16, test/test_decomp.py::TestDecompCPU::test_quick_unfold_copy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_quick_unsafe_split_cpu_complex32, test/test_decomp.py::TestDecompCPU::test_quick_unsqueeze_copy_cpu_uint8, test/test_decomp.py::TestDecompCPU::test_quick_var_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_view_cpu_bfloat16, test/test_decomp.py::TestDecompCPU::test_quick_where_cpu_complex128, test/test_decomp.py::TestDecompCPU::test_quick_xlogy_cpu_int64, test/test_decomp.py::TestDecompCPU::test_rnn_decomp_module_nn_LSTM_eval_mode_cpu_float64, test/test_decomp.py::TestDecompCPU::test_uniform_cpu, test/test_decomp.py::DecompOneOffTestsCPU::test_contiguous_softmax_cpu 2025-08-14T23:18:03.3130311Z 2025-08-14T23:18:09.7471377Z Running lazy/test_step_closures 1/1 ... [2025-08-14 23:18:09.746088] 2025-08-14T23:18:09.7472190Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:18:09.7481592Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'lazy/test_step_closures.py', '-m', 'not serial', '--shard-id=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:18:09.746088] 2025-08-14T23:18:17.9331643Z 2025-08-14T23:18:17.9333256Z lazy/test_step_closures 1/1 was successful, full logs can be found in artifacts with path test/test-reports/lazy.test_step_closures_1.1_f909994825839b4a_.log 2025-08-14T23:18:17.9336915Z Running 4 items in this shard: test/lazy/test_step_closures.py::ClosuresTest::test_asynchronous, test/lazy/test_step_closures.py::ClosuresTest::test_asynchronous_exception, test/lazy/test_step_closures.py::ClosuresTest::test_synchronous, test/lazy/test_step_closures.py::ClosuresTest::test_synchronous_exception 2025-08-14T23:18:17.9338986Z 2025-08-14T23:18:24.5880875Z Running test_ops_gradients 1/2 ... [2025-08-14 23:18:24.587811] 2025-08-14T23:18:24.5888596Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:18:24.5890420Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops_gradients.py', '-m', 'not serial', '--shard-id=1', '--num-shards=2', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:18:24.588734] 2025-08-14T23:20:15.0474636Z 2025-08-14T23:20:15.0475852Z test_ops_jit 2/3 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_jit_2.3_ca94c1e4f7e65a2e_.log 2025-08-14T23:20:15.0713477Z Running 358 items in this shard: test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_acos_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_digamma_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_div_trunc_rounding_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_erfc_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_erfinv_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_exp2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_ge_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_gt_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_igamma_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_le_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_lgamma_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_linalg_det_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_linalg_inv_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_logsumexp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_lt_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_mH_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_nn_functional_conv_transpose3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_nn_functional_group_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_outer_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_round_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_sinc_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_softmax_with_dtype_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_H_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___getitem___cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___radd___cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___rdiv___cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___rmod___cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__chunk_cat_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__native_batch_norm_legit_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__softmax_backward_data_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__unsafe_masked_index_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__upsample_bilinear2d_aa_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_acosh_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addbmm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addcdiv_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addcmul_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addmv_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addr_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_all_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_amin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_angle_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_any_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_as_strided_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_as_strided_partial_views_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_as_strided_scatter_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atan_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atleast_1d_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atleast_2d_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_bmm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_bool_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_broadcast_shapes_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_broadcast_tensors_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cartesian_prod_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cat_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cdist_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cdouble_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_chalf_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_char_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cholesky_inverse_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cholesky_solve_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_clone_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_column_stack_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_conj_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_constant_pad_nd_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_constant_pad_nd_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_contiguous_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_copysign_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cov_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cumsum_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diag_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diag_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diagflat_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diagonal_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diagonal_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diagonal_scatter_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_dist_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_double_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_dsplit_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_dstack_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_einsum_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_empty_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_empty_like_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_empty_permuted_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_empty_strided_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_eq_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_equal_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_erf_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_erfc_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_exp2_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_exp2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_expand_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_expand_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_fft2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_fftn_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_fftshift_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_hfftn_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_hfftn_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ifft2_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ihfft2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ihfft_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_irfft2_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_irfft_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_rfft_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fill_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_flipud_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_float_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_float_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_float_power_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_floor_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fmin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_full_like_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_gather_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ge_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_geometric_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_geqrf_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_gradient_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_half_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_half_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_hash_tensor_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_histogramdd_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_hsplit_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_hstack_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_imag_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_fill_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_inner_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_int_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isclose_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isclose_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isnan_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isneginf_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isposinf_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_istft_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_item_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_item_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_2inputs_2outputs_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_4inputs_with_extra_args_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_binary_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_binary_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_binary_return_by_ref_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_unary_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_kron_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_kron_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_cholesky_ex_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_cond_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_diagonal_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_eig_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_eigvalsh_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_householder_product_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_inv_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_inv_ex_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_ldl_factor_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_ldl_factor_ex_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_ldl_solve_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_ldl_solve_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lstsq_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lu_factor_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lu_factor_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lu_factor_ex_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lu_solve_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_matrix_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_matrix_power_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_matrix_rank_hermitian_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_pinv_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_qr_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_slogdet_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_slogdet_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_solve_ex_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_solve_triangular_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_svdvals_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_tensorinv_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_vander_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_vander_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_vector_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linspace_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linspace_tensor_overload_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log1p_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log_normal_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logcumsumexp_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logical_and_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logical_not_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logsumexp_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logsumexp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_long_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_lu_solve_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mT_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_argmin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_mean_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_normalize_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_scatter_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_select_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_std_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_sum_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_var_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_matmul_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_max_reduction_no_dim_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mean_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_median_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_meshgrid_list_of_tensors_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_min_binary_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_minimum_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nanmean_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_narrow_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_native_dropout_backward_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_native_layer_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_neg_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_new_empty_strided_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_new_zeros_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_alpha_dropout_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_avg_pool3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_channel_shuffle_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv1d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv_transpose3d_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_ctc_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_dropout2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_dropout3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_elu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_embedding_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_instance_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_interpolate_linear_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_interpolate_nearest_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_l1_loss_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_max_pool1d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_max_unpool1d_grad_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_mish_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_multi_margin_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pad_circular_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pad_reflect_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pad_replicate_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pdist_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pixel_shuffle_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_relu6_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_rms_norm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_rms_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_selu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_soft_margin_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_softsign_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_tanhshrink_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_tanhshrink_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nonzero_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nonzero_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nonzero_static_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nonzero_static_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_norm_fro_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_norm_inf_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_norm_inf_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_normal_in_place_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_normal_in_place_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ones_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_permute_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_pinverse_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_polar_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_polygamma_polygamma_n_1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_polygamma_polygamma_n_4_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_pow_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_put_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_qr_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_rad2deg_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_randn_like_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ravel_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_renorm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_repeat_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_reshape_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_resize__cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_resolve_neg_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_rot90_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_round_decimals_0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_round_decimals_neg_3_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_rsqrt_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scatter_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scatter_reduce_prod_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scatter_reduce_sum_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_short_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_short_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_bartlett_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_blackman_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_cosine_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_gaussian_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_hamming_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_nuttall_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sinc_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sinh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_slice_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_slice_scatter_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_softmax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_softmax_with_dtype_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sort_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_bessel_y0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_bessel_y1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_chebyshev_polynomial_v_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_entr_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_erfcx_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_hermite_polynomial_h_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_i1e_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_ndtr_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_ndtri_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_split_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_split_list_args_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_split_with_sizes_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_square_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_square_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_squeeze_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_squeeze_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_squeeze_multiple_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_stack_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_std_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_std_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_std_mean_unbiased_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_stft_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_stft_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sum_to_size_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_take_along_dim_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_take_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tanh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tile_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_to_sparse_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_to_sparse_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_topk_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_trace_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_trapezoid_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_triu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_true_divide_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unbind_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unflatten_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unflatten_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_uniform_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unsafe_split_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unsqueeze_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_var_unbiased_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_view_as_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_view_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_vsplit_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_vstack_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_zero__cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_zeros_cpu_float32 2025-08-14T23:20:15.0839780Z 2025-08-14T23:20:20.9881072Z Running test_cuda_expandable_segments 1/1 ... [2025-08-14 23:20:20.987861] 2025-08-14T23:20:20.9881741Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:20:20.9889348Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_cuda_expandable_segments.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:20:20.988659] 2025-08-14T23:20:27.6033493Z 2025-08-14T23:20:27.6034415Z test_cuda_expandable_segments 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_cuda_expandable_segments_1.1_dba63d293b25d0ef_.log 2025-08-14T23:20:27.6035178Z 2025-08-14T23:20:33.2013023Z Running test_ops 4/9 ... [2025-08-14 23:20:33.201038] 2025-08-14T23:20:33.2013494Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:20:33.2020450Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'not serial', '--shard-id=4', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:20:33.201699] 2025-08-14T23:27:45.9251089Z 2025-08-14T23:27:45.9252196Z test_ops_jit 3/3 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_jit_3.3_dace15d657fafa3d_.log 2025-08-14T23:27:45.9415033Z Running 416 items in this shard: test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_acosh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_asin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_asinh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_atan2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_cat_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_div_floor_rounding_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_expm1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_igammac_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_linalg_householder_product_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_linalg_matrix_power_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_log_softmax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_log_softmax_with_dtype_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_matmul_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_max_binary_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_min_binary_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_movedim_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_mul_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_ne_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_nn_functional_conv1d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_nn_functional_conv_transpose1d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_nn_functional_conv_transpose2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_nn_functional_layer_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_nn_functional_rms_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_round_decimals_3_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_round_decimals_neg_3_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_sigmoid_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_sub_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_transpose_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_trunc_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_vstack_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_jit_alias_remapping_xlogy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_H_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_T_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_T_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___getitem___cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___radd___cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___rmatmul___cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit___rmul___cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__chunk_cat_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__segment_reduce_lengths_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__segment_reduce_offsets_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_abs_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_acos_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_acos_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_acosh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_add_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addbmm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addcmul_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addmm_decomposed_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addmm_decomposed_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_addr_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_alias_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_allclose_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_allclose_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_aminmax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_any_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_arange_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_argmax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_argmin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_as_strided_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_as_strided_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_as_strided_partial_views_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_as_strided_scatter_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_asin_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_asin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_asinh_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_asinh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atan2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atanh_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atanh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atleast_2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_atleast_3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_baddbmm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_bernoulli_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_block_diag_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_bmm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_bool_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_broadcast_tensors_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_broadcast_to_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_byte_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cauchy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cdouble_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cfloat_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cholesky_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cholesky_inverse_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cholesky_solve_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_chunk_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_chunk_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_clamp_max_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_clone_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_combinations_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_complex_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_conj_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_conj_physical_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_corrcoef_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cos_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cosh_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cosh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_count_nonzero_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cov_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cross_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cumprod_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cumprod_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cumsum_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_cumulative_trapezoid_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_deg2rad_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diag_embed_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diagonal_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diagonal_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_diff_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_div_no_rounding_mode_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_div_no_rounding_mode_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_div_trunc_rounding_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_dot_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_dot_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_dsplit_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_empty_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_empty_like_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_empty_permuted_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_empty_strided_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_expand_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_expand_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_expm1_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_expm1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_fft2_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_hfft2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_hfft_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ifft2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ifftn_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_ihfftn_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_irfftn_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fft_rfftn_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fill_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fliplr_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_float_power_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_floor_divide_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_fmod_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_frexp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_full_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_full_like_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_gather_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_geqrf_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_heaviside_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_histogram_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_hstack_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_igamma_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_igammac_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_add_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_fill_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_put_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_put_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_reduce_amax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_reduce_mean_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_index_select_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_inner_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_int_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isfinite_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_isreal_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_4inputs_with_extra_args_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_jiterator_binary_return_by_ref_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_kthvalue_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ldexp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_le_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_lgamma_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_cholesky_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_cholesky_ex_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_cond_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_cross_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_det_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_eigh_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_eigh_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_eigvals_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_eigvals_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_householder_product_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_inv_ex_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_ldl_factor_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_ldl_factor_ex_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lstsq_grad_oriented_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lu_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_lu_factor_ex_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_matrix_power_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_norm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_pinv_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_pinv_hermitian_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_pinv_singular_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_solve_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_solve_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_svdvals_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_tensorinv_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_tensorsolve_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_vecdot_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_vecdot_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_linalg_vector_norm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log10_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log10_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log1p_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log2_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log_softmax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_log_softmax_with_dtype_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logaddexp2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logaddexp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logcumsumexp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logdet_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logical_or_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logit_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logspace_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logspace_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_logspace_tensor_overload_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_long_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_lt_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_lu_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_lu_unpack_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mH_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_amax_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_cumsum_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_fill_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_logaddexp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_logsumexp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_mean_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_median_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_normalize_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_prod_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_scatter_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_sum_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_masked_var_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_matrix_exp_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_maximum_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_meshgrid_list_of_tensors_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_meshgrid_variadic_tensors_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mode_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_movedim_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_movedim_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mul_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mv_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nan_to_num_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nanquantile_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_narrow_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_narrow_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ne_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_new_empty_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_new_full_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_new_zeros_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_avg_pool1d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_avg_pool2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv1d_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv2d_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv_transpose1d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv_transpose2d_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_conv_transpose3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_dropout_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_glu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_grid_sample_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_group_norm_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_hardshrink_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_hardsigmoid_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_hardswish_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_leaky_relu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_linear_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_max_pool3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_max_unpool1d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_max_unpool2d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_max_unpool3d_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_normalize_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pad_replicate_negative_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pixel_shuffle_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pixel_unshuffle_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_prelu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_silu_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_softplus_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_nn_functional_unfold_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_norm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_norm_nuc_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_norm_nuc_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ones_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ones_like_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ormqr_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_pca_lowrank_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_pca_lowrank_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_permute_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_permute_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_pinverse_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_polygamma_polygamma_n_2_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_positive_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_positive_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_pow_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_prod_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_quantile_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_rand_like_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_randint_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_randn_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_randn_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_ravel_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_real_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_reciprocal_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_reciprocal_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_remainder_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_repeat_interleave_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_repeat_interleave_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_reshape_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_resize_as__cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_resize_as__cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_resolve_conj_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_resolve_neg_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_roll_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_rsqrt_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_rsub_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_rsub_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scalar_tensor_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scatter_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_scatter_reduce_amin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_searchsorted_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_select_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_select_scatter_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sgn_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sigmoid_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_general_cosine_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_general_hamming_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_signal_windows_hann_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sin_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sinc_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sparse_mm_reduce_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sparse_sampled_addmm_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_airy_ai_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_bessel_j0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_chebyshev_polynomial_u_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_i1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_legendre_polynomial_p_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_modified_bessel_i0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_modified_bessel_i1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_modified_bessel_k1_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_spherical_bessel_j0_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_special_xlog1py_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_split_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_split_list_args_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_split_with_sizes_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_split_with_sizes_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sqrt_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sqrt_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_squeeze_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_squeeze_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_squeeze_multiple_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_std_mean_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_std_mean_unbiased_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sub_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sum_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_sum_to_size_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_svd_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_svd_lowrank_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_t_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_t_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_t_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_take_along_dim_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_take_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tan_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tanh_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tensor_split_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tensordot_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tensordot_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tile_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_transpose_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_trapz_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_trapz_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tril_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_tril_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_true_divide_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_trunc_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unbind_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unbind_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unbind_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unfold_copy_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unfold_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unfold_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unique_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unsafe_chunk_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_unsqueeze_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_var_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_var_mean_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_vdot_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_vdot_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_view_as_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_view_as_real_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_view_copy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_view_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_vsplit_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_vstack_cpu_complex64, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_where_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_xlogy_cpu_float32, test/test_ops_jit.py::TestJitCPU::test_variant_consistency_jit_zeros_like_cpu_float32 2025-08-14T23:27:45.9556326Z 2025-08-14T23:27:52.6695762Z Running test_ops 5/9 ... [2025-08-14 23:27:52.667895] 2025-08-14T23:27:52.6696416Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:27:52.6704161Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'not serial', '--shard-id=5', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:27:52.667895] 2025-08-14T23:29:25.1670232Z 2025-08-14T23:29:25.1671380Z test_ops_gradients 1/2 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_gradients_1.2_40c31ba98fe4bf86_.log 2025-08-14T23:29:25.3186943Z Running 2727 items in this shard: test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_H_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpyCubeCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpyMulScalarCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpyNMSCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpyNonzeroCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpySortCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpySplitCopyWithIntCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpyTakeCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_NumpyViewCopyCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_T_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___getitem___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___radd___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rdiv___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rmatmul___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rmod___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rmul___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rpow___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rpow___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad___rsub___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__chunk_cat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__chunk_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__native_batch_norm_legit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__segment_reduce_lengths_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__softmax_backward_data_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad__upsample_bilinear2d_aa_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_abs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_acos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_acosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addbmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addmv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addmv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_addr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_all_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_all_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_allclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_angle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_argsort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_argwhere_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_as_strided_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_as_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_as_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_as_strided_partial_views_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_asin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_asin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_asinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atan2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_atleast_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_bernoulli_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_bfloat16_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_bmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_bool_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_broadcast_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_byte_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cartesian_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cauchy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cdouble_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cdouble_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ceil_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_char_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_char_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cholesky_inverse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_clamp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_clamp_max_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_clone_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_column_stack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_column_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_combinations_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_conj_physical_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_constant_pad_nd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_copysign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_corrcoef_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_corrcoef_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_count_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_count_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cov_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cross_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cummax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_cumulative_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_deg2rad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diagflat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diagflat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diagonal_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_digamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_div_no_rounding_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_div_trunc_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_dsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_dsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_dstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_einsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_empty_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_empty_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_empty_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_empty_permuted_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_empty_permuted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_empty_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_equal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_equal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_erf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_erfc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_exp2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_exp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_expand_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_expand_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_expand_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_expm1_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_eye_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_fft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_fft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_fft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_fftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_hfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_hfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_hfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_hfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ifft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ifft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ifft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ifftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ifftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ifftshift_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ifftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_ihfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_irfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_irfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_irfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_rfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_rfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fft_rfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_flatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_flip_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_flip_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_float_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_float_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_floor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_fmod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_frac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_frexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_full_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_gather_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_gather_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ge_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_geometric_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_geqrf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_half_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_half_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_hash_tensor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_histogramdd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_hsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_hstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_hypot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_igammac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_imag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_index_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_int_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isfinite_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isfinite_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isinf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_isneginf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_jiterator_2inputs_2outputs_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_jiterator_4inputs_with_extra_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_jiterator_binary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_jiterator_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_jiterator_binary_return_by_ref_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_jiterator_binary_return_by_ref_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_jiterator_unary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_kthvalue_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ldexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_le_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_cholesky_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_cross_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_det_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_det_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_eig_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_eig_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_eigh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_eigvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_eigvals_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_householder_product_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_inv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_inv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_inv_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_ldl_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_ldl_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_ldl_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_ldl_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_ldl_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lstsq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lstsq_grad_oriented_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lu_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lu_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_lu_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_matrix_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_matrix_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_matrix_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_matrix_rank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_matrix_rank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_multi_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_multi_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_pinv_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_pinv_singular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_slogdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_solve_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_solve_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_solve_triangular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_svdvals_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_tensorinv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_tensorinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_vander_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_vander_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_vecdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_vecdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_vector_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linalg_vector_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_linspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log1p_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log1p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_log_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logaddexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logcumsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logical_or_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logical_xor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_lu_unpack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mH_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mT_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_masked_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_matrix_exp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_matrix_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_max_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_max_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_meshgrid_list_of_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_min_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_min_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_minimum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_movedim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_msort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_multinomial_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nan_to_num_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nanmedian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nanquantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nansum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_narrow_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_native_dropout_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_native_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_new_empty_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_new_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_new_empty_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_new_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_new_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_new_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_adaptive_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_avg_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_channel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_channel_shuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv_transpose1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv_transpose1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_conv_transpose2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_cosine_similarity_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_ctc_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_elu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_embedding_bag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_embedding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_group_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_hardshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_huber_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_interpolate_area_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_interpolate_trilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_kl_div_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_leaky_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_local_response_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_max_unpool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_max_unpool3d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_mse_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_multi_head_attention_forward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_multi_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_multilabel_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_circular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_constant_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_constant_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pad_replicate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pairwise_distance_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pairwise_distance_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_prelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_rms_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_rrelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_selu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_softplus_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_softsign_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_tanhshrink_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_threshold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_upsample_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nn_functional_upsample_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_nonzero_static_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_norm_fro_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_norm_fro_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_norm_inf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_norm_inf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_norm_nuc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_normal_in_place_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_normal_in_place_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_ones_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_outer_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_permute_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_permute_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_pinverse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_polar_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_polygamma_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_polygamma_polygamma_n_2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_polygamma_polygamma_n_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_positive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_randn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_randn_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_randn_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_real_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_reciprocal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_repeat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_repeat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_repeat_interleave_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_reshape_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_reshape_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_reshape_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_resize__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_resize__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_resize_as__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_resize_as__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_resolve_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_resolve_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_rot90_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_round_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_round_decimals_neg_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_rsqrt_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_rsqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_rsub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scalar_tensor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scatter_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scatter_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_scatter_reduce_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sgn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sgn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_short_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_short_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_bartlett_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_gaussian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_signal_windows_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sinc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_slice_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sparse_mm_reduce_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_bessel_j1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_bessel_y0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_erfcx_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_hermite_polynomial_h_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_i1e_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_laguerre_polynomial_l_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_log_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_modified_bessel_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_ndtri_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_scaled_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_special_zeta_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_split_with_sizes_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_split_with_sizes_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_split_with_sizes_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_split_with_sizes_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sqrt_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_square_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_squeeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_squeeze_multiple_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_stack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_std_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_std_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_std_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_std_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sum_to_size_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_sum_to_size_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_svd_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_svd_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_t_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_take_along_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_take_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_take_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tensor_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_tensordot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_to_sparse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_topk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_trace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_transpose_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_transpose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_trapz_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_trapz_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_triangular_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_triu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_true_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_trunc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unbind_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unbind_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unbind_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unflatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unfold_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unfold_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_uniform_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_uniform_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unsqueeze_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_unsqueeze_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_var_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_var_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_var_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_view_as_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_view_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_view_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_view_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_view_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_view_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_vsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_vsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_vstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_where_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_zero__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_zero__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_fail_gradgrad_zeros_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_H_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpyNonzeroCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpySplitCopyWithIntCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_NumpyTakeCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___getitem___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rmatmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rmatmul___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rsub___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad___rsub___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__chunk_cat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__segment_reduce_lengths_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad__unsafe_masked_index_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_abs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_acos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_acos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_acosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addcdiv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addcdiv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addcmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addmm_decomposed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addmm_decomposed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addmv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_addr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_allclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_angle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_angle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_any_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_arange_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_argwhere_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_argwhere_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_as_strided_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_as_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_as_strided_partial_views_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_as_strided_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_as_strided_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_asin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_asinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atan2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atleast_1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_atleast_3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_auto_functionalize_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_baddbmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_bfloat16_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_bmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_bmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_bool_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_bool_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_broadcast_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_byte_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cartesian_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cfloat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cfloat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_chalf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_char_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_char_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cholesky_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cholesky_inverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cholesky_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_clamp_max_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_clamp_min_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_column_stack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_column_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_conj_physical_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_constant_pad_nd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_corrcoef_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_count_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cov_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cross_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cummin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_cumulative_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diag_embed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diagonal_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diagonal_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diagonal_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_diff_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_dist_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_dist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_div_floor_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_div_no_rounding_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_dstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_empty_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_empty_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_empty_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_eq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_equal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_exp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_expand_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_expand_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_expand_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_expand_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_fft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_fft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_fftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_fftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_fftshift_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_fftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_hfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_hfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_hfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ifft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ifft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ifft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ifftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ifftshift_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ifftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ihfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_ihfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_irfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_irfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_rfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fft_rfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_flatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_flatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fliplr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_flipud_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_float_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_float_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_float_power_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_floor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_fmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_frac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_full_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_full_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_geometric_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_hash_tensor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_heaviside_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_histogramdd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_hsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_hsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_hstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_hstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_hypot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_igamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_igammac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_index_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_int_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_int_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isinf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isnan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isneginf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isposinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_isreal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_istft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_item_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_jiterator_2inputs_2outputs_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_jiterator_binary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_jiterator_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_jiterator_unary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_kron_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_kron_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ldexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_le_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_lerp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_lerp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_lgamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_cholesky_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_cond_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_cross_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_det_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_eig_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_eig_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_eigh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_eigh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_eigvals_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_eigvalsh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_inv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_inv_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_ldl_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_ldl_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_ldl_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_ldl_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lstsq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lstsq_grad_oriented_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lstsq_grad_oriented_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lu_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_lu_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_matrix_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_matrix_power_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_matrix_rank_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_multi_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_pinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_pinv_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_pinv_singular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_slogdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_solve_triangular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_svdvals_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_tensorinv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_vander_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_vander_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_vecdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_vector_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linalg_vector_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_linspace_tensor_overload_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log10_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log10_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log1p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_log_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logaddexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logcumsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logdet_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logical_and_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logical_not_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_lu_unpack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mH_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mT_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mT_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_map_nested_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_map_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_masked_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_matmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_matrix_exp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_matrix_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_max_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_max_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_max_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_meshgrid_variadic_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_min_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_min_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_min_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_minimum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_movedim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_msort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_multinomial_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_narrow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_native_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_native_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_empty_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_new_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nextafter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_alpha_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_avg_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_channel_shuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv_transpose1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv_transpose1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv_transpose2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_conv_transpose3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_cosine_similarity_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_dropout3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_fractional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_gelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_interpolate_area_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_interpolate_bicubic_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_interpolate_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_interpolate_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_interpolate_trilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_local_response_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_logsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_max_unpool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_max_unpool2d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_max_unpool3d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_mish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_multi_head_attention_forward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_multilabel_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_constant_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_constant_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_replicate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pad_replicate_negative_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pairwise_distance_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_relu6_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_rms_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_rrelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_silu_complex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_silu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_softshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_softsign_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_tanhshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nn_functional_upsample_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_norm_fro_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_norm_inf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_norm_inf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_norm_nuc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_normal_in_place_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_normal_number_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_outer_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_pca_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_permute_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_permute_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_pinverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_polar_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_polygamma_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_polygamma_polygamma_n_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_polygamma_polygamma_n_2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_pow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_rand_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_rand_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_randint_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_randn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_randn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_randn_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_randn_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ravel_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_ravel_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_reciprocal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_remainder_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_renorm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_repeat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_repeat_interleave_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_reshape_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_reshape_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_resize__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_resize_as__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_resize_as__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_resolve_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_rot90_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_round_decimals_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_round_decimals_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_round_decimals_neg_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_rsqrt_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_rsqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_rsub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scan_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scatter_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scatter_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_scatter_reduce_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_select_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sgn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sgn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_short_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sigmoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_bartlett_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_gaussian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_general_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signal_windows_hann_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_signbit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_slice_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sparse_sampled_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_airy_ai_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_bessel_y0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_entr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_hermite_polynomial_h_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_i0e_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_i1e_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_legendre_polynomial_p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_modified_bessel_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_ndtri_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_scaled_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_scaled_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_shifted_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_spherical_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_special_xlog1py_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_split_with_sizes_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_split_with_sizes_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_split_with_sizes_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sqrt_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_squeeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_squeeze_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_squeeze_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_squeeze_multiple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_stack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_std_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_std_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_std_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_stft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_stft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_sum_to_size_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_svd_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_t_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_take_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_take_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tensor_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tensordot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_to_sparse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_trace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_trapz_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_trapz_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tril_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_tril_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_trunc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unbind_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unbind_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unflatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unfold_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unfold_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_uniform_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unique_consecutive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unique_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unsafe_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unsafe_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unsafe_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unsqueeze_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_unsqueeze_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_var_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_var_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_vdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_vdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_view_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_view_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_view_as_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_view_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_view_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_view_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_view_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_vsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_vstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_vstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_where_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_where_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_xlogy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_zero__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_zero__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_zeros_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_grad_zeros_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_H_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_H_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpyMulCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpyMulScalarCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpyNMSCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpySortCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpyTakeCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_NumpyViewCopyCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_T_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___getitem___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___radd___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___radd___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rmatmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rmatmul___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad___rsub___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__batch_norm_with_update_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__chunk_cat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__native_batch_norm_legit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__segment_reduce_offsets_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__unsafe_masked_index_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad__upsample_bilinear2d_aa_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_abs_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_acos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addbmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addbmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addcmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addcmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addmv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_addr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_alias_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_allclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_angle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_angle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_arange_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_argsort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_argwhere_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_argwhere_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_as_strided_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_as_strided_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_as_strided_partial_views_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_as_strided_partial_views_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_as_strided_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_as_strided_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_asin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_asinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atan2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atleast_1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_atleast_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_auto_functionalize_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_baddbmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_bfloat16_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_block_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_bmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_bool_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_bool_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_broadcast_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_broadcast_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_broadcast_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_broadcast_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_bucketize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_byte_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cartesian_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cartesian_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cdouble_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cdouble_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_chalf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_chalf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_char_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cholesky_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cholesky_inverse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cholesky_inverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cholesky_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cholesky_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_clamp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_clone_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_column_stack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_combinations_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_conj_physical_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_contiguous_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_count_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cross_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cummax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cummin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_deg2rad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diag_embed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diagflat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diagonal_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_diff_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_digamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_div_no_rounding_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_double_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_dsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_dsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_einsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_empty_permuted_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_eq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_erf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_erfc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_expand_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_expand_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_expand_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_expand_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_expm1_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_eye_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_fft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_fft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_fft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_fft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_fftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_hfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_hfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_hfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_hfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ifft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ifft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ifftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ifftshift_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ifftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_ihfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_irfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_irfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_irfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_rfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fft_rfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_flatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_flip_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fliplr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fliplr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_float_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_floor_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_fmod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_frexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_full_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_gather_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_geqrf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_gradient_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_grid_sampler_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_gt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_half_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_histogram_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_histogramdd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_hstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_hypot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_igamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_imag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_index_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_inner_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_inner_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_int_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_invoke_quant_packed_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_invoke_quant_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_invoke_subgraph_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isnan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isposinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isreal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_isreal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_istft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_jiterator_unary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_kron_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_le_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lerp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lgamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_cholesky_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_cond_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_det_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_eig_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_eig_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_eigh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_eigvals_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_householder_product_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_inv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_ldl_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_ldl_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lstsq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lstsq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lstsq_grad_oriented_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lu_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lu_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lu_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_power_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_matrix_rank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_norm_subgradients_at_zero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_pinv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_pinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_pinv_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_pinv_singular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_slogdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_solve_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_solve_triangular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_svd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_svdvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_svdvals_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_tensorinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_tensorsolve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_vander_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linalg_vecdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_linspace_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log10_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_log_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logaddexp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logaddexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logcumsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logcumsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logical_and_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logical_not_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logical_or_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logical_or_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logical_xor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_logspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_long_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lu_unpack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_lu_unpack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mT_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mT_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_map_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_map_triple_nested_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_masked_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_max_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_meshgrid_list_of_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_meshgrid_variadic_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_meshgrid_variadic_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_min_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_min_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_minimum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_movedim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_movedim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_msort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nan_to_num_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nanmean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nanquantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_narrow_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_native_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_native_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ne_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ne_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_empty_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_new_empty_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nextafter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_adaptive_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_adaptive_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_alpha_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_avg_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_binary_cross_entropy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_celu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_channel_shuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_conv_transpose1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_elu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_embedding_bag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_embedding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_fractional_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_fractional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_gelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_hardsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_hardtanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_huber_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_instance_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_interpolate_area_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_interpolate_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_interpolate_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_interpolate_trilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_kl_div_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_l1_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_leaky_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_unpool1d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_unpool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_unpool2d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_max_unpool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_mish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_mse_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_multi_head_attention_forward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_multilabel_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_circular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_reflect_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_replicate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pad_replicate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pairwise_distance_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pairwise_distance_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_pixel_shuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_prelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_rms_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_selu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_silu_complex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_silu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_smooth_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_softplus_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_threshold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_unfold_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nn_functional_upsample_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nonzero_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_nonzero_static_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_fro_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_norm_nuc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_normal_in_place_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_normal_number_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ones_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ones_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ormqr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ormqr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_outer_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_pca_lowrank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_pca_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_permute_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_permute_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_pinverse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_polar_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_polygamma_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_polygamma_polygamma_n_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_polygamma_polygamma_n_4_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_positive_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_positive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_pow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_pow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_rand_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_rand_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_randint_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_randn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_randn_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_randn_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_ravel_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_real_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_remainder_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_renorm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_repeat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_repeat_interleave_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_reshape_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_reshape_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_resize__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_resize_as__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_resize_as__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_resolve_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_resolve_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_roll_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_roll_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_rot90_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_round_decimals_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_round_decimals_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_rsqrt_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_rsqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_rsub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_rsub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scalar_tensor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scan_simple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_scatter_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_searchsorted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sgn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_bartlett_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_gaussian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_general_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_hann_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_kaiser_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_signal_windows_nuttall_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_slice_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_slice_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sparse_sampled_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_bessel_y1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_entr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_hermite_polynomial_h_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_i0e_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_i1e_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_legendre_polynomial_p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_modified_bessel_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_ndtri_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_scaled_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_scaled_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_shifted_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_special_zeta_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_split_list_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_split_with_sizes_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_split_with_sizes_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sqrt_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_square_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_square_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_squeeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_squeeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_squeeze_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_squeeze_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_stack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_std_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_std_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_std_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_std_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_sum_to_size_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_svd_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_t_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_t_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_t_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_take_along_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_take_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tensor_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tensordot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_topk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_trace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_transpose_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_tril_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_triu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_true_divide_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_true_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unbind_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unbind_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unfold_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_uniform_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unique_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsafe_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsqueeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_unsqueeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_var_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_var_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_var_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_var_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_vdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_view_as_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_view_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_view_as_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_view_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_view_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_vsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_zero__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_zero__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_fn_gradgrad_zeros_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_H_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_H_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpyCatCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpyCubeCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpyMulCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpyMulScalarCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpyNMSCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpySortCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_NumpyTakeCustomOp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_T_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___getitem___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___getitem___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___radd___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rmatmul___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rmul___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rpow___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rsub___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad___rsub___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__chunk_cat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__segment_reduce_offsets_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__softmax_backward_data_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__unsafe_masked_index_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__unsafe_masked_index_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__unsafe_masked_index_put_accumulate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad__unsafe_masked_index_put_accumulate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_abs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_abs_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_acosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addcdiv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addcmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_addmv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_alias_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_all_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_allclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_aminmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_any_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_argwhere_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_argwhere_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_as_strided_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_as_strided_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_as_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_as_strided_partial_views_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_as_strided_partial_views_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_as_strided_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_as_strided_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_asin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_asinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atan2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atleast_1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atleast_2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_atleast_3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_baddbmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bernoulli_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_block_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bool_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_broadcast_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_bucketize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cartesian_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ceil_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cfloat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_chalf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_chalf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_char_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cholesky_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cholesky_inverse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cholesky_inverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cholesky_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_clamp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_clamp_max_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_clone_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_clone_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_column_stack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_column_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_combinations_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_conj_physical_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_constant_pad_nd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_copysign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_corrcoef_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cos_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cross_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_cumulative_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_deg2rad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diag_embed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diag_embed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diagflat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diagflat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diagonal_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diagonal_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_diff_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_digamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_dist_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_dot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_double_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_dsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_dsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_dstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_empty_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_empty_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_empty_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_empty_permuted_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_erf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_erfinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_exp2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_exp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_exp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_exp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_expand_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_eye_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_eye_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_fft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_hfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_hfft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_hfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_hfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ifft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ifft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ifftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ifftshift_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_ihfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_irfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_irfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fft_irfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_flatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_flip_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_flip_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fliplr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_float_power_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_floor_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_fmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_frac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_full_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ge_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_gradient_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_gt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_half_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_half_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_hash_tensor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_histogram_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_hsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_hypot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_index_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isclose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isfinite_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isnan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isreal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_isreal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_istft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_item_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_item_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_2inputs_2outputs_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_4inputs_with_extra_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_unary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_jiterator_unary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_kron_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_kthvalue_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ldexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lerp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lerp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lgamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_cholesky_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_cholesky_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_cond_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_cross_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_diagonal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eig_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eigh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_eigvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_householder_product_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_householder_product_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_inv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_inv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_ldl_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_ldl_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_ldl_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lstsq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lstsq_grad_oriented_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_lu_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_matrix_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_matrix_power_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_matrix_power_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_matrix_rank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_matrix_rank_hermitian_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_matrix_rank_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_pinv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_pinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_pinv_singular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_slogdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_solve_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_solve_triangular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_svdvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_tensorinv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_tensorinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_tensorsolve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_tensorsolve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_vector_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linalg_vector_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_linspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log1p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logaddexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logcumsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_and_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_not_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logical_or_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_long_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_lu_unpack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mH_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mT_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_select_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_var_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_masked_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_matmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_matmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_matrix_exp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_max_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_meshgrid_list_of_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_meshgrid_variadic_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_meshgrid_variadic_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_min_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_min_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_movedim_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_movedim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_multinomial_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_mv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nan_to_num_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nanquantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nansum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_narrow_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_native_dropout_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ne_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_new_empty_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_new_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_new_empty_strided_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_new_empty_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_new_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_new_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_new_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_new_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_alpha_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_avg_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_avg_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_channel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_channel_shuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv_transpose1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_ctc_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_dropout2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_dropout3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_embedding_bag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_embedding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_gelu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_grid_sample_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_group_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_hardsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_hardtanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_instance_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_interpolate_area_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_interpolate_bicubic_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_interpolate_nearest_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_l1_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_l1_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_leaky_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_linear_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_local_response_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_logsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_unpool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_unpool2d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_max_unpool3d_grad_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_mish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_mse_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pad_circular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pad_constant_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pad_constant_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pad_reflect_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pad_reflect_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pad_replicate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pad_replicate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pad_replicate_negative_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pad_replicate_negative_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pixel_shuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_relu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_rms_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_rms_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_selu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_softmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_softplus_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_softsign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_tanhshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_unfold_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_nn_functional_unfold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_norm_fro_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_norm_inf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_norm_nuc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_normal_in_place_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_normal_in_place_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ones_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ormqr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ormqr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_outer_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_permute_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_pinverse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_pinverse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_polygamma_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_polygamma_polygamma_n_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_polygamma_polygamma_n_2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_polygamma_polygamma_n_4_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_positive_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_pow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_pow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_quantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_randn_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_randn_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_ravel_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_real_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_reciprocal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_remainder_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_renorm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_repeat_interleave_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_repeat_interleave_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_reshape_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_reshape_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_reshape_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_reshape_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_resize__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_resolve_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_resolve_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_resolve_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_roll_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_roll_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_round_decimals_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_round_decimals_neg_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rsqrt_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_rsub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_reduce_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_scatter_reduce_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_searchsorted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_select_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sgn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sgn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_blackman_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_gaussian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_general_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_general_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_kaiser_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_signal_windows_nuttall_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sin_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sinc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sinh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_slice_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_slice_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_slice_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sparse_mm_reduce_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sparse_sampled_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_airy_ai_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_bessel_j1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_bessel_y1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_chebyshev_polynomial_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_erfcx_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_i1e_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_laguerre_polynomial_l_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_legendre_polynomial_p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_modified_bessel_i1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_ndtri_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_polygamma_special_polygamma_n_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_scaled_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_spherical_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_special_zeta_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_list_args_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_split_list_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sqrt_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_square_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_squeeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_squeeze_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_squeeze_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_squeeze_multiple_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_squeeze_multiple_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_stack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_stack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_std_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_std_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_std_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_std_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_stft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_sum_to_size_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_svd_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_t_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_take_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tensor_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tensordot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tensordot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tile_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_to_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_to_sparse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_to_sparse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_topk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_transpose_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_transpose_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_transpose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_transpose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_trapezoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_triangular_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tril_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_tril_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_triu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_triu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_true_divide_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unbind_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unbind_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unflatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unfold_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unfold_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_uniform_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_uniform_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unsafe_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unsafe_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unsqueeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unsqueeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unsqueeze_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_unsqueeze_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_var_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_var_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_var_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_view_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_view_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_view_as_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_view_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_view_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_view_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_vsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_vstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_zero__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_grad_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rdiv___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rdiv___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rmod___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rmul___cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rmul___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rpow___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad___rsub___cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__chunk_cat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad__native_batch_norm_legit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_abs_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_abs_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_acos_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_acosh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_acosh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addbmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addcdiv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addcmul_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addcmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addmm_decomposed_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_addmv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_allclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_aminmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_angle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_angle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_any_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_argmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_argwhere_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_as_strided_partial_views_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_asin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atan2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atan_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atanh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atleast_2d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atleast_3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_atleast_3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_baddbmm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bernoulli_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_block_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bool_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_broadcast_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_broadcast_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_bucketize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cartesian_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cdouble_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cfloat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cfloat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_chalf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cholesky_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cholesky_inverse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cholesky_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cholesky_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_clamp_min_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_clone_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_column_stack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_conj_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_constant_pad_nd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_contiguous_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_copysign_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_corrcoef_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_corrcoef_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_count_nonzero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cov_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cross_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cumprod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cumsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_cumulative_trapezoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diag_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diag_embed_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diagflat_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diagonal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diagonal_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_diagonal_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dist_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_div_floor_rounding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_dstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_einsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_einsum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_empty_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_empty_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_empty_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_empty_permuted_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_empty_permuted_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_empty_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_eq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_erf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_exp2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_exp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_expand_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_expand_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_expand_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_expand_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_exponential_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_eye_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_fft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_fft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_fft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_fftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_fftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_fftshift_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_hfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_hfft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_hfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ifft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ifft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ifft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ifft_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ifftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ifftshift_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_ifftshift_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_irfft2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_irfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_irfftn_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_rfft2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fft_rfftn_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fill_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_flip_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fliplr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fliplr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_flipud_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_float_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_float_power_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_floor_divide_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fmin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_fmod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_frac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_frexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_full_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_gather_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_gather_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_geqrf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_geqrf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_gradient_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_gradient_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_grid_sampler_2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_gt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_half_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_hash_tensor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_histogramdd_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_hsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_hsplit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_hstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_hstack_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_hypot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_igamma_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_igammac_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_imag_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_add_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_put_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_index_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isclose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isfinite_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isneginf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isposinf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isreal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_isreal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_istft_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_item_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_2inputs_2outputs_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_binary_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_binary_return_by_ref_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_jiterator_unary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_kron_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_kron_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_kthvalue_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ldexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lerp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lerp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cholesky_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_cross_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_det_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_eigh_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_eigh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_eigvals_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_eigvalsh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_householder_product_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_householder_product_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_inv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_ldl_factor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_ldl_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_ldl_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_ldl_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lstsq_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lstsq_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lstsq_grad_oriented_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lu_factor_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lu_factor_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lu_factor_ex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lu_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_lu_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_matrix_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_matrix_power_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_matrix_rank_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_matrix_rank_hermitian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_multi_dot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_norm_subgradients_at_zero_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_pinv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_pinv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_pinv_singular_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_qr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_slogdet_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_solve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_solve_ex_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_svdvals_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_svdvals_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_tensorinv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_tensorsolve_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_tensorsolve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_vander_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_vecdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_vecdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linalg_vector_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_linspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log10_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log10_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log1p_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log2_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_log_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logaddexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logcumsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logical_and_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logical_and_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logical_not_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logical_or_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logical_or_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logical_xor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logspace_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logspace_tensor_overload_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_long_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lu_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_lu_unpack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mH_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mT_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mT_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_argmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_cumprod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_cumsum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_fill_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_log_softmax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_logaddexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_logsumexp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_logsumexp_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_scatter_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_std_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_std_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_sum_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_masked_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_matmul_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_matrix_exp_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_max_binary_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_max_reduction_no_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_max_reduction_with_dim_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_maximum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_median_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_meshgrid_list_of_tensors_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_meshgrid_variadic_tensors_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_minimum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mode_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mv_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mv_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mvlgamma_mvlgamma_p_3_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nanmedian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nansum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_narrow_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_narrow_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_narrow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_narrow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_native_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_native_dropout_backward_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_native_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ne_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_empty_strided_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_full_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_full_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_ones_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_ones_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_new_zeros_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_adaptive_avg_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_adaptive_max_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_alpha_dropout_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_avg_pool2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_batch_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_celu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_channel_shuffle_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_channel_shuffle_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv3d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv_transpose1d_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_conv_transpose3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_cosine_similarity_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_dropout2d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_elu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_embedding_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_glu_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_grid_sample_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_group_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_hardshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_hardsigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_hardswish_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_hardtanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_interpolate_area_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_interpolate_bicubic_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_interpolate_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_interpolate_linear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_interpolate_nearest-exact_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_layer_norm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_linear_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_pool1d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_max_pool3d_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_mse_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_multi_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_multilabel_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_nll_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_normalize_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_normalize_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_circular_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_constant_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_replicate_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pad_replicate_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pairwise_distance_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_pdist_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_rms_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_soft_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_softshrink_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_softsign_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_threshold_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_triplet_margin_with_distance_loss_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_unfold_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_nn_functional_upsample_bilinear_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_norm_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_norm_fro_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_norm_inf_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_norm_inf_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_norm_nuc_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_norm_nuc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_normal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_normal_in_place_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ones_like_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ormqr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_pca_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_permute_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_pinverse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_polar_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_polygamma_polygamma_n_2_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_pow_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_pow_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_prod_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_put_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_qr_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_quantile_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rad2deg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rand_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_randint_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_randn_like_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_ravel_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_real_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_real_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_reciprocal_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_reciprocal_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_remainder_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_repeat_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_reshape_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_reshape_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_resize__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_resize_as__cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_resize_as__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_resolve_conj_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_resolve_neg_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_resolve_neg_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_roll_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_round_decimals_0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rsqrt_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rsqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_rsub_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scalar_tensor_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_add_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_reduce_amax_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_reduce_amin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_reduce_prod_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_scatter_reduce_sum_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_select_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_select_scatter_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_short_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sigmoid_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sigmoid_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_bartlett_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_blackman_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_gaussian_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_general_cosine_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_general_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_hamming_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_hann_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signal_windows_nuttall_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_signbit_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sin_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sinc_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sinh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_softmax_with_dtype_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_softmax_with_dtype_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sort_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sparse_mm_reduce_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sparse_sampled_addmm_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_airy_ai_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_bessel_j1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_bessel_y0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_chebyshev_polynomial_w_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_entr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_hermite_polynomial_h_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_hermite_polynomial_he_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_i0e_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_i1e_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_legendre_polynomial_p_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_modified_bessel_i0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_modified_bessel_k1_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_ndtr_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_ndtri_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_scaled_modified_bessel_k0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_shifted_chebyshev_polynomial_u_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_shifted_chebyshev_polynomial_v_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_spherical_bessel_j0_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_xlog1py_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_special_zeta_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_split_list_args_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_split_with_sizes_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_split_with_sizes_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_split_with_sizes_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sqrt_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sqrt_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_square_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_squeeze_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_squeeze_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_squeeze_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_squeeze_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_std_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_std_mean_unbiased_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_std_mean_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_std_unbiased_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_sub_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_svd_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_svd_lowrank_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_t_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_t_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tan_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tanh_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tensor_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_to_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_to_sparse_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_to_sparse_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_torch_ops_aten__safe_softmax_default_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_transpose_copy_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_transpose_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_transpose_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_triangular_solve_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tril_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_tril_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_true_divide_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unbind_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unbind_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unflatten_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unflatten_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unfold_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unsafe_chunk_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unsafe_chunk_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unsafe_split_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unsafe_split_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unsqueeze_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_unsqueeze_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_mean_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_var_mean_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_vdot_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_vdot_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_view_as_complex_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_view_as_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_view_as_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_view_copy_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_view_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_vsplit_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_vstack_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_where_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_where_cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_zero__cpu_float64, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_zeros_cpu_complex128, test/test_ops_gradients.py::TestBwdGradientsCPU::test_inplace_gradgrad_zeros_like_cpu_complex128 2025-08-14T23:29:25.4763877Z 2025-08-14T23:29:31.4934473Z Running test_ops 6/9 ... [2025-08-14 23:29:31.493187] 2025-08-14T23:29:31.4935096Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:29:31.4943342Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_ops.py', '-m', 'not serial', '--shard-id=6', '--num-shards=9', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:29:31.493809] 2025-08-14T23:30:36.5158190Z 2025-08-14T23:30:36.5159353Z test_ops 4/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_4.9_d8850303c1628c22_.log 2025-08-14T23:30:36.7404750Z Running 3832 items in this shard: test/test_ops.py::TestCommonCPU::test_compare_cpu__batch_norm_with_update_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_cfloat_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_polar_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_atleast_1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_contiguous_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_diag_embed_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_diagonal_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_exponential_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_hsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_index_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_istft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_lerp_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_logspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_narrow_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_select_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_special_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_special_zeta_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_var_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__softmax_backward_data_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_as_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_bernoulli_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_bfloat16_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_byte_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_constant_pad_nd_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_flipud_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_full_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_index_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_index_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_index_put_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_index_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_cond_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_eig_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_eigvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_lu_unpack_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_masked_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_matmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nanquantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_normal_in_place_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_ormqr_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_outer_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_slice_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_special_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_torch__scaled_mm_cpu_float8_e4m3fn, test/test_ops.py::TestCommonCPU::test_compare_cpu_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_var_mean_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_var_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_zeros_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_as_strided_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_as_strided_partial_views_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_atleast_1d_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_bfloat16_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_conj_physical_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_empty_like_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_mul_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_norm_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_select_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_squeeze_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_unflatten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_dtypes___radd___cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_T_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs__conversions_cfloat_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_add_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_amin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_any_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_broadcast_to_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_deg2rad_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_digamma_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_expand_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_fft2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_hfft2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_ifft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_ihfft2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_ihfft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_irfft2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fliplr_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fmax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_index_fill_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_linspace_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_logical_and_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_logical_xor_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_logspace_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_mul_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_narrow_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_new_full_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_alpha_dropout_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_elu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_group_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_l1_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_margin_ranking_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_relu6_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_smooth_l1_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_softplus_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_reciprocal_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_squeeze_multiple_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_view_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__upsample_bilinear2d_aa_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_alias_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_amax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_atleast_2d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_bitwise_right_shift_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_bucketize_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cholesky_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_clamp_min_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_contiguous_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cosh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cumsum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cumulative_trapezoid_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_dist_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fliplr_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_grid_sampler_2d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_hash_tensor_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_histogramdd_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_isfinite_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_jiterator_2inputs_2outputs_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_kthvalue_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_lcm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_cholesky_ex_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_vecdot_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linspace_tensor_overload_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_log10_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_log_softmax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_log_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_logspace_tensor_overload_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_var_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_mean_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_min_reduction_with_dim_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_narrow_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_adaptive_avg_pool1d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_fractional_max_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_group_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_hardtanh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_huber_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_multi_head_attention_forward_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_triplet_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_ormqr_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_outer_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_polar_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_randint_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_rot90_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_scatter_reduce_mean_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_signal_windows_blackman_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_signal_windows_gaussian_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_signal_windows_general_hamming_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_airy_ai_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_chebyshev_polynomial_t_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_chebyshev_polynomial_u_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_hermite_polynomial_h_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_ndtri_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_shifted_chebyshev_polynomial_v_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_split_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_sum_to_size_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_svd_lowrank_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_t_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_t_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_torch__scaled_mm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_unique_consecutive_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_unique_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_view_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_zeros_cpu, test/test_ops.py::TestCommonCPU::test_errors___rsub___cpu, test/test_ops.py::TestCommonCPU::test_errors__chunk_cat_cpu, test/test_ops.py::TestCommonCPU::test_errors_amax_cpu, test/test_ops.py::TestCommonCPU::test_errors_diagonal_cpu, test/test_ops.py::TestCommonCPU::test_errors_empty_permuted_cpu, test/test_ops.py::TestCommonCPU::test_errors_eq_cpu, test/test_ops.py::TestCommonCPU::test_errors_fmax_cpu, test/test_ops.py::TestCommonCPU::test_errors_gt_cpu, test/test_ops.py::TestCommonCPU::test_errors_hypot_cpu, test/test_ops.py::TestCommonCPU::test_errors_isclose_cpu, test/test_ops.py::TestCommonCPU::test_errors_le_cpu, test/test_ops.py::TestCommonCPU::test_errors_logcumsumexp_cpu, test/test_ops.py::TestCommonCPU::test_errors_logspace_cpu, test/test_ops.py::TestCommonCPU::test_errors_mul_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_gaussian_nll_loss_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_hardtanh_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_l1_loss_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_multilabel_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_prelu_cpu, test/test_ops.py::TestCommonCPU::test_errors_pow_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_randn_like_layout0_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_sum_layout0_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_zeros_like_layout4_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_chebyshev_polynomial_u_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_chebyshev_polynomial_w_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_zeta_cpu, test/test_ops.py::TestCommonCPU::test_errors_triu_cpu, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_addmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_conj_physical_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_cosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_cumsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_diff_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_dstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_exp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_hfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_ifftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_irfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_histogramdd_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_igammac_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_eig_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_lu_factor_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_qr_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_log10_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_logical_and_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_logical_or_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_maximum_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nextafter_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_normal_number_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_pow_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_reciprocal_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_scatter_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_airy_ai_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_ndtri_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_sqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_where_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices___rand___cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices___rmul___cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices___rxor___cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_addcmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_argmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_argwhere_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_asin_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_atan2_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_atleast_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_block_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_bmm_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cartesian_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_ceil_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cfloat_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_column_stack_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_copysign_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cross_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cummin_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_cumsum_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_diagflat_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_diagonal_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_div_trunc_rounding_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_dot_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_empty_like_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_empty_permuted_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_erfc_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_expand_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_fft_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_hfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ihfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ihfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ihfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_flipud_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_floor_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_frac_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_ge_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_geometric_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_heaviside_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_hypot_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_isnan_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_jiterator_binary_return_by_ref_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_householder_product_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_multi_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_vander_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_log_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_logaddexp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_logcumsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_logspace_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_long_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_sum_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_mul_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nansum_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_narrow_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_narrow_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_native_dropout_backward_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_new_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_avg_pool2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_bilinear_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_celu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_channel_shuffle_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_conv1d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_conv_transpose2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_conv_transpose3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_ctc_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_max_pool2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_poisson_nll_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_prelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_silu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_triplet_margin_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_pca_lowrank_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_repeat_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_rsub_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_add_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_reduce_mean_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sigmoid_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_sign_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_signal_windows_exponential_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_signal_windows_general_hamming_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sinc_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_chebyshev_polynomial_u_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_entr_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_log_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_modified_bessel_i1_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_modified_bessel_k1_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_scaled_modified_bessel_k0_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_xlog1py_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_zeta_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_split_list_args_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_split_with_sizes_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_stack_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_take_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_unflatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_view_as_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_view_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_vsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_vstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_amax_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_any_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_argwhere_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_asinh_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_atan2_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_contiguous_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_copysign_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_diagflat_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_empty_like_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_empty_strided_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_fftshift_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_ifftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_ihfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_flipud_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fmin_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_index_add_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_index_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_int_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_isfinite_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_jiterator_binary_return_by_ref_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_le_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_long_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_masked_select_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_max_binary_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_max_reduction_no_dim_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_min_reduction_no_dim_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_msort_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_nn_functional_channel_shuffle_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_nn_functional_pixel_shuffle_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_polygamma_polygamma_n_1_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_resize__cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_resolve_neg_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_sigmoid_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_sort_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_airy_ai_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_i0e_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_squeeze_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_squeeze_multiple_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_take_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_unsafe_split_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_vstack_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_xlogy_cpu_bool, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___radd___cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rdiv___cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rmul___cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rmul___cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_acos_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_acosh_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_add_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addcmul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addcmul_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addmm_decomposed_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_alias_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_all_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_all_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_allclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_amin_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_argmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_argmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_argmin_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atanh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atleast_2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bitwise_xor_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cat_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cauchy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cdouble_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cfloat_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_chalf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cholesky_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_clone_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_clone_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_clone_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_combinations_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_combinations_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_conj_physical_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cos_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cosh_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cross_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cumsum_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cumulative_trapezoid_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cumulative_trapezoid_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagonal_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diff_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_double_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_eq_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_exp_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_expand_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_hfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ifft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ihfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ihfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_irfft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_irfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_irfftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_irfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fill_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fliplr_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fliplr_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_full_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_full_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_gather_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ge_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_geqrf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_grid_sampler_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_heaviside_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_reduce_mean_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_inner_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isfinite_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isinf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isinf_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isreal_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_jiterator_4inputs_with_extra_args_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_jiterator_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_kthvalue_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_cholesky_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_cross_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_det_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_eigh_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_inv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_ldl_factor_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_lstsq_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_lu_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_pinv_singular_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_slogdet_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_tensorsolve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_vander_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_vector_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log2_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logcumsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logical_not_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logical_xor_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mT_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_argmin_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_logsumexp_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_softmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_matrix_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_msort_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_multinomial_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nansum_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_narrow_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_native_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_avg_pool3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_channel_shuffle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv1d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv2d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv3d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_elu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_embedding_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_max_unpool1d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_constant_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_reflect_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_replicate_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_replicate_negative_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pairwise_distance_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_softsign_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nonzero_static_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_norm_fro_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_outer_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_permute_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_polygamma_polygamma_n_3_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_reciprocal_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_reciprocal_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_renorm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_resize__cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_resize_as__cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_resolve_conj_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_round_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_round_decimals_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_searchsorted_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_short_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sign_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sinc_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sinh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_slice_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sparse_sampled_addmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_airy_ai_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_hermite_polynomial_h_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_hermite_polynomial_he_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_i0e_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_modified_bessel_k0_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_std_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_stft_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sum_to_size_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_take_along_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tan_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tensordot_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_trace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tril_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tril_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unfold_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_uniform_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unsafe_chunk_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unsafe_split_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unsqueeze_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_var_unbiased_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_view_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_vsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_zeros_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_zeros_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_numpy_ref_aminmax_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_aminmax_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_cat_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_equal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_item_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_jiterator_4inputs_with_extra_args_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_linalg_tensorinv_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_linalg_vander_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_native_layer_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_conv_transpose2d_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_signal_windows_cosine_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_squeeze_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_tile_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_unbind_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_where_cpu_complex128, test/test_ops.py::TestCommonCPU::test_out_H_cpu_float32, test/test_ops.py::TestCommonCPU::test_out___ror___cpu_int64, test/test_ops.py::TestCommonCPU::test_out___rsub___cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs__conversions_polar_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_acos_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_addcmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_all_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_as_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_atan_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_bitwise_left_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_out__refs_bitwise_xor_cpu_int64, test/test_ops.py::TestCommonCPU::test_out__refs_broadcast_shapes_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_clamp_max_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_constant_pad_nd_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_diagonal_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_fftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_hfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_ifft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_ihfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_log_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_logaddexp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_narrow_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_neg_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_new_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_hinge_embedding_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_positive_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_select_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_sin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_sqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_square_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_tan_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_view_as_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_view_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_where_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_argmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_broadcast_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_bucketize_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_clone_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_cov_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_digamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_double_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_erfc_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_hfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fmod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_gather_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_index_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_index_put_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_index_reduce_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_jiterator_2inputs_2outputs_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_lgamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_cond_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_lu_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_minimum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_mul_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_narrow_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_new_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_ctc_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_normalize_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_normal_in_place_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error__batch_norm_with_update_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_atan_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_atanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_bmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_clamp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_column_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cummin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cumsum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_div_no_rounding_mode_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_erfinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_fft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_ifftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_ihfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_kron_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_lu_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_pinv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_solve_ex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_logcumsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_logspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_pow_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_qr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_rad2deg_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_special_i0e_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_special_ndtri_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_stack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_take_along_dim_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_tan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_topk_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_trunc_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_unfold_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_vdot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_vstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_reshape_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_signal_windows_exponential_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_signal_windows_general_hamming_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_sinc_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_sinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_entr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_laguerre_polynomial_l_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_log_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_unique_consecutive_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_unravel_index_cpu_int64, test/test_ops.py::TestCommonCPU::test_out_var_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_var_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_warning__refs__conversions_chalf_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_allclose_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_bitwise_and_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_ceil_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_cos_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_count_nonzero_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_cumprod_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_irfftn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_floor_divide_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_heaviside_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_index_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_index_fill_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_item_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_linalg_vecdot_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_logaddexp2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_lt_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_meshgrid_list_of_tensors_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_new_ones_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_hinge_embedding_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_margin_ranking_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_pixel_shuffle_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_poisson_nll_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_softshrink_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_tanhshrink_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_normal_number_mean_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_permute_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_reshape_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_roll_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_rsub_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_i0e_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_sqrt_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_stft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_t_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_trunc_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_addmm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_addmm_decomposed_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_addr_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_as_strided_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_atan2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_bitwise_not_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_broadcast_tensors_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_byte_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cauchy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cdouble_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_copysign_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cross_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_diag_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_div_floor_rounding_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_expand_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_fftn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_ifft2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_flatten_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fmax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_frac_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_igamma_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_imag_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_solve_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_tensorinv_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_logspace_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_softmax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_meshgrid_list_of_tensors_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_min_reduction_no_dim_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_mm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_mul_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_native_batch_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_avg_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_binary_cross_entropy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_gelu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_interpolate_linear_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_max_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_max_unpool2d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_pixel_shuffle_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_poisson_nll_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_silu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_softplus_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_triplet_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_triplet_margin_with_distance_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_normal_in_place_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_polygamma_polygamma_n_1_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_randint_like_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_repeat_interleave_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_rot90_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_round_decimals_0_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_sgn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_signal_windows_hann_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_slice_scatter_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_hermite_polynomial_h_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_ndtri_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_spherical_bessel_j0_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_squeeze_multiple_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_std_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_unique_consecutive_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_var_unbiased_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_zeros_like_cpu, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_acosh_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_acosh_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atan_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_copysign_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_copysign_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_cos_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_deg2rad_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_digamma_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_exp2_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_exp2_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_exp_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_i0_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_ldexp_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_lgamma_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_lgamma_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log1p_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log2_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_masked_std_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_masked_var_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_1_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_0_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_3_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_3_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_4_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_4_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sigmoid_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sin_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_t_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_v_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_w_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_hermite_polynomial_h_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_laguerre_polynomial_l_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_legendre_polynomial_p_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_legendre_polynomial_p_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_t_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_xlog1py_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_xlog1py_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_zeta_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_tan_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_true_divide_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_T_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bfloat16_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bool_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_byte_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_chalf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_chalf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_chalf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_chalf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_char_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_complex_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_float_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_float_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_polar_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_abs_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_abs_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acosh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcmul_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_alias_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_alias_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_all_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_allclose_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amax_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amin_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amin_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amin_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_any_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_arange_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_scatter_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_scatter_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asinh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asinh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan2_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atanh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_1d_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_3d_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_or_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_block_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_block_diag_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_tensors_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_tensors_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_to_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bucketize_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cat_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ceil_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ceil_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ceil_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_max_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_max_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_min_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clone_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clone_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clone_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_physical_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_physical_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_physical_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_contiguous_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cos_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cos_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cos_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cosh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_count_nonzero_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_count_nonzero_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_count_nonzero_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumprod_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumsum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumsum_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_deg2rad_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_deg2rad_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_deg2rad_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_scatter_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_scatter_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_digamma_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_digamma_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_trunc_rounding_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dsplit_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dsplit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dstack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dstack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dstack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_strided_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_strided_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eq_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfc_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfc_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_as_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_as_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_as_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expm1_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exponential_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftshift_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fill_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flatten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flip_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flip_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flipud_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flipud_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_float_power_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmax_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmin_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmod_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmod_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_frac_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_frexp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gcd_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ge_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ge_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_geometric_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_geometric_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gt_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gt_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_heaviside_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hypot_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_i0_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_i0_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_igamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_igamma_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_imag_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_add_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_add_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_add_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_add_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_fill_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_fill_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_fill_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_select_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isclose_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isinf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isinf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isinf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isnan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isnan_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isneginf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_item_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_item_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_le_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_le_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lgamma_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lgamma_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_cross_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_cross_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_diagonal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_diagonal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_diagonal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_diagonal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_matrix_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_matrix_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_svdvals_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_svdvals_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_vecdot_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_vector_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_tensor_overload_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log10_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log1p_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logaddexp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_and_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_not_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_or_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_or_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_xor_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_tensor_overload_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lt_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_masked_fill_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_list_of_tensors_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_list_of_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_minimum_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_movedim_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_movedim_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_movedim_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nan_to_num_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ne_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ne_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_full_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_full_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_ones_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_zeros_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_zeros_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_celu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_channel_shuffle_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_gelu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hardshrink_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_huber_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_layer_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_log_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_log_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_margin_ranking_loss_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pairwise_distance_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pairwise_distance_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_shuffle_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_shuffle_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_unshuffle_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu6_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_selu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmin_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softshrink_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_tanhshrink_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_triplet_margin_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_triplet_margin_loss_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_triplet_margin_loss_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal_number_mean_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal_number_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal_number_mean_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_pow_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_pow_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_pow_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_pow_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_prod_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rad2deg_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_randn_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_randn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ravel_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_real_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_real_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_remainder_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_renorm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_renorm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_repeat_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_as_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_as_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_roll_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rot90_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsqrt_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsub_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsub_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_select_scatter_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sgn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sgn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sigmoid_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_signbit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_signbit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_signbit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sin_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sin_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinc_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinc_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinc_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinc_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinc_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_bessel_j0_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_bessel_j1_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_bessel_j1_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_erfcx_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1e_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_ndtr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_logit_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_3_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_5_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtr_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtri_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_xlog1py_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_split_with_sizes_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sqrt_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_square_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_multiple_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_std_mean_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sub_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sub_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sub_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_to_size_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_take_along_dim_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tan_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tan_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trace_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trace_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_true_divide_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unflatten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vsplit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_xlogy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_atan2_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_bitwise_and_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_hfft_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_gcd_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_hypot_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_igamma_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_index_select_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_lcm_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_mul_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_narrow_copy_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_special_zeta_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_trace_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_view_as_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_vsplit_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_T_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_T_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bfloat16_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bool_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_byte_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cfloat_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_char_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_char_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_char_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_complex_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_double_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_double_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_double_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_float_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_float_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_float_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_half_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_long_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_abs_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_abs_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acosh_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acosh_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_add_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_add_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcdiv_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addcmul_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addr_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addr_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_alias_copy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_alias_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_alias_copy_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_alias_copy_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amax_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amin_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amin_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_any_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_partial_views_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_partial_views_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_scatter_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_scatter_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asin_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asin_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asin_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asinh_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asinh_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan2_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan2_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan2_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan2_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atanh_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atanh_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_1d_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_1d_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_2d_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_3d_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_not_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_not_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_not_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_xor_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_xor_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_xor_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_tensors_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_tensors_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_to_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_to_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bucketize_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cat_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cat_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cauchy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cauchy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_chunk_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_max_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_max_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_min_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_min_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_min_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_physical_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_physical_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cos_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cosh_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cosh_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cosh_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_count_nonzero_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_count_nonzero_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_count_nonzero_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumprod_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumsum_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumsum_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumsum_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_deg2rad_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_deg2rad_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_deg2rad_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_copy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_copy_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_floor_rounding_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_trunc_rounding_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dstack_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dstack_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_strided_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_equal_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erf_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erf_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfc_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfc_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfc_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfinv_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfinv_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp2_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp2_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_as_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expm1_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exponential_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftn_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft2_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft2_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft2_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft2_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftshift_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftshift_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftshift_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftshift_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfft2_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfft2_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfft2_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfftn_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft2_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfftn_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfftn_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfftn_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft2_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfftn_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fill_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flatten_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flatten_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flip_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flip_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fliplr_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fliplr_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_float_power_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_float_power_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmax_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmin_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmod_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_frac_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_frexp_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_gcd_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ge_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ge_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_geometric_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_gt_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_heaviside_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hypot_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_i0_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_i0_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_igamma_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_igammac_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_copy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_select_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_select_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isclose_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isclose_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isclose_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isclose_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isfinite_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isinf_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isneginf_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isposinf_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isreal_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isreal_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_item_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_item_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lcm_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lcm_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lgamma_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lgamma_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_cross_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_cross_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_matrix_norm_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_svd_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_svdvals_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_vecdot_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_vecdot_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_vector_norm_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_vector_norm_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_tensor_overload_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_tensor_overload_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log10_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log10_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_normal_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_softmax_with_dtype_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_softmax_with_dtype_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logaddexp_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_or_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_xor_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_xor_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logsumexp_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lt_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lt_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lt_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lt_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_masked_fill_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_maximum_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mean_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_list_of_tensors_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_variadic_tensors_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mul_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nan_to_num_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_copy_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_native_layer_norm_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_neg_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_neg_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_strided_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_strided_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_strided_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_full_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_ones_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_alpha_dropout_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_alpha_dropout_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_celu_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_channel_shuffle_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_gelu_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_glu_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hardshrink_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hardtanh_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hinge_embedding_loss_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_huber_loss_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_layer_norm_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_log_softmax_with_dtype_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_log_softmax_with_dtype_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_margin_ranking_loss_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_margin_ranking_loss_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_nll_loss_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pairwise_distance_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pairwise_distance_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pdist_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_shuffle_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_shuffle_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_unshuffle_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_unshuffle_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_poisson_nll_loss_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu6_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmax_with_dtype_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmin_with_dtype_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmin_with_dtype_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_triplet_margin_loss_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_triplet_margin_loss_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_normal__in_place_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_normal__in_place_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_normal_number_mean_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ones_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ones_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ones_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_copy_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_positive_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rad2deg_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_real_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_real_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reciprocal_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_repeat_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_as_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rot90_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rot90_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rot90_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsqrt_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsqrt_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsub_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsub_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsub_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_select_scatter_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sigmoid_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sign_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sign_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sign_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_signbit_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sin_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinh_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j0_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_entr_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_erfcx_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_erfcx_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1e_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_ndtr_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_ndtr_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_softmax_with_dtype_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_softmax_with_dtype_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_softmax_with_dtype_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_logit_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_logit_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_logit_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_1_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_1_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_1_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_3_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_5_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_5_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_5_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_5_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtr_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_spherical_bessel_j0_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_xlog1py_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_xlog1py_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_split_with_sizes_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sqrt_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_square_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_copy_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_copy_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stack_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stack_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sub_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sub_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sub_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_to_size_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_copy_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_copy_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_copy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_copy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_take_along_dim_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_take_along_dim_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tan_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tan_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tan_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tanh_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tensor_split_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trace_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tril_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tril_indices_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_indices_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trunc_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_copy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_copy_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_copy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_var_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_var_mean_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vdot_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vdot_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_complex_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_copy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vsplit_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vstack_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vstack_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vstack_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vstack_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_zeros_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_T_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bool_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bool_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bool_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_byte_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_chalf_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_double_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_double_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_double_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_long_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_polar_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_polar_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_short_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_short_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acos_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acos_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acosh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_add_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_add_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addr_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_alias_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_alias_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_allclose_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amax_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amax_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amax_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amin_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_any_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_arange_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_arange_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_partial_views_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_partial_views_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_scatter_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asinh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asinh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atanh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_3d_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_not_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_not_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_or_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_or_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_or_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_or_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_right_shift_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_block_diag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_block_diag_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_shapes_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_tensors_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_to_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_to_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bucketize_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cat_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ceil_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_max_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_min_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_min_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clone_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clone_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_column_stack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_column_stack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_copysign_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cos_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cosh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cosh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_count_nonzero_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_count_nonzero_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumprod_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumprod_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumsum_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumsum_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_embed_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_embed_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_embed_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_scatter_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_floor_rounding_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_floor_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_no_rounding_mode_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_trunc_rounding_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_trunc_rounding_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dot_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dsplit_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dstack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_like_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_strided_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_strided_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erf_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfinv_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exponential_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exponential_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_float8_e5m2fnuz, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftshift_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftshift_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftshift_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fill_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fill_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fill_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fill_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flip_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flip_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flip_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flip_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flip_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fliplr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flipud_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_float_power_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_divide_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmin_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmod_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_frac_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_gcd_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ge_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_geometric_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_geometric_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_geometric_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_gt_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_heaviside_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hsplit_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_i0_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_add_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_fill_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_select_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_select_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isclose_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isfinite_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isinf_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isinf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isnan_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isnan_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isneginf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isposinf_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isposinf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isposinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isposinf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isposinf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isposinf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isreal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_item_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_item_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_le_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lerp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lgamma_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_norm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_svd_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_tensor_overload_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_tensor_overload_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log10_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log1p_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_not_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_not_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_tensor_overload_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_tensor_overload_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_variadic_tensors_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_variadic_tensors_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_movedim_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_movedim_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nan_to_num_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_native_layer_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ne_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ne_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_neg_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_neg_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_full_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_zeros_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nextafter_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_celu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_elu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hardtanh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hardtanh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hinge_embedding_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_l1_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_leaky_relu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_log_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_log_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pairwise_distance_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_shuffle_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_shuffle_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_shuffle_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_unshuffle_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softshrink_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softshrink_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_triplet_margin_loss_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_triplet_margin_loss_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_positive_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_prod_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_prod_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rad2deg_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ravel_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_real_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reciprocal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reciprocal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_round_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_round_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_round_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsqrt_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsub_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_select_scatter_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_select_scatter_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_select_scatter_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sign_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_signbit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_signbit_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_signbit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sin_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sin_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sin_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j1_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j1_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_entr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_entr_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_erfcx_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i0e_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i0e_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i0e_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1e_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_logit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_1_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_3_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_3_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_5_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_5_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtri_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtri_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_spherical_bessel_j0_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_xlog1py_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_split_with_sizes_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sqrt_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sqrt_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sqrt_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_square_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_square_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_std_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_to_size_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_take_along_dim_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tan_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tan_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tanh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tensor_split_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_to_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_true_divide_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trunc_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unflatten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unflatten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_var_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_var_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_var_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vsplit_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vstack_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vstack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_xlogy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_xlogy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_T_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bfloat16_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_byte_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cdouble_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cdouble_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cfloat_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_chalf_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_chalf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_chalf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_complex_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_complex_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_float_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_half_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_short_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_abs_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acos_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acos_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acos_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_add_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcmul_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addr_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_alias_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_alias_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_all_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amin_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_any_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_arange_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_partial_views_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_partial_views_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_partial_views_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_scatter_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asin_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asinh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asinh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asinh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan2_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atanh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atanh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_1d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_2d_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_2d_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_3d_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_3d_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_and_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_or_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_block_diag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_tensors_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ceil_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ceil_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_chunk_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_min_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clone_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_physical_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_physical_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_constant_pad_nd_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_constant_pad_nd_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_constant_pad_nd_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_constant_pad_nd_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_contiguous_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cos_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cosh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_count_nonzero_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumsum_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_deg2rad_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_deg2rad_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_embed_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_no_rounding_mode_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_no_rounding_mode_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_no_rounding_mode_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_no_rounding_mode_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_no_rounding_mode_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_trunc_rounding_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_trunc_rounding_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_trunc_rounding_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dot_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dsplit_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_strided_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eq_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eq_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_equal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_equal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfc_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfinv_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfinv_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_as_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_as_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exponential_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_float8_e5m2, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_float8_e5m2fnuz, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fill_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flip_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flip_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fliplr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fliplr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flipud_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_float_power_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_float_power_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_float_power_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmod_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_frac_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ge_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ge_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ge_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ge_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_geometric_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gt_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_heaviside_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_heaviside_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_heaviside_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_heaviside_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hsplit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hsplit_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_i0_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_i0_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_igammac_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_fill_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_fill_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_select_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_select_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_select_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isfinite_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isinf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isnan_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isnan_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isneginf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isneginf_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isneginf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isposinf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_cross_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_diagonal_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_matrix_norm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_svdvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_vecdot_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_tensor_overload_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_tensor_overload_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_tensor_overload_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log10_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log1p_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log1p_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_softmax_with_dtype_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logaddexp2_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logaddexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_and_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_not_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_xor_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_xor_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_tensor_overload_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_tensor_overload_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logsumexp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lt_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_masked_fill_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_masked_fill_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_maximum_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_list_of_tensors_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_list_of_tensors_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_minimum_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_movedim_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mul_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nan_to_num_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ne_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ne_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_neg_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_strided_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_strided_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_ones_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_ones_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_ones_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_zeros_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nextafter_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_channel_shuffle_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_channel_shuffle_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_gelu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hardtanh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hardtanh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_huber_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_l1_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_layer_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_leaky_relu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_leaky_relu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_log_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_log_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_log_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_margin_ranking_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_margin_ranking_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_mse_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pairwise_distance_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pairwise_distance_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_shuffle_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_unshuffle_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_poisson_nll_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_prelu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu6_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmin_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_tanhshrink_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_tanhshrink_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_tanhshrink_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_tanhshrink_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_threshold_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_threshold_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_threshold_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_norm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_normal__in_place_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_normal__in_place_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ones_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_positive_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_pow_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_pow_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_pow_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rad2deg_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_randn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ravel_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_real_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reciprocal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_remainder_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_remainder_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rot90_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rot90_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_round_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_round_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsqrt_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsqrt_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsub_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_select_scatter_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_select_scatter_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_select_scatter_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sgn_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sgn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sgn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sigmoid_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_signbit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sin_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinc_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinc_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j0_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j0_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j0_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j0_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j1_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_entr_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_erfcx_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_erfcx_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_erfcx_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1e_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_1_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_5_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtri_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_spherical_bessel_j0_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_xlog1py_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_xlog1py_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_split_with_sizes_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_split_with_sizes_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_split_with_sizes_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_split_with_sizes_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sqrt_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sqrt_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_square_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_square_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_square_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_multiple_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_std_mean_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_to_size_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_to_size_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_to_size_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tensor_split_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tensor_split_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tensor_split_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trace_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trace_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_triu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_triu_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_true_divide_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_true_divide_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trunc_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unflatten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_var_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vdot_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vdot_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vdot_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vdot_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vsplit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vstack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_xlogy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_zeros_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_zeros_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_zeros_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_zeros_cpu_uint8, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___radd___cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___rdiv___cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___rmul___cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___rmul___cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addcmul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_alias_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_argmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_argwhere_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_asin_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_atan2_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_baddbmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cdist_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cholesky_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_column_stack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diff_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_dsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_empty_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_expand_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_expand_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_expm1_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_ihfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_ihfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_hstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_index_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isfinite_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_lgamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_det_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_inv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_ldl_factor_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lu_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_pinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_qr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_slogdet_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_vecdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_log10_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logical_and_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mH_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_argmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_matrix_exp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_maximum_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_narrow_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_native_dropout_backward_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_ne_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pad_replicate_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_tanhshrink_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_triplet_margin_loss_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_unfold_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_pca_lowrank_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_pinverse_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_qr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_quantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_randint_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_randn_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_reciprocal_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_remainder_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_renorm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_repeat_interleave_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_reshape_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_scatter_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_select_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sin_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_slice_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_bessel_j1_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_entr_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_ndtri_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_zeta_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_split_with_sizes_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_split_with_sizes_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sqrt_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_std_unbiased_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_svd_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_take_along_dim_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_tensordot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_tile_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_to_sparse_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_trapezoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_trapz_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_triangular_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_var_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_var_unbiased_cpu_complex64, test/test_ops.py::TestCompositeComplianceCPU::test_backward_H_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward___rmul___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward___rpow___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_as_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_asin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_atan2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_baddbmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_bernoulli_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_bfloat16_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_broadcast_to_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_conj_physical_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cummin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cumulative_trapezoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_deg2rad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_diag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_diag_embed_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_digamma_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_dsplit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_expand_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_hfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_rfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_float_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_gradient_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_svdvals_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_vander_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_log2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_log_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_logaddexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_softmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_std_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_max_binary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_mul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_mv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_multi_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_prelu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_ormqr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_pca_lowrank_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_pow_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_rad2deg_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_remainder_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_renorm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_repeat_interleave_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_reshape_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_resolve_neg_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_round_decimals_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_rsub_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_slice_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_special_erfcx_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_split_with_sizes_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_squeeze_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_std_mean_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_unfold_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input___rmul___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input___rpow___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_abs_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_addbmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_as_strided_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_atleast_2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_bernoulli_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_bfloat16_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_block_diag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cartesian_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_constant_pad_nd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_contiguous_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cummax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cumprod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_diag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_ihfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_ihfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_flatten_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_flip_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_float_power_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_full_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_geometric_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_geqrf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_half_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_histogramdd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_index_reduce_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_jiterator_4inputs_with_extra_args_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_logical_or_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_matrix_exp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_maximum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_median_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_mode_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_movedim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nanmean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_mish_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_selu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_norm_inf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_norm_nuc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_ormqr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_randint_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_randn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_resolve_conj_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_rot90_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_select_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_sgn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_signal_windows_general_hamming_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_sinc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_sort_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_std_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_to_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_true_divide_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_trunc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_unfold_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_unsafe_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_var_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_view_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad___rmod___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_acos_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_alias_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_argmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_bernoulli_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cauchy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cdist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cfloat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_corrcoef_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cos_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_count_nonzero_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_div_floor_rounding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_empty_permuted_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_eq_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_exp2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_exp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_expand_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_flip_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_frac_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_histc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_i0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_jiterator_2inputs_2outputs_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_cross_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_inv_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_slogdet_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linspace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_log10_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_logical_not_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_mT_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_argmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_cumprod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_normalize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_softmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_msort_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_gelu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_glu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_normal_number_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_polar_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_renorm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_resize__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_searchsorted_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_entr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_hermite_polynomial_h_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_ndtri_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_squeeze_multiple_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_sub_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_uniform_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_view_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_zero__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator___rpow___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator__softmax_backward_data_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_combinations_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_copysign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_count_nonzero_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_diagonal_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_digamma_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_dist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_einsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_empty_strided_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_fftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fliplr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_det_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_householder_product_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_lu_factor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_lu_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_long_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_argmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_cumsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_std_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_msort_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_mv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nanmean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nanquantile_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_new_zeros_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_embedding_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_multi_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_relu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_softmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_softsign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_normal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_ones_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_pow_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_rand_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_reciprocal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_repeat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_reshape_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_resize__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_scalar_tensor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_searchsorted_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_signal_windows_hann_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_slice_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_bessel_j0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_hermite_polynomial_h_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_i1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_laguerre_polynomial_l_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_std_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_std_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_transpose_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_triangular_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_trunc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_unsafe_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_view_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay___radd___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay___rmod___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay__softmax_backward_data_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_argwhere_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_atleast_1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_atleast_3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_bernoulli_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_broadcast_shapes_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_copysign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_corrcoef_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cos_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_erf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_exp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_fftshift_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_flatten_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_float_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_floor_divide_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_full_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_ge_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_index_reduce_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_index_reduce_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_isfinite_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_ldexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_lerp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_eigvals_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_inv_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_svd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_median_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_movedim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nextafter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_celu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_normal_in_place_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_normal_number_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_rand_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_randint_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_ravel_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_real_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_select_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_signal_windows_kaiser_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_signbit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_std_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_t_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_take_along_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_tan_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_topk_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_unbind_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_var_mean_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_var_unbiased_cpu_float32, test/test_ops.py::TestMathBitsCPU::test_conj_view___rdiv___cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__chunk_cat_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_T_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_as_strided_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_atleast_2d_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_column_stack_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_conj_physical_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_contiguous_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_empty_like_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_equal_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_flatten_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_linalg_svdvals_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_linalg_vector_norm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_log2_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_narrow_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_new_empty_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_new_full_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_nn_functional_pairwise_distance_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_norm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_repeat_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_sigmoid_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_sinc_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_sqrt_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_transpose_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_triu_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_unfold_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_view_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_abs_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_addbmm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_any_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_as_strided_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_asinh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_baddbmm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_broadcast_tensors_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_chalf_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_corrcoef_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_cos_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_dot_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_expand_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_expm1_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fft_ifftn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fliplr_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_gather_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_half_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_isnan_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_jiterator_2inputs_2outputs_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_cholesky_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linspace_tensor_overload_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_logical_xor_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_masked_var_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_conv_transpose3d_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_pad_circular_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_pad_reflect_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_triplet_margin_loss_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_reshape_as_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_resize_as__cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_scatter_add_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_sin_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_slice_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_sparse_sampled_addmm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_squeeze_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_stack_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_std_mean_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_unbind_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_unfold_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_view_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_zeros_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs__conversions_bfloat16_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_addr_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_alias_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_asinh_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_atleast_1d_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_broadcast_to_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_cumprod_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_diagonal_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_diagonal_scatter_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_empty_strided_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_hsplit_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_imag_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_index_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_isinf_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_linspace_tensor_overload_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_log_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_logical_and_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_logical_xor_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_mean_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_mul_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_ne_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_new_full_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_rsqrt_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_sgn_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_stack_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_std_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_unflatten_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_vsplit_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_addcdiv_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_addmm_decomposed_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_alias_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_argwhere_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_atan_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_atleast_1d_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_bmm_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_cat_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_combinations_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_cosh_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_diagonal_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_diagonal_scatter_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_eye_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_flatten_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_full_like_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_index_fill_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_isfinite_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_isinf_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_ldexp_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_cholesky_ex_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_householder_product_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_pinv_singular_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_lu_solve_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_masked_var_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_feature_alpha_dropout_without_train_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_pixel_shuffle_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_silu_complex_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nonzero_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_norm_nuc_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_permute_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_randn_like_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_ravel_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_reshape_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_sinc_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_split_with_sizes_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_squeeze_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_stack_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_take_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_tile_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_unbind_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_unsqueeze_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_view_as_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_vstack_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_zero__cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_view_H_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view___radd___cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view___rmod___cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_cdouble_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_half_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs__conversions_short_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_allclose_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_amax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_as_strided_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_atanh_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_atleast_3d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_cat_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_clamp_min_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_clone_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_column_stack_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_deg2rad_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_diagonal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_equal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_erf_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_exponential_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_eye_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_flipud_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fmod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_isfinite_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_isnan_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_logical_or_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_logspace_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_minimum_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_mul_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_glu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_hardshrink_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_l1_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_mish_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_pdist_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_selu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_threshold_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_real_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_rsqrt_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_sgn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_sin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_entr_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_ndtri_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_spherical_bessel_j0_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_zeta_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_unfold_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_var_mean_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_view_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_abs_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_addcmul_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_addmm_decomposed_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_aminmax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_argmax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_atan_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_atleast_1d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_atleast_2d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_bernoulli_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cdouble_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cumulative_trapezoid_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_diag_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_dist_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_empty_permuted_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_erfc_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_eye_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_irfft2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_rfftn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_float_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_frac_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_histogramdd_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_hypot_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_i0_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_item_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_cross_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_eigvals_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_householder_product_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_ldl_factor_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_lstsq_grad_oriented_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_pinv_singular_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_tensorinv_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_logdet_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_logical_or_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_logit_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_median_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_conv_transpose2d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_conv_transpose3d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_glu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_max_pool1d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_mish_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_mse_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_multilabel_margin_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_pad_constant_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_pdist_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_scaled_dot_product_attention_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_softmin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_ones_like_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_pinverse_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_polygamma_polygamma_n_4_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_remainder_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_scatter_reduce_mean_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_signal_windows_hann_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_softmax_with_dtype_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_sparse_mm_reduce_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_chebyshev_polynomial_u_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_laguerre_polynomial_l_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_modified_bessel_k1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_ndtri_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_xlog1py_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_view_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_vsplit_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_vstack_cpu_float64, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_complex_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_float_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_alias_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_atanh__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_atleast_3d_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_bitwise_left_shift__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_bitwise_or__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_broadcast_shapes_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_broadcast_tensors_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_conj_physical_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_contiguous_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_copysign_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_cumprod_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_deg2rad__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_empty_strided_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_exp_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_hfft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_ifftn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_ifftshift_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_rfft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_rfftn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_floor__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_floor_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_floor_divide_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fmin_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fmod__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_frac__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_gcd_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_hypot_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_index_add_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_lerp__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_log2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_log_normal__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_logical_and_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_hardtanh_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_l1_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_leaky_relu_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_mish__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_pdist_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_softplus_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_permute_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_remainder_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_renorm_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_repeat_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_reshape_as_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_roll_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_rot90_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sgn__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sin__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sinc__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sinc_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_softmax_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_erfcx_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_log_ndtr_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_split_with_sizes_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_stack_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_std_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_to_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_unbind_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_unflatten_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_where_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_xlogy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_zero_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs__conversions_bfloat16_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs__conversions_bool_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs__conversions_cdouble_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs__conversions_char_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs__conversions_int_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_add_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_amin_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_arange_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_atan__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_atleast_3d_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_clamp_max__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_cos__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_cosh_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_erfc_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_exp2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_exp__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_fftshift_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_ge__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_geometric__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_i0__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_isfinite_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_isneginf_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_isreal_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_log10__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_log1p__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_log_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_logical_not_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_logical_or_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nan_to_num__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_native_layer_norm_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nextafter_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_margin_ranking_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_ones_like_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_pow__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_ravel_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_reciprocal_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_renorm_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sinc_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_ndtri_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_softmax_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_square__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_tril_indices_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_triu_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_trunc__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_unbind_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_unsqueeze_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_zeros_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_zeros_like_cpu, test/test_ops.py::TestFakeTensorCPU::test_fake___rmatmul___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake___rmul___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake___ror___cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_addmm_decomposed_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_argmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_argmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_asinh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_atan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_atleast_1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast___getitem___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast___rmatmul___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_bmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cartesian_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_char_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_conj_physical_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_contiguous_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cos_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_fftshift_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_irfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_full_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_geqrf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_hash_tensor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_hypot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_isclose_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_kthvalue_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_lgamma_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_eig_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_multi_dot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_logcumsumexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_lu_unpack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_argmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_mm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_msort_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_multinomial_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_native_dropout_backward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_new_ones_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_new_zeros_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_gelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_multi_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_one_hot_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_prelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_softsign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_ones_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_rad2deg_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_rand_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_reshape_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_roll_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_round_decimals_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_rsub_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_scatter_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_bessel_j1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_hermite_polynomial_h_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_i1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_modified_bessel_k1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_ndtr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_squeeze_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_std_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_trapezoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_tril_indices_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_unbind_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_unique_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_baddbmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_bool_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_broadcast_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cdist_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_clamp_min_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_combinations_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp___radd___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp___rmod___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp__batch_norm_with_update_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_addbmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_bfloat16_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cartesian_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cdist_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_chalf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_column_stack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_complex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cummin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_deg2rad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_diff_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_digamma_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_div_trunc_rounding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_erfinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_fftshift_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_ifft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_ifftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fmod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_hypot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_index_reduce_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_eigvals_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_householder_product_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_inv_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_lstsq_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_lu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_logsumexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_lu_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_min_binary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_mv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nan_to_num_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nanmean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_gelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_linear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_real_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_rot90_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_split_with_sizes_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_stack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_tan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_var_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cholesky_inverse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cross_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cummax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cumprod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cumsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cumulative_trapezoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_deg2rad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_diagonal_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_div_trunc_rounding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_dsplit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_erfinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_exp2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_expand_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_fftshift_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_hfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_hfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_hfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_ifft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_ifftshift_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_ihfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_float_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_index_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_index_reduce_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_kron_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_lerp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_lu_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_vander_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_log_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_log_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_normalize_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_matmul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_min_binary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_movedim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nanmean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_neg_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_embedding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_selu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_softplus_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_put_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_rad2deg_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_reciprocal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_sinh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_special_log_ndtr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_split_list_args_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_tan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_to_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_true_divide_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_view_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_zero__cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_digamma_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_hfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_hfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_ifft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_ihfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_irfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_floor_divide_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_hsplit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_hstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_igamma_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_lerp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_cross_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_inv_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_lu_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_log1p_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_logspace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_lt_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_log_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_max_binary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_min_binary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_movedim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_ne_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_new_ones_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nextafter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_dropout_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_elu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_multi_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_pinverse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_polar_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_ravel_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_renorm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_roll_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_round_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_searchsorted_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_sign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_signal_windows_cosine_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_sinc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_i1e_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_std_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_stft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_tensor_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_tensordot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_unique_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_unravel_index_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_var_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops___rxor___cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_abs_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_addcdiv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_addmm_decomposed_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_alias_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_aminmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_arange_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_as_strided_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_bitwise_left_shift_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_broadcast_shapes_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cholesky_inverse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_clamp_min_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_clone_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_corrcoef_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cosh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_count_nonzero_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cumsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_div_floor_rounding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_ihfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_float_power_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_floor_divide_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_geometric_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_geqrf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_gradient_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_index_reduce_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_index_reduce_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_index_reduce_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_diagonal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_eig_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_eigvals_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_ldl_factor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_qr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_slogdet_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_lt_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_lu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_lu_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_cumprod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_logaddexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_normalize_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_min_binary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_multinomial_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nanquantile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_native_batch_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_new_zeros_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_avg_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_prelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_ones_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_outer_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_polar_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sinc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_bessel_j0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_bessel_y1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_hermite_polynomial_h_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_i1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sum_to_size_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_svd_lowrank_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_tan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_trace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_trapz_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_view_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_vstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_cpu_int8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_tensor_overload_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_ones_cpu_complex32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_int8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_tensor_overload_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_tensor_overload_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_float16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_zeros_cpu_complex64, test/test_ops.py::TestTagsCPU::test_tags___radd___cpu_float32, test/test_ops.py::TestTagsCPU::test_tags___rpow___cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__chunk_cat_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_bitwise_and_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs_broadcast_to_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_cauchy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_clone_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_conj_physical_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_digamma_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_erfc_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_exp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_expm1_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_flatten_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_flipud_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_index_add_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_index_fill_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_linalg_vecdot_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_linspace_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_logaddexp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_narrow_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_new_empty_strided_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_selu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_softmax_with_dtype_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_normal__in_place_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_normal_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_ravel_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_bessel_j0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_sqrt_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_tensor_split_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_transpose_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_unflatten_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_var_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_view_as_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_xlogy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_argmin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_asinh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_atan_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_bfloat16_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_bmm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cholesky_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_conj_physical_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_copysign_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cos_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_double_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_dstack_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_expand_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_ihfftn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_flipud_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fmin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_hash_tensor_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_hsplit_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_hypot_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_isin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_jiterator_unary_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_eigvals_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_lu_solve_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_logcumsumexp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_logspace_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_lt_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_std_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_matrix_exp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_maximum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nan_to_num_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_neg_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_elu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_selu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_unfold_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_pow_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_put_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_resolve_conj_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_roll_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_round_decimals_3_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_sigmoid_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_signal_windows_exponential_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_erfcx_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_xlog1py_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_trapezoid_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_trapz_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_var_unbiased_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_view_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_vsplit_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_xlogy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_zero__cpu_float32 2025-08-14T23:30:36.9297507Z 2025-08-14T23:30:43.7518475Z Running cpp_extensions/libtorch_agnostic_extension/test/test_libtorch_agnostic 1/1 ... [2025-08-14 23:30:43.751549] 2025-08-14T23:30:43.7519463Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:30:43.7526994Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'cpp_extensions/libtorch_agnostic_extension/test/test_libtorch_agnostic.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:30:43.751549] 2025-08-14T23:30:49.8120981Z 2025-08-14T23:30:49.8122481Z cpp_extensions/libtorch_agnostic_extension/test/test_libtorch_agnostic 1/1 was successful, full logs can be found in artifacts with path test/test-reports/cpp_extensions.libtorch_agnostic_extension.test.test_libtorch_agnostic_1.1_0f589e35e646b38c_.log 2025-08-14T23:30:49.8123960Z Running 0 items in this shard: 2025-08-14T23:30:49.8124161Z 2025-08-14T23:30:56.4172659Z Running functorch/test_ops 3/8 ... [2025-08-14 23:30:56.416547] 2025-08-14T23:30:56.4173564Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:30:56.4181973Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'not serial', '--shard-id=3', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:30:56.417819] 2025-08-14T23:38:12.3894402Z 2025-08-14T23:38:12.3896501Z test_ops 5/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_5.9_7949170a2a19585e_.log 2025-08-14T23:38:12.6378968Z Running 3879 items in this shard: test/test_ops.py::TestCommonCPU::test_compare_cpu___rpow___cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_atleast_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_atleast_3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_block_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_cumsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_diagonal_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_flipud_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_index_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_linalg_svdvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_logaddexp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_new_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_new_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_normal__in_place_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_unsqueeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_view_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__unsafe_masked_index_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cholesky_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_column_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_diag_embed_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_diagonal_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_geqrf_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_hypot_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_index_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_ldexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_ldl_factor_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_lu_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_masked_log_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_masked_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_masked_normalize_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_mm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_movedim_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_multinomial_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_avg_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_glu_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_max_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_normalize_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_permute_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_rand_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_randn_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_resize_as__cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_rsub_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_special_xlog1py_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_std_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_std_mean_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_var_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_view_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_view_as_real_cpu_complex64, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_abs_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_conj_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_diag_embed_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_diagonal_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_imag_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_index_add_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_isinf_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_new_full_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_randn_like_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_split_with_sizes_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_tril_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_unsqueeze_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_vstack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_zeros_like_cpu_complex32, test/test_ops.py::TestCommonCPU::test_dtypes_H_cpu, test/test_ops.py::TestCommonCPU::test_dtypes___rxor___cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_amax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_broadcast_shapes_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_chunk_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_conj_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_cos_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_cosh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_cumsum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_empty_strided_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fft_hfft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_floor_divide_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_fmin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_frac_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_geometric_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_igammac_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_index_add_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_istft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_linalg_matrix_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_linalg_svd_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_logaddexp2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_logical_not_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_movedim_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_new_zeros_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_layer_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_leaky_relu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_mish_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_pixel_shuffle_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_normal_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_normal_number_mean_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_pow_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_repeat_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_signbit_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_sin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_i0e_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_multigammaln_mvlgamma_p_1_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_multigammaln_mvlgamma_p_3_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_xlog1py_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_vsplit_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_addmv_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_argmax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_asin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_char_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_clamp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_complex_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_conj_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_constant_pad_nd_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_diff_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_empty_permuted_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_exp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_expand_as_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_expand_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_rfft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_full_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_full_like_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_histogram_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_index_reduce_amin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_isneginf_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_jiterator_unary_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_eigvalsh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_log_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_logdet_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_logical_or_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_logit_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_logsumexp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_lu_solve_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_logsumexp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_scatter_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_max_binary_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_maximum_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_median_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_native_dropout_backward_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_new_zeros_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_adaptive_avg_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_batch_norm_without_cudnn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_binary_cross_entropy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_conv1d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_feature_alpha_dropout_without_train_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_hinge_embedding_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_layer_norm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_leaky_relu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_max_unpool2d_grad_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_normalize_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_one_hot_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_pairwise_distance_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_soft_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_unfold_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_upsample_nearest_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_polygamma_polygamma_n_3_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_prod_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_ravel_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_reshape_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_resolve_conj_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_signal_windows_hann_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_signbit_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_softmax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_sort_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_sparse_sampled_addmm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_erfcx_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_i1_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_shifted_chebyshev_polynomial_w_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_std_mean_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_stft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_tile_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_trapezoid_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_unbind_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_unravel_index_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_unsqueeze_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_var_mean_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_view_as_complex_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_xlogy_cpu, test/test_ops.py::TestCommonCPU::test_errors_atan2_cpu, test/test_ops.py::TestCommonCPU::test_errors_diag_cpu, test/test_ops.py::TestCommonCPU::test_errors_dstack_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_irfft2_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_rfft_cpu, test/test_ops.py::TestCommonCPU::test_errors_fliplr_cpu, test/test_ops.py::TestCommonCPU::test_errors_histogramdd_cpu, test/test_ops.py::TestCommonCPU::test_errors_index_add_cpu, test/test_ops.py::TestCommonCPU::test_errors_linalg_lstsq_grad_oriented_cpu, test/test_ops.py::TestCommonCPU::test_errors_logical_xor_cpu, test/test_ops.py::TestCommonCPU::test_errors_lt_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_avg_pool1d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_conv3d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_soft_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_errors_polar_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_mul_layout4_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_legendre_polynomial_p_cpu, test/test_ops.py::TestCommonCPU::test_errors_vdot_cpu, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_addcmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_addmm_decomposed_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_aminmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_atan2_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_ihfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_rfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_rfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_float_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fmod_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_frexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_hash_tensor_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_index_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_isneginf_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_log_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_logical_xor_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_multinomial_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_outer_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_polar_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_hermite_polynomial_h_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_i0e_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_modified_bessel_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_tensordot_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_triu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices__chunk_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices__segment_reduce_offsets_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices__unsafe_masked_index_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_addbmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_addmv_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_amax_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_angle_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_arange_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_arange_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_as_strided_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_as_strided_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_atan_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_atanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_bfloat16_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cdouble_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_chalf_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_conj_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_cumsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_diagonal_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_div_floor_rounding_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_erf_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_erf_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_expm1_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ifftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_irfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_irfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_rfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_flatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_flatten_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_full_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_full_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_full_like_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_gradient_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_gt_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_hsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_i0_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_fill_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_int_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_isin_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_isnan_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_isposinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_kthvalue_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_ldl_factor_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_ldl_factor_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_pinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_log10_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_log2_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_log_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_logical_and_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_argmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_argmin_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_fill_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_log_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_min_reduction_with_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nan_to_num_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_new_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_new_empty_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_conv3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_kl_div_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_linear_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_multi_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pdist_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pixel_shuffle_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pixel_unshuffle_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_rrelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_positive_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_prod_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_reshape_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_searchsorted_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_select_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_signal_windows_nuttall_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_sin_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_airy_ai_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_bessel_j0_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_hermite_polynomial_he_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_modified_bessel_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_ndtr_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_xlog1py_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_square_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_squeeze_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_squeeze_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_stft_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_t_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_t_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_tensordot_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_topk_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_transpose_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_tril_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_triu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_unfold_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_unique_consecutive_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_unique_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_var_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_addr_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_cat_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_erf_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_expm1_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_fft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_fftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_hfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fft_rfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_flatten_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_float_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_full_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_ge_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_isnan_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_isreal_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_ldexp_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_max_reduction_with_dim_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_mode_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_nansum_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_new_empty_strided_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_nn_functional_feature_alpha_dropout_without_train_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_nn_functional_pixel_unshuffle_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_outer_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_polygamma_polygamma_n_0_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_polygamma_polygamma_n_4_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_prod_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_ravel_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_reshape_as_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_rot90_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_scalar_tensor_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_sign_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_sinc_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_slice_scatter_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_i1e_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_polygamma_special_polygamma_n_0_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_sum_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_tan_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_true_divide_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_unfold_cpu_bool, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_H_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_T_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rmatmul___cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rpow___cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rsub___cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples__unsafe_masked_index_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_abs_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addmm_decomposed_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_aminmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_aminmax_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_arange_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_as_strided_partial_views_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_asin_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_block_diag_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_broadcast_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_broadcast_to_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_byte_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_char_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cholesky_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_clamp_max_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_clamp_min_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cummin_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_diagflat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_dist_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_dot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_dsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_dstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_empty_permuted_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_equal_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_exponential_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_hfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_hfftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ifftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_irfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_rfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_float_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fmax_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fmin_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_frac_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_geometric_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_gradient_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_half_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_hash_tensor_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_hsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_add_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_fill_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_reduce_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_index_reduce_amin_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_inner_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isclose_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isreal_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_item_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_jiterator_unary_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_lerp_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_inv_ex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_inv_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_multi_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_pinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_pinv_hermitian_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_qr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_qr_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linspace_tensor_overload_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_log_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logical_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logical_xor_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_lu_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_argmax_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_fill_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_maximum_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_meshgrid_list_of_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mm_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_movedim_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mul_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nan_to_num_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_narrow_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_narrow_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_narrow_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_new_zeros_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_adaptive_max_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv_transpose2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv_transpose2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_hardtanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_multi_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_reflect_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_prelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_relu6_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_relu_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_rms_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_softmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_triplet_margin_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_unfold_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_norm_inf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_normal_in_place_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ones_like_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ormqr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_put_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_real_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_reshape_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_resize__cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_rsub_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_reduce_amin_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_reduce_mean_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sgn_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_signal_windows_gaussian_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_slice_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_chebyshev_polynomial_w_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_erfcx_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_laguerre_polynomial_l_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_modified_bessel_i1_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_polygamma_special_polygamma_n_0_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_shifted_chebyshev_polynomial_v_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_split_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_split_with_sizes_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_split_with_sizes_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_square_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_squeeze_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_squeeze_multiple_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_stack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sum_to_size_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_svd_lowrank_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tan_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_trace_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_transpose_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_transpose_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unbind_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unbind_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unfold_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unsqueeze_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_var_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_vdot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_vdot_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_view_as_real_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_vstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_numpy_ref_addbmm_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_allclose_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_argwhere_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_broadcast_tensors_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_broadcast_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_broadcast_to_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_clamp_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_diagflat_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_linalg_tensorinv_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_linalg_vander_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_conv_transpose1d_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_pairwise_distance_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_rms_norm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_signal_windows_hamming_cpu_float64, test/test_ops.py::TestCommonCPU::test_out___rdiv___cpu_float32, test/test_ops.py::TestCommonCPU::test_out___rxor___cpu_int64, test/test_ops.py::TestCommonCPU::test_out__refs__conversions_bfloat16_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs__conversions_int_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_arange_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_asinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_cauchy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_ceil_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_clamp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_clamp_min_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_conj_physical_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_diagonal_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_dstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_erf_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_expand_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_exponential_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_ifft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_ihfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fmod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_index_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_isreal_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_istft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out__refs_le_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_linalg_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_logical_or_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_maximum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_mul_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_threshold_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_normal__in_place_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_normal_number_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_rad2deg_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_reshape_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_rsub_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_sgn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_sign_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_erfcx_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_log_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_sub_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_t_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_unbind_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_vstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__softmax_backward_data_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_acos_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_addmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_aminmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_atan2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_atleast_1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_bitwise_left_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_out_char_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_cholesky_inverse_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_cholesky_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_combinations_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_cos_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_expand_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_expm1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_irfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_rfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_flatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_frac_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_hash_tensor_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_hypot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_integral_dtype__refs_prod_cpu_int16, test/test_ops.py::TestCommonCPU::test_out_isfinite_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_det_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_eigh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_multi_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_logical_or_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_median_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_multinomial_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nansum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_neg_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_new_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_rms_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_threshold_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_ormqr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_positive_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_ravel_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_repeat_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_addbmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_addcmul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_addcmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cholesky_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_copysign_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_expm1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_ifft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_ihfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_irfft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_irfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_irfft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_float_power_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_cholesky_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_cholesky_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_eigvals_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_inv_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_inv_ex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_lu_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_multi_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_norm_subgradients_at_zero_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_svdvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_tensorsolve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_vecdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_log_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_logcumsumexp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_masked_select_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_mm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_mul_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nn_functional_normalize_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_pow_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_renorm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_renorm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_scatter_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_special_i1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sqrt_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_squeeze_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_std_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_true_divide_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_unbind_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_unbind_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_scalar_tensor_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_sign_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_signal_windows_blackman_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_bessel_j1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_std_mean_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_stft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_to_sparse_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_transpose_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_true_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_trunc_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_view_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_vsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_warning_H_cpu, test/test_ops.py::TestCommonCPU::test_out_warning___rmul___cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs__conversions_bool_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs__conversions_float_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs__conversions_half_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs__conversions_polar_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_asinh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_atan2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_atan_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_atleast_2d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_diagonal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_empty_like_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_expm1_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_fft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_fftshift_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_ifftn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_ihfftn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_rfft2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_geometric_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_hypot_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_igammac_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_isclose_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_isinf_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_le_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_linspace_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_log_normal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_new_zeros_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_glu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_mish_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_relu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_permute_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_pow_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_ravel_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_sign_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_signbit_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_erfcx_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_squeeze_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_tensor_split_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_tril_indices_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_unflatten_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_unfold_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_zeros_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__segment_reduce_lengths_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__unsafe_masked_index_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_acos_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_acosh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_addcmul_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_addmv_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_all_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_amin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_as_strided_scatter_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_broadcast_shapes_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cfloat_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_chalf_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_char_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cholesky_inverse_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_column_stack_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_complex_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_conj_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_digamma_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_dot_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_dstack_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_hfft2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_ihfft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_ihfftn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_irfft2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fill_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_flipud_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_float_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_floor_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_gcd_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_gradient_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_grid_sampler_2d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_half_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_index_reduce_amin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_index_reduce_mean_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_ldexp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_svd_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_vector_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_log10_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_log_normal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_logaddexp2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_logical_not_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_cumprod_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_softmin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_matmul_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_max_pool2d_with_indices_backward_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_minimum_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_multinomial_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_mvlgamma_mvlgamma_p_5_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_ne_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_adaptive_avg_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_avg_pool1d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_conv2d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_interpolate_area_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_l1_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_margin_ranking_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_max_unpool3d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_max_unpool3d_grad_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_multilabel_soft_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_normalize_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_upsample_bilinear_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nonzero_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_norm_fro_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_permute_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_polygamma_polygamma_n_2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_randn_like_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_repeat_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_reshape_as_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_searchsorted_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_signal_windows_cosine_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_sinc_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_airy_ai_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_bessel_y0_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_chebyshev_polynomial_v_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_laguerre_polynomial_l_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_split_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_split_with_sizes_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_to_sparse_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_torch_ops_aten__efficient_attention_forward_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_tril_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_triu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_view_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_view_cpu, test/test_ops.py::TestCommonCPU::test_out_zero__cpu_float32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_acos_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_asinh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atanh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_cosh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_deg2rad_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_digamma_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_div_no_rounding_mode_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erf_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erfinv_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_exp_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_expm1_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_float_power_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_lgamma_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log10_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_3_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_3_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_5_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_0_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_2_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_2_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_3_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_reciprocal_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_rsqrt_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sinh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_u_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_v_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_hermite_polynomial_h_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_hermite_polynomial_he_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_hermite_polynomial_he_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_laguerre_polynomial_l_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_u_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_u_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_v_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_v_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_w_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sqrt_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_xlogy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_T_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bfloat16_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bool_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bool_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_char_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_complex_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_double_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_half_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_int_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_abs_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_abs_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_abs_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acos_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acosh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acosh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcdiv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addr_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addr_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_alias_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_all_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_all_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_allclose_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_allclose_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amax_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_any_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_arange_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_partial_views_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_partial_views_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_partial_views_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_partial_views_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_partial_views_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_partial_views_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_scatter_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asin_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asin_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asin_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_3d_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_3d_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_3d_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_or_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_or_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_xor_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_xor_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_block_diag_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_tensors_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_to_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bucketize_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bucketize_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bucketize_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bucketize_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cat_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cat_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_max_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_min_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clone_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_column_stack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_physical_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_constant_pad_nd_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_contiguous_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_contiguous_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_copysign_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cos_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cos_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cosh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cosh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumprod_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumsum_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumsum_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumsum_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_deg2rad_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_deg2rad_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_embed_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_embed_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_scatter_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_digamma_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_digamma_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_floor_rounding_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_floor_rounding_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_no_rounding_mode_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_no_rounding_mode_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_no_rounding_mode_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dot_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dot_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dsplit_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dstack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_like_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_like_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_like_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_strided_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_strided_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eq_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eq_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_equal_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_equal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_equal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_equal_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erf_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfc_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfc_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfinv_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expm1_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expm1_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exponential_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftshift_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftshift_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ifftshift_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_rfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fill_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fill_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flatten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flatten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flatten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fliplr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fliplr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fliplr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_divide_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmax_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmin_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmin_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmod_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_frac_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gcd_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ge_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_geometric_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gt_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_gt_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_heaviside_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_heaviside_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hstack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hypot_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_igamma_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_igammac_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_fill_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_select_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isclose_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isinf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isnan_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isneginf_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isneginf_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isneginf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isreal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isreal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_le_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lerp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_diagonal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_diagonal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_vecdot_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_vecdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log10_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log10_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log1p_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logaddexp2_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_and_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_not_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_or_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_or_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_xor_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_masked_fill_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_masked_fill_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_maximum_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mean_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_variadic_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_variadic_tensors_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_variadic_tensors_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_minimum_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_minimum_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_minimum_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mul_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nan_to_num_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_full_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_zeros_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_celu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_channel_shuffle_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_channel_shuffle_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_elu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_leaky_relu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_log_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_log_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_margin_ranking_loss_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pairwise_distance_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_unshuffle_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_unshuffle_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_relu_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_smooth_l1_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmin_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmin_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_threshold_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_threshold_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_threshold_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_positive_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ravel_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reciprocal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reciprocal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_remainder_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_renorm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_as_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_roll_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_roll_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rot90_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsqrt_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sgn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sigmoid_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sigmoid_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sigmoid_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sign_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_signbit_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinc_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_bessel_j0_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_bessel_j0_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_bessel_j1_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_entr_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_entr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i0e_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i1e_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_logit_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_3_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtri_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_zeta_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_zeta_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_zeta_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_split_with_sizes_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_split_with_sizes_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_split_with_sizes_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sqrt_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_multiple_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_multiple_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_multiple_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_multiple_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_multiple_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stack_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_take_along_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tan_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tan_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tan_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tan_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tanh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tensor_split_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_to_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trace_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trace_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trunc_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trunc_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unflatten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unflatten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_var_mean_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_var_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_var_mean_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vdot_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vsplit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_xlogy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_xlogy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_as_strided_scatter_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_diag_embed_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_dot_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_dstack_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_exponential_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_ifft2_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fliplr_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_hsplit_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_igammac_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_nn_functional_poisson_nll_loss_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_nn_functional_triplet_margin_loss_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_rot90_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_sub_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_triu_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_view_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bfloat16_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cdouble_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cdouble_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cdouble_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cfloat_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cfloat_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_chalf_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_double_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_double_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_float_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_float_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_half_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_int_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_int_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_long_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_abs_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_abs_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_abs_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acos_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addr_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addr_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_alias_copy_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_allclose_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amax_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amax_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amax_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_any_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_arange_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_arange_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_copy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_partial_views_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_scatter_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asin_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atan_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atanh_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atanh_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_2d_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_2d_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_2d_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_3d_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_and_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_and_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_right_shift_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_xor_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_block_diag_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_tensors_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_tensors_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_to_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bucketize_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ceil_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ceil_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ceil_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_chunk_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_chunk_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_chunk_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_chunk_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_max_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clone_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clone_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clone_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_constant_pad_nd_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_constant_pad_nd_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_constant_pad_nd_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_constant_pad_nd_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_contiguous_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_contiguous_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_copysign_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_copysign_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cos_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cosh_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_count_nonzero_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumprod_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumprod_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_deg2rad_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_deg2rad_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_copy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_copy_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_digamma_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_digamma_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_digamma_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_floor_rounding_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_no_rounding_mode_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_trunc_rounding_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_trunc_rounding_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dsplit_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dsplit_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dstack_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dstack_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dstack_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dstack_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_strided_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_strided_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eq_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_equal_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfinv_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp2_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp2_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_copy_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_copy_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_copy_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expm1_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_float8_e4m3fnuz, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft2_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftn_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftshift_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft2_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfftn_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft2_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft2_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfft2_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfft_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfft_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfftn_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft2_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfftn_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfftn_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfftn_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fill_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fill_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fill_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flatten_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flatten_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flatten_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flatten_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flip_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flip_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flipud_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_float_power_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_divide_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_divide_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmax_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ge_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_geometric_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_geometric_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_gt_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hsplit_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_i0_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_i0_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_i0_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_imag_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_copy_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_fill_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_select_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isfinite_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isinf_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isinf_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isnan_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isneginf_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isneginf_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isreal_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_item_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lcm_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lcm_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_le_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_le_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_le_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lgamma_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_vector_norm_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_vector_norm_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_tensor_overload_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_tensor_overload_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_tensor_overload_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log2_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log2_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_normal_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_softmax_with_dtype_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logaddexp2_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logaddexp2_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logaddexp_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_and_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_and_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_not_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_not_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_or_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_xor_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_tensor_overload_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_tensor_overload_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logsumexp_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_masked_fill_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_maximum_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_list_of_tensors_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_variadic_tensors_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_variadic_tensors_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_minimum_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_minimum_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mul_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_copy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ne_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_neg_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_neg_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_strided_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_strided_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_full_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_full_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_ones_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_zeros_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_dropout_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_elu_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hardshrink_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hardtanh_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hinge_embedding_loss_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_huber_loss_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_huber_loss_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_l1_loss_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_l1_loss_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_l1_loss_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_log_softmax_with_dtype_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_margin_ranking_loss_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pairwise_distance_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_shuffle_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_shuffle_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_unshuffle_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_poisson_nll_loss_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu6_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu6_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu6_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_selu_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_selu_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_smooth_l1_loss_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmin_with_dtype_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softplus_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_tanhshrink_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_threshold_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_threshold_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_threshold_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_normal_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ones_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ones_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ones_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_copy_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_positive_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_positive_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_prod_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_prod_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rad2deg_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_randn_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_randn_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_randn_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_real_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_real_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reciprocal_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reciprocal_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reciprocal_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_repeat_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_roll_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_roll_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rot90_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_round_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsqrt_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsqrt_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsub_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_select_scatter_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_select_scatter_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sgn_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sgn_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sgn_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sigmoid_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sign_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_signbit_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_softmax_with_dtype_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_softmax_with_dtype_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j0_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_entr_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_erfcx_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_erfcx_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i0e_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i0e_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i0e_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1e_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_softmax_with_dtype_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_3_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_spherical_bessel_j0_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_spherical_bessel_j0_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_split_with_sizes_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_split_with_sizes_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sqrt_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_copy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_copy_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_copy_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_multiple_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stack_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_std_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sub_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_to_size_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_to_size_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_to_size_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tan_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tan_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tan_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tanh_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tensor_split_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_to_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_to_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_copy_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_copy_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_copy_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tril_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tril_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tril_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_copy_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_copy_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_copy_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unflatten_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_copy_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_copy_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_var_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_var_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_var_mean_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_complex_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_copy_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_copy_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_copy_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vstack_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vstack_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_where_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_xlogy_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_zeros_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_zeros_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_zeros_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bool_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bool_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bool_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cdouble_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cfloat_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_chalf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_chalf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_char_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_char_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_char_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_double_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_half_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_int_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_long_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_short_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acos_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acos_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acosh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acosh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_add_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcdiv_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_alias_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_alias_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_all_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_all_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_all_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_allclose_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_any_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_any_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_any_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_arange_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_arange_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_scatter_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_1d_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_1d_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_1d_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_2d_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_3d_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_and_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_and_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_left_shift_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_not_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_xor_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_block_diag_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_block_diag_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_tensors_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cat_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cat_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cat_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cauchy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ceil_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ceil_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_max_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_max_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clone_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_physical_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_physical_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_contiguous_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_contiguous_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_contiguous_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cos_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cosh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cosh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_count_nonzero_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_count_nonzero_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumprod_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumsum_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_deg2rad_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_embed_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_scatter_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_digamma_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_floor_rounding_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_floor_rounding_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_floor_rounding_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_floor_rounding_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_no_rounding_mode_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dot_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dot_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dot_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dot_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dsplit_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dsplit_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_like_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_strided_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_strided_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_strided_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eq_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eq_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eq_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eq_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erf_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfinv_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfinv_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfinv_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_as_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expm1_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftshift_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fill_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flip_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flip_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fliplr_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fliplr_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_float_power_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_float_power_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_float_power_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_divide_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_divide_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmin_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmod_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_frac_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_frac_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_frexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_gcd_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ge_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_geometric_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_gt_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_gt_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_heaviside_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_heaviside_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_heaviside_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hypot_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_i0_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_i0_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_add_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_add_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_fill_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_select_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_select_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_select_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_select_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isfinite_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isinf_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isinf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isinf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isneginf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isreal_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isreal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_istft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_item_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_le_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_le_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_cross_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_diagonal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_diagonal_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_diagonal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_matrix_norm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_svdvals_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log10_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log1p_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log2_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log2_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_and_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_not_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_not_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_or_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_or_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_tensor_overload_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_tensor_overload_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lt_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lt_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_list_of_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_list_of_tensors_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_list_of_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_minimum_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mul_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mul_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nan_to_num_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_native_layer_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ne_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_neg_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_strided_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_full_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_zeros_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_zeros_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_alpha_dropout_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_elu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_gelu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hardshrink_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hardtanh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hardtanh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_l1_loss_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_log_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_margin_ranking_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_mish_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pairwise_distance_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_unshuffle_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu6_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmin_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_threshold_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_triplet_margin_loss_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_norm_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_normal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ones_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ones_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ones_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ones_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_prod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_prod_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rad2deg_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_randn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ravel_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ravel_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ravel_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_real_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_real_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reciprocal_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_remainder_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_renorm_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_renorm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_renorm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_repeat_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_repeat_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_roll_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_roll_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rot90_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_round_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsqrt_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsub_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_select_scatter_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sgn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sigmoid_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sigmoid_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sigmoid_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sign_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sign_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sign_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_signbit_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinc_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j1_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i0e_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i0e_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1e_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1e_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_ndtr_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_logit_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_1_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_5_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtri_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtri_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_spherical_bessel_j0_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_xlog1py_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_zeta_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_square_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_square_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_std_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_std_mean_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_copy_cpu_uint8, 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_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_take_along_dim_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tanh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tanh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tanh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_to_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_to_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_to_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trace_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trace_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_indices_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_true_divide_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unflatten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unflatten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vdot_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vdot_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_as_complex_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vsplit_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vsplit_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vsplit_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vstack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vstack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bfloat16_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bool_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bool_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cdouble_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cdouble_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cdouble_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cfloat_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_cfloat_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_chalf_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_chalf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_chalf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_char_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_char_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_float_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_float_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_float_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_long_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_abs_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acos_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acosh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_add_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_add_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcmul_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcmul_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcmul_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addr_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_alias_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_alias_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_alias_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_all_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_all_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_all_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amax_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_any_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_arange_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_arange_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_arange_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asin_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asin_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atanh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_1d_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_2d_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_2d_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_3d_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_3d_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_not_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_or_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_xor_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_block_diag_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_block_diag_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_block_diag_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bucketize_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bucketize_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cauchy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_max_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_min_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clone_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_physical_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_physical_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_constant_pad_nd_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_contiguous_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_contiguous_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_contiguous_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_copysign_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_copysign_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_copysign_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cos_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cos_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cosh_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_count_nonzero_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumprod_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_deg2rad_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_scatter_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_digamma_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_digamma_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dot_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dot_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dsplit_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dstack_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dstack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dstack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dstack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_like_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_like_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eq_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_equal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_equal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfc_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfc_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_as_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expm1_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftshift_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftshift_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftshift_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifftshift_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fill_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fill_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flatten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flatten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flatten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flatten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flip_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fliplr_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flipud_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flipud_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flipud_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_divide_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_divide_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_divide_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmod_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_frexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ge_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_geometric_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hsplit_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hsplit_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hstack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hstack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hstack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_add_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_fill_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_select_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_select_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isfinite_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isfinite_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isinf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isnan_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isnan_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isneginf_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isneginf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isneginf_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isposinf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isreal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isreal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isreal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isreal_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_item_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_item_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_item_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_item_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lgamma_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_svdvals_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_vecdot_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_vecdot_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_tensor_overload_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_tensor_overload_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_tensor_overload_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log10_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log1p_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log2_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logaddexp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_and_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_and_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_not_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_or_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_or_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_or_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_xor_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_tensor_overload_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_tensor_overload_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lt_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lt_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_maximum_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_list_of_tensors_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_variadic_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_variadic_tensors_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_variadic_tensors_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_minimum_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_minimum_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mul_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mul_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nan_to_num_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nan_to_num_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nan_to_num_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_native_layer_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ne_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ne_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_neg_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_neg_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_strided_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_full_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_ones_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_ones_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_zeros_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_channel_shuffle_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_elu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_group_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hardshrink_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hinge_embedding_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_huber_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_l1_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_log_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_log_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_margin_ranking_loss_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_mish_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pairwise_distance_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_shuffle_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_shuffle_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_poisson_nll_loss_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_prelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu6_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_triplet_margin_loss_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_norm_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_normal_number_mean_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ones_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ones_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_positive_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_pow_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_prod_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_prod_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_prod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_prod_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rad2deg_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rad2deg_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ravel_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ravel_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ravel_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ravel_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_real_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_remainder_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_repeat_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_repeat_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_repeat_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_repeat_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_as_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_roll_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_roll_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_round_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsub_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sgn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sgn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sgn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sigmoid_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sign_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sin_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sin_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinc_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinc_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j1_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j1_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_entr_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_erfcx_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_ndtr_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_softmax_with_dtype_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_3_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_3_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_3_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtr_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_spherical_bessel_j0_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_spherical_bessel_j0_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_xlog1py_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_split_with_sizes_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_split_with_sizes_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sqrt_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_square_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_std_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sub_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sub_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_to_size_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_take_along_dim_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tan_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tanh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_to_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tril_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tril_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tril_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_triu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_triu_indices_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_true_divide_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trunc_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trunc_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unflatten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unflatten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unflatten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unflatten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_var_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vdot_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vdot_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vsplit_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vstack_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_where_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_abs_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addcdiv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addmv_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addr_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_all_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_allclose_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_angle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_argwhere_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_bucketize_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cdouble_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_combinations_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_conj_physical_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cos_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_count_nonzero_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cumsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diagflat_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diagonal_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_dstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_empty_strided_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_erfinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_exp2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_expand_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_fft2_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_fft_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_rfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_float_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fmod_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_full_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_geometric_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_geqrf_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_half_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_histogram_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_hypot_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_igamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_imag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_index_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_index_fill_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isposinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_jiterator_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_kthvalue_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_lerp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_cholesky_ex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_lu_factor_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linspace_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linspace_tensor_overload_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_log_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_log_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_cumprod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_fill_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_prod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_select_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_meshgrid_list_of_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_meshgrid_variadic_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_min_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_minimum_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_multinomial_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nanmedian_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nanquantile_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_narrow_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_new_empty_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_avg_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_celu_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_conv1d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_conv2d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_conv_transpose1d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_conv_transpose2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_max_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_max_unpool1d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_mish_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_rms_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_softsign_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nonzero_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nonzero_static_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_norm_fro_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_norm_nuc_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_normal_in_place_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_permute_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_prod_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_resolve_conj_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_rsqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signal_windows_cosine_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signal_windows_nuttall_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sort_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_i0e_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_split_list_args_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_squeeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_squeeze_multiple_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sum_to_size_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_tensor_split_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_tensor_split_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_transpose_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_trapezoid_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unfold_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unsafe_chunk_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_var_mean_unbiased_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_var_mean_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_vsplit_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_xlogy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_T_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward___rmatmul___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward__batch_norm_with_update_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_abs_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_block_diag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cdouble_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cholesky_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_clone_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_constant_pad_nd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_copysign_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cumprod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_erf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_expand_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_expand_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_ifftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_irfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_gather_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_hsplit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_index_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_cross_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_multi_dot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_tensorsolve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_logaddexp2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_logit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_logsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_cumsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_logsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_masked_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nan_to_num_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nanmean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_native_layer_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_neg_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_ctc_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_elu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_normalize_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_relu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_norm_fro_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_permute_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_permute_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_polar_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_positive_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_resolve_conj_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_roll_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_round_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_select_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_sort_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_squeeze_multiple_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_sum_to_size_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_to_sparse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_trace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_transpose_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_tril_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_trunc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_unbind_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_unfold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_vsplit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_zero__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input___rsub___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input__chunk_cat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_addcmul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_bmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_byte_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_ceil_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cfloat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cholesky_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_clamp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_complex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_deg2rad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_diagonal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_digamma_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_einsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_exp2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_expand_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_fftshift_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_hfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_float_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_ge_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_hypot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_index_reduce_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_isin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_jiterator_binary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_kron_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_kthvalue_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_diagonal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_eigh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_lu_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_svd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_vander_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_vecdot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_log_normal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_log_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_logdet_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_lt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_log_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_logsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_matmul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_max_binary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_msort_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_multinomial_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_mv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_narrow_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_native_dropout_backward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_new_ones_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_new_zeros_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_conv_transpose1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_conv_transpose2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_relu6_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_silu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_softmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_normal_in_place_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_normal_number_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_pca_lowrank_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_pinverse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_rad2deg_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_repeat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_rsub_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_short_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_sin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_slice_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_xlog1py_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_split_list_args_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_stft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_transpose_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_triu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_unsqueeze_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_view_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_view_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_vstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_T_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad__unsafe_masked_index_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_abs_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_addbmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_addmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_addmv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_addr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_argmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_argwhere_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_atanh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_bool_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_broadcast_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_byte_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_chalf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cov_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cummin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_diagflat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_erfc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_erfinv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_geometric_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_hstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_int_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_isin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_kron_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_ldl_factor_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_log1p_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_logit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_logsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_lu_unpack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_std_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_var_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_max_binary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_mm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_narrow_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_new_full_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nextafter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_kl_div_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_linear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_max_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_multi_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_norm_fro_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_reciprocal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_round_decimals_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_rsqrt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_select_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_signal_windows_hamming_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_slice_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_i0e_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_special_zeta_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_std_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_stft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_sum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_sum_to_size_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_tile_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_view_as_complex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_view_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_vsplit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_addcdiv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_argmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_atleast_3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_broadcast_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cholesky_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_clamp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_corrcoef_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cummin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_diag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_empty_permuted_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_erf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_exp2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_expand_as_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_rfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_flipud_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_gradient_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_hypot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_igammac_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_index_add_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_ldl_factor_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_lstsq_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_qr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_log10_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_log2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_log_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_logsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_lu_unpack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_cumprod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_logsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_masked_select_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_mm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_native_dropout_backward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_elu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_glu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_kl_div_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_max_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_max_unpool1d_grad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_selu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_silu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_pca_lowrank_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_randn_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_repeat_interleave_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_select_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_signal_windows_cosine_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_signal_windows_gaussian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_sort_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_sparse_mm_reduce_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_shifted_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_std_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_sum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_sum_to_size_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_tensor_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_to_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_unbind_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_unsqueeze_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay__upsample_bilinear2d_aa_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_addcmul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_addmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_all_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_atanh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_baddbmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_combinations_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cross_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cumsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_eq_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_expm1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_fft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_irfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_half_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_i0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_igamma_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_int_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_isinf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_multi_dot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_pinv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_qr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_log10_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_log_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_log_normal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_logical_and_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_lt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_lu_unpack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_cumsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_var_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_matmul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_mm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_msort_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_mul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_kl_div_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_max_unpool1d_grad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_softmin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_unfold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_outer_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_permute_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_put_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_repeat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_resolve_conj_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_round_decimals_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_rsub_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_searchsorted_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_signal_windows_nuttall_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_sin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_sinh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_bessel_y0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_modified_bessel_i0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_squeeze_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_squeeze_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_trace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_triu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_unfold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_unsafe_split_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_vdot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_vstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_xlogy_cpu_float32, test/test_ops.py::TestMathBitsCPU::test_conj_view___getitem___cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs__conversions_char_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_acos_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_addcdiv_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_any_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_as_strided_scatter_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_atleast_1d_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_chunk_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_diag_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_expand_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_expm1_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_hfft2_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fliplr_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_index_select_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_istft_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_linspace_tensor_overload_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_log_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_logical_not_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_movedim_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_ne_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_nn_functional_pixel_shuffle_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_positive_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_renorm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_tan_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_unflatten_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_var_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_add_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_argwhere_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_broadcast_to_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_chunk_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_column_stack_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_combinations_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_dsplit_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_einsum_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fft_hfft2_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fft_hfftn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_full_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_hsplit_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_jiterator_binary_return_by_ref_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_lstsq_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_lstsq_grad_oriented_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_vecdot_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linspace_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_log1p_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_logcumsumexp_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_long_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_masked_prod_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_meshgrid_list_of_tensors_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_mv_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_neg_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_pad_replicate_negative_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_triplet_margin_with_distance_loss_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nonzero_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_ravel_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_real_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_rsqrt_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_scatter_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_sigmoid_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_split_with_sizes_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_split_with_sizes_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_std_mean_unbiased_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_sub_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_sum_to_size_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_svd_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_tril_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_triu_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_unfold_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_view_as_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view___rsub___cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs__conversions_cdouble_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs__conversions_double_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs__conversions_half_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs__conversions_int_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_add_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_atleast_3d_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_broadcast_tensors_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_diag_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_eq_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_equal_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_exp_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_expm1_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fft_fft_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fft_fftn_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fft_irfftn_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fill_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_lerp_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_linalg_cross_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_linalg_norm_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_linspace_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_new_empty_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_nn_functional_triplet_margin_loss_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_norm_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_sinc_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_sqrt_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_sum_to_size_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_unfold_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_vdot_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_addmm_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_atanh_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_bfloat16_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_column_stack_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_dist_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_expm1_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_fft_fft_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_fft_ifft2_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_fft_ifft_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_fft_irfft2_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_fft_irfft_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_fft_irfftn_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_half_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_jiterator_2inputs_2outputs_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_cross_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_det_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_matrix_rank_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_multi_dot_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_pinv_hermitian_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_tensorinv_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_log2_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_log_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_masked_mean_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_masked_scatter_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_movedim_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_narrow_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_channel_shuffle_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_pad_circular_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_ones_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_ormqr_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_pca_lowrank_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_permute_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_pinverse_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_positive_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_scatter_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_std_mean_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_svd_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_to_sparse_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_true_divide_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_var_unbiased_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_acosh_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_all_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_any_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_conj_physical_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_diag_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_diagonal_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_dot_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_expand_as_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_ifftn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_ihfft2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_rfft_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fmin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_i0_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_igammac_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_index_fill_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_le_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_log_softmax_with_dtype_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_logaddexp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_logical_and_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_logsumexp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_narrow_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nextafter_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_gelu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_huber_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_roll_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_sinh_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_log_ndtr_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_split_with_sizes_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_squeeze_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_take_along_dim_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_unbind_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_var_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_as_strided_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_as_strided_scatter_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_asin_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_asinh_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_conj_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_constant_pad_nd_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cos_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_diag_embed_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_equal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_exp2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_expand_as_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_ifftn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_rfft2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_hash_tensor_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_hstack_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_index_add_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_index_reduce_mean_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_int_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_isneginf_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_jiterator_2inputs_2outputs_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_kthvalue_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_inv_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_inv_ex_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_lu_factor_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_matrix_rank_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_pinv_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_slogdet_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_solve_triangular_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_svd_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_log_softmax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_logaddexp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_argmax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_cumsum_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_softmax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_max_pool2d_with_indices_backward_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_mvlgamma_mvlgamma_p_5_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_neg_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_new_full_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_new_ones_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_cross_entropy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_ctc_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_grid_sample_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_interpolate_area_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_interpolate_trilinear_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_kl_div_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_relu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_rms_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nonzero_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_permute_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_qr_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_rand_like_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_real_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_reshape_as_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_sigmoid_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_slice_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_airy_ai_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_bessel_y0_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_bessel_y1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_chebyshev_polynomial_v_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_entr_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_hermite_polynomial_he_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_i1e_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_log_ndtr_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_scaled_modified_bessel_k1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_t_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_to_sparse_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_triu_cpu_float64, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_acos__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_add_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_addcdiv__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_addcdiv_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_atanh_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_bitwise_and__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_cat_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_chunk_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_clone_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_column_stack_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_cumsum__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_digamma_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_empty_permuted_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_erf__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_exponential_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_irfft2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_hstack_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_igamma_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_igammac__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_isneginf_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_item_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_le_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_native_group_norm_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_native_layer_norm_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_alpha_dropout_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_glu_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_hardshrink_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_huber_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_poisson_nll_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_relu_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_softshrink_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_tanhshrink_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_randn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_rsqrt__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sgn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sigmoid_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sin_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_i1e_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_std_mean_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sub__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sub_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_t_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_take_along_dim_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_tril_indices_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_trunc_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_var_mean_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_vsplit_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs__conversions_cfloat_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs__conversions_short_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_addr_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_alias_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_as_strided_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_asinh__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_bitwise_right_shift__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_bitwise_right_shift_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_broadcast_to_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_cauchy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_clamp_min__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_contiguous_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_copysign_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_cumprod__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_div_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_dsplit_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_eq_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_expm1_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_hfft2_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_frac__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_geometric_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_hypot_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_igamma_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_index_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_logspace_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_narrow_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_new_full_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_alpha_dropout_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_elu__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_elu_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_glu_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_layer_norm_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_reciprocal__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_remainder__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_round_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_rsqrt_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sign__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_signbit_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sinh_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_logit_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_ndtr_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_std_mean_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_view_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_view_cpu, test/test_ops.py::TestFakeTensorCPU::test_fake___radd___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake__softmax_backward_data_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_arange_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_as_strided_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_atleast_2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast___rmul___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_abs_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_acosh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_addcdiv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_addcmul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_addmv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_alias_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_any_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_argmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_argwhere_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_as_strided_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_broadcast_shapes_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_bucketize_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cholesky_inverse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_complex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_conj_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_copysign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_diag_embed_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_dot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_empty_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_fftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_hfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_ifftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_float_power_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_frexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_full_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_gather_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_gt_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_half_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_igammac_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_index_reduce_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_index_reduce_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_inner_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_isfinite_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_isposinf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_istft_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_jiterator_unary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_lcm_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_eigvals_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_inv_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_ldl_factor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_slogdet_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_solve_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_vander_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_log_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_logaddexp2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_logical_xor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_long_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_lu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_mT_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_softmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_var_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_minimum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nan_to_num_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_narrow_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_native_layer_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_conv_transpose2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_elu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_selu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_polar_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_real_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_renorm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_repeat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_repeat_interleave_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_signal_windows_bartlett_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_signal_windows_blackman_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_signal_windows_gaussian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_signal_windows_hann_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_signal_windows_nuttall_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_slice_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_bessel_j0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_bessel_y1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_i1e_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_log_ndtr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_modified_bessel_i1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_std_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_stft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_sub_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_tan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_transpose_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_unfold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_uniform_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_unsafe_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_var_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_view_as_complex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_vstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_bernoulli_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_bitwise_left_shift_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_chalf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_H_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp___rmatmul___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_addcdiv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_addmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_atan2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cholesky_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_conj_physical_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cumulative_trapezoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_dist_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_div_floor_rounding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_exp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_fftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_ifft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_ifftshift_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_rfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_flip_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_flipud_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_float_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_lgamma_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_pinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_logcumsumexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_median_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_cross_entropy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_kl_div_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_relu6_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_outer_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_select_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_special_erfcx_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_split_list_args_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_squeeze_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_std_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_stft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_t_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_take_along_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_tensor_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_tile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_unsqueeze_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_vsplit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_T_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp___rsub___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_acosh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_addcmul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_alias_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_baddbmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_bernoulli_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_bmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_broadcast_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_corrcoef_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_erf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_flip_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_frac_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_index_reduce_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_multi_dot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_log2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_logaddexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_mH_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_cumsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_masked_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_max_binary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nanmedian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_native_layer_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_adaptive_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_fractional_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_interpolate_nearest-exact_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_max_unpool1d_grad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_normalize_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_rms_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_scaled_dot_product_attention_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_ormqr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_pinverse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_renorm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_round_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_sqrt_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_square_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_stft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_tensor_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_tril_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_unsafe_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_var_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_where_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cumprod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cumulative_trapezoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_einsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_empty_strided_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_equal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_expand_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_expand_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_exponential_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_flip_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fliplr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_gt_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_hash_tensor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_index_fill_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_index_reduce_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_jiterator_binary_return_by_ref_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_cholesky_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_log_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_log_softmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_logaddexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_logical_or_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_lu_unpack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_cumsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_logaddexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_logsumexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_new_full_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_avg_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_max_unpool2d_grad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_normalize_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_silu_complex_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_softmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_softmin_with_dtype_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_threshold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_ones_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_outer_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_pow_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_scalar_tensor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_signal_windows_bartlett_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_slice_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_hermite_polynomial_he_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_log_ndtr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_split_list_args_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_tanh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_tile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_to_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_true_divide_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_unique_consecutive_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_var_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_view_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops___rand___cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops___rdiv___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops___ror___cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops__batch_norm_with_update_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_addcmul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_argmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_atleast_1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_bitwise_not_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_bucketize_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_byte_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_copysign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_cross_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_deg2rad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_diagonal_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_diagonal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_diagonal_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_dsplit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_fft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_ifftshift_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_ihfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_frexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_gcd_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_heaviside_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_index_reduce_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_inner_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_isnan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_isneginf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_jiterator_binary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_kthvalue_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_le_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_cross_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_ldl_factor_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_multi_dot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_log10_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_log2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_log_normal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_logical_xor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_logsumexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_matrix_exp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_minimum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_mode_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_mul_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_mv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_new_full_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_celu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_conv_transpose2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_ctc_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_glu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_linear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_multi_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_pdist_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_rms_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_selu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_tanhshrink_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_randint_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_round_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_round_decimals_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_scatter_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_searchsorted_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_signal_windows_hann_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sinh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_airy_ai_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_bessel_j1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_i0e_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_xlog1py_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_std_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_svd_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_t_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_triangular_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_uniform_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unsqueeze_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_var_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_view_as_real_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_zero__cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_arange_cpu_float16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_arange_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_arange_cpu_int8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_arange_cpu_uint8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_tensor_overload_cpu_complex128, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_tensor_overload_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_cpu_complex128, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_cpu_int16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_tensor_overload_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_ones_cpu_int8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_complex128, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_arange_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_cpu_float16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_zeros_cpu_int32, test/test_ops.py::TestTagsCPU::test_tags_T_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_abs_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_addcdiv_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_alias_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_amin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_as_strided_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_as_strided_partial_views_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_conj_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_contiguous_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_count_nonzero_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_empty_like_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_erf_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_exponential_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_eye_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_fftn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_ihfft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_irfftn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fliplr_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fmin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_frac_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_isneginf_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_lcm_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs_le_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_linalg_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_linalg_svdvals_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_native_layer_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_new_empty_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_new_full_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_threshold_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_randn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_erfcx_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_logit_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_ndtr_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_ndtri_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_stack_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_stft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_sub_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_to_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_tril_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_unsqueeze_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_view_as_complex_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_where_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_zeros_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_addcdiv_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_allclose_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_as_strided_partial_views_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_bincount_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags_block_diag_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cartesian_prod_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_ceil_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_char_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_chunk_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cumsum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_diagonal_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_diagonal_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_empty_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_equal_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_fft2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_ifft2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_ifftshift_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_ihfft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_irfft2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_rfft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_float_power_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_gather_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_index_add_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_index_reduce_amax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_kron_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_eig_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_solve_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linspace_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_log2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_logical_and_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_long_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_lu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_amax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_prod_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_scatter_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_msort_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_native_batch_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_ne_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_conv_transpose2d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_prelu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_softplus_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_threshold_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nonzero_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_norm_fro_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_normal_number_mean_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_permute_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_resize_as__cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_rot90_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_sgn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_sign_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_signal_windows_hamming_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_slice_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_softmax_with_dtype_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_sparse_mm_reduce_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_bessel_j0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_ndtri_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_std_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_tile_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_transpose_copy_cpu_float32 2025-08-14T23:38:12.8582989Z 2025-08-14T23:38:18.1757197Z Running functorch/test_ops 4/8 ... [2025-08-14 23:38:18.174991] 2025-08-14T23:38:18.1757929Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:38:18.1765510Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'not serial', '--shard-id=4', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:38:18.176238] 2025-08-14T23:39:57.2989834Z 2025-08-14T23:39:57.2991256Z test_ops 6/9 was successful, full logs can be found in artifacts with path test/test-reports/test_ops_6.9_aeb301fa51dfbb76_.log 2025-08-14T23:39:57.5032373Z Running 3905 items in this shard: test/test_ops.py::TestCommonCPU::test_compare_cpu___getitem___cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu___rand___cpu_int64, test/test_ops.py::TestCommonCPU::test_compare_cpu__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs__conversions_short_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_as_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_bitwise_right_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_cauchy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_constant_pad_nd_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_diagonal_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_narrow_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_new_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_new_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_renorm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_t_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu__refs_tril_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_addcdiv_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_addcmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_addmv_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cfloat_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_corrcoef_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_cummin_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_igammac_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_index_reduce_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_index_reduce_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_kron_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_lerp_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_householder_product_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_pinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linalg_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_mH_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_mT_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_masked_median_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_masked_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_matrix_exp_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_msort_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nanmedian_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_new_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_new_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_nonzero_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_norm_fro_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_norm_nuc_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_pinverse_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_put_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_repeat_interleave_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_scatter_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_select_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_select_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_sort_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_special_hermite_polynomial_h_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_stft_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_sum_to_size_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_trace_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_tril_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_unflatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_unique_cpu_float32, test/test_ops.py::TestCommonCPU::test_compare_cpu_vsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_as_strided_scatter_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_chunk_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_fft_ifftshift_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_fill_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_hstack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_isfinite_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_isreal_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_linalg_diagonal_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_mT_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_narrow_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_new_empty_strided_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_reshape_as_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_split_with_sizes_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_stack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_complex_half_reference_testing_sub_cpu_complex32, test/test_ops.py::TestCommonCPU::test_dtypes_T_cpu, test/test_ops.py::TestCommonCPU::test_dtypes___rmatmul___cpu, test/test_ops.py::TestCommonCPU::test_dtypes___ror___cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_allclose_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_asinh_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_clamp_min_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_conj_physical_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_contiguous_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_copysign_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_div_no_rounding_mode_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_expand_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_frexp_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_ge_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_gt_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_index_select_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_isneginf_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_isreal_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_linalg_cross_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_log_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_logspace_tensor_overload_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_glu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_mse_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_poisson_nll_loss_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_nn_functional_prelu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_remainder_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_sigmoid_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_special_erfcx_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_sqrt_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_squeeze_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_squeeze_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_stft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_sub_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_tensor_split_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_triu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_unbind_copy_cpu, test/test_ops.py::TestCommonCPU::test_dtypes__refs_where_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_addcmul_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_addmm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_allclose_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_aminmax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_as_strided_partial_views_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_atan2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_bitwise_not_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_bmm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_broadcast_to_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cfloat_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_chalf_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_column_stack_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_count_nonzero_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_cov_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_div_floor_rounding_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_hfft_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_ifft2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_fft_irfft2_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_flip_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_flipud_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_float_power_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_floor_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_frac_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_gather_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_gt_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_imag_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_index_reduce_prod_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_isinf_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_det_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_householder_product_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_inv_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_ldl_factor_ex_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_lstsq_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_lu_factor_ex_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_linalg_solve_triangular_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_logical_xor_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_amin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_masked_log_softmax_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_min_reduction_no_dim_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_mm_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_narrow_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nextafter_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_bilinear_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_dropout_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_hardsigmoid_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_max_unpool1d_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nn_functional_silu_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_nonzero_static_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_norm_fro_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_norm_inf_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_normal_in_place_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_permute_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_polygamma_polygamma_n_0_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_positive_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_qr_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_randint_like_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_randn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_repeat_interleave_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_round_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_round_decimals_0_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_round_decimals_neg_3_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_scatter_add_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_scatter_reduce_amin_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_scatter_reduce_prod_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_sgn_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_short_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_signal_windows_cosine_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_entr_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_hermite_polynomial_he_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_log_ndtr_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_special_modified_bessel_k1_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_sub_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_take_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_trace_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_unsafe_split_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_var_mean_unbiased_cpu, test/test_ops.py::TestCommonCPU::test_dtypes_zeros_like_cpu, test/test_ops.py::TestCommonCPU::test_errors_T_cpu, test/test_ops.py::TestCommonCPU::test_errors_add_cpu, test/test_ops.py::TestCommonCPU::test_errors_diag_embed_cpu, test/test_ops.py::TestCommonCPU::test_errors_dsplit_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_fft_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_ihfft2_cpu, test/test_ops.py::TestCommonCPU::test_errors_fft_rfft2_cpu, test/test_ops.py::TestCommonCPU::test_errors_index_select_cpu, test/test_ops.py::TestCommonCPU::test_errors_jiterator_binary_cpu, test/test_ops.py::TestCommonCPU::test_errors_jiterator_binary_return_by_ref_cpu, test/test_ops.py::TestCommonCPU::test_errors_log_normal_cpu, test/test_ops.py::TestCommonCPU::test_errors_logical_and_cpu, test/test_ops.py::TestCommonCPU::test_errors_max_binary_cpu, test/test_ops.py::TestCommonCPU::test_errors_minimum_cpu, test/test_ops.py::TestCommonCPU::test_errors_neg_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_avg_pool3d_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_poisson_nll_loss_cpu, test/test_ops.py::TestCommonCPU::test_errors_nn_functional_softshrink_cpu, test/test_ops.py::TestCommonCPU::test_errors_renorm_cpu, test/test_ops.py::TestCommonCPU::test_errors_rsub_cpu, test/test_ops.py::TestCommonCPU::test_errors_signal_windows_bartlett_cpu, test/test_ops.py::TestCommonCPU::test_errors_signal_windows_cosine_cpu, test/test_ops.py::TestCommonCPU::test_errors_sparse_sum_layout3_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_hermite_polynomial_he_cpu, test/test_ops.py::TestCommonCPU::test_errors_special_laguerre_polynomial_l_cpu, test/test_ops.py::TestCommonCPU::test_errors_t_copy_cpu, test/test_ops.py::TestCommonCPU::test_errors_view_copy_cpu, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_acos_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_arange_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_argmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_as_strided_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_baddbmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_deg2rad_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_equal_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_ifft_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_fft_rfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_floor_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_frac_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_gather_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_i0_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_kron_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_lstsq_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_matrix_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_linalg_tensorinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_log_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_logit_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_matmul_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_narrow_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_nn_functional_normalize_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_ormqr_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_scatter_reduce_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_searchsorted_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_signbit_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_entr_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_special_zeta_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_sub_cpu_float32, test/test_ops.py::TestCommonCPU::test_meta_consistency_out_dtype_mismatch_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices___getitem___cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices___rmatmul___cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices__softmax_backward_data_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices__unsafe_masked_index_put_accumulate_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_abs_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_acosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_add_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_as_strided_partial_views_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_asinh_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_bitwise_and_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_bool_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_chunk_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_column_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_combinations_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_constant_pad_nd_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_constant_pad_nd_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_contiguous_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_diag_embed_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_digamma_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_eq_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_equal_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_expand_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_hfft2_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_hfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_ifft_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_irfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_irfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fft_rfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fliplr_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_float_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_floor_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_fmod_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_gradient_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_half_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_histogram_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_igamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_index_reduce_amax_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_isposinf_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_jiterator_4inputs_with_extra_args_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_jiterator_binary_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_jiterator_unary_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_kron_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_cholesky_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_cond_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_linspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_log1p_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_log2_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_logdet_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_logit_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_logspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_logspace_tensor_overload_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_masked_std_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_meshgrid_variadic_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_mul_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_mv_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nanmedian_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_new_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_new_zeros_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_feature_alpha_dropout_without_train_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_gaussian_nll_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_glu_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_hardsigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_interpolate_trilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_max_pool3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_resolve_neg_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_rot90_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_scalar_tensor_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_short_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_signal_windows_hamming_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_chebyshev_polynomial_w_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_erfcx_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_hermite_polynomial_h_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_laguerre_polynomial_l_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_ndtri_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_special_zeta_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_split_list_args_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_split_with_sizes_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_square_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_t_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_take_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_tensor_split_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_to_sparse_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_trapezoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_unflatten_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_unique_consecutive_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_unsafe_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_var_mean_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_var_unbiased_cpu_float32, test/test_ops.py::TestCommonCPU::test_multiple_devices_xlogy_cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_zero__cpu_int64, test/test_ops.py::TestCommonCPU::test_multiple_devices_zeros_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values__chunk_cat_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_acos_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_add_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_as_strided_scatter_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_bitwise_and_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_bitwise_not_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_block_diag_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_bool_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_broadcast_to_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_cartesian_prod_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_count_nonzero_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_diagonal_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_diagonal_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_exp2_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_exp_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_fliplr_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_float_power_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_hash_tensor_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_i0_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_isposinf_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_linalg_diagonal_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_log_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_logical_xor_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_masked_scatter_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_min_reduction_with_dim_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_native_dropout_backward_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_ne_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_new_empty_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_new_full_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_permute_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_scatter_add_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_short_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_chebyshev_polynomial_u_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_scaled_modified_bessel_k0_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_special_shifted_chebyshev_polynomial_w_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_square_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_sum_to_size_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_take_along_dim_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_tanh_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_torch_ops_aten__safe_softmax_default_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_transpose_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_where_cpu_bool, test/test_ops.py::TestCommonCPU::test_non_standard_bool_values_zero__cpu_bool, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___getitem___cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___radd___cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rmod___cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples___rsub___cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples__unsafe_masked_index_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples__unsafe_masked_index_put_accumulate_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_addmv_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_alias_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_as_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_as_strided_partial_views_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_as_strided_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atan_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atan_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_atleast_2d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bfloat16_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bitwise_and_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_block_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_bmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_broadcast_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cdist_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_ceil_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_char_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_conj_physical_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_constant_pad_nd_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_constant_pad_nd_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_contiguous_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_copysign_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cumsum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_cumsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_deg2rad_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_dist_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_div_trunc_rounding_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_einsum_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_eq_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_equal_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_erf_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_erfc_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_expand_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_expm1_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_fft_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_ihfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fft_rfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_flip_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_floor_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_fmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_half_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_histogramdd_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_int_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isin_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isnan_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_isposinf_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_jiterator_binary_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_jiterator_binary_return_by_ref_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_jiterator_unary_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_lcm_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_cross_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_eigh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_eigvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_householder_product_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_inv_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_lu_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_multi_dot_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_pinv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_svdvals_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_vander_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_vecdot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linalg_vecdot_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logical_or_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_lu_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mH_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mT_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_cumprod_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_cumsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_select_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_masked_std_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_meshgrid_variadic_tensors_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mm_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_movedim_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mul_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mv_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nanmean_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_native_dropout_backward_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_neg_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_neg_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_new_empty_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_new_empty_strided_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_new_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_avg_pool1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv3d_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_conv_transpose2d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_ctc_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_interpolate_nearest_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_l1_loss_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_constant_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_pad_replicate_negative_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_poisson_nll_loss_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_silu_complex_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_softplus_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_nn_functional_unfold_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_norm_inf_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_normal_number_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_pinverse_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_polar_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_polygamma_polygamma_n_2_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_rad2deg_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_repeat_interleave_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_reshape_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_resize__cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_roll_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_rsub_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_scatter_reduce_amax_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_select_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_signal_windows_cosine_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sin_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sin_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_slice_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sort_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sparse_mm_reduce_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_chebyshev_polynomial_u_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_entr_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_scaled_modified_bessel_k1_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_scaled_modified_bessel_k1_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_special_zeta_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_squeeze_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_squeeze_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_std_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_stft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_sub_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_t_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tensordot_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_transpose_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_triangular_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tril_cpu_complex64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_tril_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_triu_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_true_divide_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_trunc_cpu_float32, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unflatten_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_unique_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_view_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_xlogy_cpu_int64, test/test_ops.py::TestCommonCPU::test_noncontiguous_samples_zeros_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_allclose_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_broadcast_tensors_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_item_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_linalg_cross_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_linalg_cross_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_conv_transpose1d_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_conv_transpose3d_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_nn_functional_conv_transpose3d_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_permute_cpu_complex128, test/test_ops.py::TestCommonCPU::test_numpy_ref_ravel_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_signal_windows_blackman_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_signal_windows_kaiser_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_squeeze_multiple_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_tensor_split_cpu_int64, test/test_ops.py::TestCommonCPU::test_numpy_ref_tile_cpu_float64, test/test_ops.py::TestCommonCPU::test_numpy_ref_view_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_out_T_cpu_float32, test/test_ops.py::TestCommonCPU::test_out___rpow___cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs__conversions_byte_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_block_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_broadcast_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_column_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_copysign_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_diag_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_empty_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_empty_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_erfc_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_irfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_fft_rfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_gt_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_hypot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_igamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_index_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_logical_xor_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_masked_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nan_to_num_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_alpha_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_group_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_prelu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_pow_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_prod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_log_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_xlog1py_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_special_zeta_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_std_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_std_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_tanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__refs_view_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestCommonCPU::test_out__unsafe_masked_index_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_bernoulli_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_bfloat16_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_bitwise_or_cpu_int64, test/test_ops.py::TestCommonCPU::test_out_cat_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_cdist_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_cdouble_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_chunk_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_contiguous_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_deg2rad_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_diagflat_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_eq_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_eye_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_fftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_hfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_ifft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_ifftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_fft_ihfft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_float_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_gt_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_half_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_histogramdd_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_imag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_index_reduce_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_istft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_item_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_jiterator_4inputs_with_extra_args_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_kron_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_lerp_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_householder_product_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_inv_ex_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_lstsq_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_lu_factor_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linalg_vander_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_linspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_logaddexp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_logspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_lu_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_masked_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_movedim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_glu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_local_response_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_max_unpool1d_grad_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_nn_functional_softmin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_polygamma_polygamma_n_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_pow_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_acosh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_addmm_decomposed_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_alias_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_alias_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_cholesky_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_deg2rad_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_diagonal_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_diff_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_exp2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_fft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fft_fftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_floor_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_fmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_gather_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_index_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_index_reduce_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_cross_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_det_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_eig_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_lu_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_pinv_hermitian_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_log1p_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_lu_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_lu_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_nn_functional_linear_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_norm_nuc_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_norm_nuc_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_ones_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_ormqr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_permute_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_polar_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_qr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_rsqrt_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_scatter_reduce_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_sinh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_special_entr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_split_with_sizes_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_t_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_tan_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_tanh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_tanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_transpose_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_unfold_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_var_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_view_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_out_requires_grad_error_where_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_resize__cpu_float32, test/test_ops.py::TestCommonCPU::test_out_resize_as__cpu_float32, test/test_ops.py::TestCommonCPU::test_out_round_decimals_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_round_decimals_neg_3_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_scatter_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_short_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_signal_windows_nuttall_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_slice_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_hermite_polynomial_h_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_modified_bessel_i0_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_ndtr_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_squeeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_std_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_tensordot_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_tril_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_unbind_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_unsqueeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_out_warning__refs_all_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_amin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_atanh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_bitwise_left_shift_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_bucketize_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_div_no_rounding_mode_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_div_trunc_rounding_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_dstack_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_exp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_exponential_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fft_irfft2_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_flipud_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_fmod_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_ge_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_index_select_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_istft_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_lerp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_lgamma_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_linalg_matrix_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_log_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_masked_fill_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_mul_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nan_to_num_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_huber_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_nll_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_nn_functional_relu6_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_positive_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_prod_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_repeat_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_reshape_as_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_sigmoid_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_special_log_softmax_with_dtype_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_stack_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_std_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_var_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__refs_vsplit_cpu, test/test_ops.py::TestCommonCPU::test_out_warning__softmax_backward_data_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_alias_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_arange_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_argmax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_as_strided_partial_views_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_atan_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_bernoulli_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_bfloat16_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_bitwise_and_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_ceil_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_clamp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_combinations_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_cumsum_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_diagonal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_einsum_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_empty_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_erfinv_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_exp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fft_ifftshift_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_fmin_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_full_like_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_hash_tensor_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_i0_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_index_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_isneginf_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_isreal_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_jiterator_binary_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_le_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_eig_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_eigh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_inv_ex_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_lstsq_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_lu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_norm_subgradients_at_zero_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_pinv_singular_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_qr_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_vander_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linalg_vecdot_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_linspace_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_logical_and_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_logsumexp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_fill_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_log_softmax_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_masked_var_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_matrix_exp_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_max_reduction_no_dim_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_mean_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_mode_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nanquantile_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_native_dropout_backward_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_native_layer_norm_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_adaptive_avg_pool1d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_avg_pool2d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_conv_transpose1d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_cosine_embedding_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_embedding_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_glu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_hardswish_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_hardtanh_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_interpolate_bicubic_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_kl_div_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_leaky_relu_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_max_pool1d_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_max_unpool2d_grad_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_pad_replicate_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_pairwise_distance_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_silu_complex_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_smooth_l1_loss_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_softshrink_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_nn_functional_softsign_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_norm_nuc_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_ormqr_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_permute_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_polygamma_polygamma_n_0_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_quantile_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_rad2deg_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_randn_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_reshape_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_select_scatter_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_signal_windows_general_hamming_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_slice_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_i1_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_legendre_polynomial_p_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_modified_bessel_k0_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_special_polygamma_special_polygamma_n_0_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_sqrt_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_square_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_std_mean_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_take_along_dim_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_tensordot_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_tile_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_unbind_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_unfold_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_unsafe_split_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_unsqueeze_copy_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_var_mean_unbiased_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_vdot_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_view_as_cpu, test/test_ops.py::TestCommonCPU::test_out_warning_zeros_cpu, test/test_ops.py::TestCommonCPU::test_out_xlogy_cpu_float32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_acos_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_acosh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_asin_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_asin_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_asinh_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atan2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_atanh_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_copysign_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_cos_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_cosh_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_deg2rad_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_div_no_rounding_mode_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_div_no_rounding_mode_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_erfc_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_exp_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_exp_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_expm1_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_ldexp_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_ldexp_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_ldexp_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_lgamma_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log10_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log1p_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_log2_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_logit_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_logit_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_mvlgamma_mvlgamma_p_5_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_polygamma_polygamma_n_4_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_rad2deg_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_rsqrt_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_rsqrt_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_rsqrt_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sin_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sinh_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_t_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_t_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_u_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_chebyshev_polynomial_w_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_t_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_t_cpu_uint8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_u_cpu_bool, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_u_cpu_int16, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_w_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_special_shifted_chebyshev_polynomial_w_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_sqrt_cpu_int32, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_tan_cpu_int8, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_tanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_promotes_int_to_float_xlogy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bfloat16_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bfloat16_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bool_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bool_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_bool_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_byte_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_byte_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_byte_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_byte_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cdouble_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_cfloat_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_chalf_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_chalf_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_chalf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_double_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_double_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_double_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_double_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_double_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_float_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_half_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_int_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_long_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs__conversions_short_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_abs_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acosh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acosh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acosh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_acosh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_add_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcdiv_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcdiv_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_addcmul_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_alias_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_alias_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_all_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_any_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_any_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_any_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_any_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_as_strided_scatter_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asin_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_asinh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atan_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_1d_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_1d_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_1d_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_1d_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_2d_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_3d_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_atleast_3d_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_and_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_left_shift_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_not_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_or_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_right_shift_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_right_shift_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bitwise_xor_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_tensors_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_broadcast_to_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_bucketize_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ceil_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_chunk_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_min_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_clamp_min_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_physical_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_conj_physical_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_constant_pad_nd_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_copysign_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_copysign_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cos_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cosh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_count_nonzero_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_count_nonzero_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_count_nonzero_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumprod_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_cumsum_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_embed_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diag_embed_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_diagonal_scatter_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_digamma_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_digamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_digamma_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_digamma_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_no_rounding_mode_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_trunc_rounding_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_trunc_rounding_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_div_trunc_rounding_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dsplit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dsplit_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dsplit_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_dstack_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_empty_strided_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eq_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_equal_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_equal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_equal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_equal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erf_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_erfinv_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp2_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp2_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exp_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_as_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_as_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_as_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expand_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expm1_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_expm1_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_exponential_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_eye_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_fftn_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_hfftn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfft_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfftn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_ihfftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfftn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fft_irfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fill_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flatten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flip_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flip_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flip_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flipud_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_flipud_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_float_power_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_float_power_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_floor_divide_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmax_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmin_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_fmod_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ge_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ge_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_geometric_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_heaviside_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_heaviside_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_hsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_i0_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_i0_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_imag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_add_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_add_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_add_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_fill_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_select_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_index_select_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isclose_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isclose_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isfinite_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isinf_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isposinf_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isposinf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_isreal_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_istft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_istft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_item_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_item_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_item_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lerp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lerp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lgamma_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_diagonal_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_diagonal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_matrix_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linalg_svd_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_linspace_tensor_overload_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log1p_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_log_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_and_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_and_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_not_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_not_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_or_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_xor_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_xor_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_xor_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logical_xor_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logspace_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_logsumexp_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lt_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_lt_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_masked_fill_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_masked_fill_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_masked_fill_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_masked_fill_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_maximum_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_maximum_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_mean_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_list_of_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_list_of_tensors_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_variadic_tensors_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_meshgrid_variadic_tensors_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_movedim_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nan_to_num_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nan_to_num_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_narrow_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_native_layer_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ne_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ne_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_neg_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_neg_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_strided_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_empty_strided_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_full_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_full_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_full_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_full_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_full_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_new_zeros_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_alpha_dropout_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_celu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_elu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_gelu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_gelu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_hardtanh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_l1_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_leaky_relu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_log_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_margin_ranking_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_mish_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_nll_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pairwise_distance_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pairwise_distance_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_unshuffle_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_pixel_unshuffle_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_tanhshrink_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_nn_functional_tanhshrink_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal__in_place_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal__in_place_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_normal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ones_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ones_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ones_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_permute_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_pow_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_prod_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_prod_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_prod_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rad2deg_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_randn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ravel_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_ravel_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_real_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_real_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_real_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_real_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reciprocal_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reciprocal_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_remainder_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_repeat_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_repeat_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_reshape_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_roll_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_round_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_round_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_round_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsqrt_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_rsub_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sgn_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sgn_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sgn_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_signbit_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sin_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sinh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_softmax_with_dtype_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_softmax_with_dtype_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_bessel_j0_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_bessel_j1_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i0e_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_i0e_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_log_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_1_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_1_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_5_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_5_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_multigammaln_mvlgamma_p_5_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtr_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_ndtri_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_spherical_bessel_j0_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_special_xlog1py_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_split_with_sizes_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sqrt_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sqrt_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sqrt_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_square_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_square_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_square_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_squeeze_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_stack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_std_mean_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_std_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_std_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_std_mean_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sub_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_sum_to_size_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_t_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_take_along_dim_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_take_along_dim_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tanh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tensor_split_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_to_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_to_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_to_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_transpose_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_tril_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_triu_indices_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_true_divide_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_trunc_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unbind_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unflatten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unfold_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref__refs_unsqueeze_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_var_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vdot_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_vdot_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_as_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_copy_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref__refs_view_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_where_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref__refs_where_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_where_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_xlogy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref__refs_xlogy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref__refs_xlogy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_xlogy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref__refs_zeros_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_arange_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_bitwise_or_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_bitwise_xor_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_diag_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_diagonal_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_fftn_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_hfftn_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_ihfft2_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_ihfft_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fft_rfft_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_fmod_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_linspace_tensor_overload_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_native_layer_norm_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_nn_functional_margin_ranking_loss_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_roll_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_errors__refs_sum_to_size_cpu, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_T_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_T_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_T_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_T_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bfloat16_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bfloat16_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bool_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bool_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_bool_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_byte_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cdouble_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_cfloat_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_chalf_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_chalf_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_char_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_char_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_char_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_double_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_double_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_double_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_double_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_float_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_half_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_half_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs__conversions_short_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acos_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acos_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_acosh_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_addr_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_alias_copy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_alias_copy_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_all_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_all_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_all_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amax_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amax_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amax_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amin_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amin_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_amin_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_any_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_scatter_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_as_strided_scatter_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asin_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asinh_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asinh_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_asinh_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_1d_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_1d_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_1d_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_atleast_3d_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_and_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_or_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_bitwise_or_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_block_diag_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_block_diag_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_block_diag_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_tensors_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_to_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_broadcast_to_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cat_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cat_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cat_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cat_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cauchy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_chunk_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_chunk_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_min_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clamp_min_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clone_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_clone_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_column_stack_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_conj_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_constant_pad_nd_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_contiguous_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_contiguous_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_contiguous_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_contiguous_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_contiguous_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_contiguous_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_copysign_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_copysign_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cos_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cos_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cosh_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_count_nonzero_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_count_nonzero_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_count_nonzero_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumprod_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumprod_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_cumsum_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_deg2rad_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_embed_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_embed_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diag_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_copy_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_copy_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_diagonal_scatter_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_floor_rounding_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_no_rounding_mode_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_div_trunc_rounding_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dot_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dot_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dsplit_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_dsplit_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_like_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_like_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_empty_like_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_equal_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erf_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_erfc_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp2_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_exp_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_copy_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expand_copy_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expm1_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expm1_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_expm1_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_eye_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft2_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft2_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fft_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftn_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftn_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftshift_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_fftshift_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfft2_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfftn_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_hfftn_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifft2_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftshift_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftshift_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftshift_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ifftshift_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfft2_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfft_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_ihfftn_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfft2_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_irfftn_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft2_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft2_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfft_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fft_rfftn_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fill_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flatten_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fliplr_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flipud_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flipud_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_flipud_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_floor_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmin_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmin_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_fmin_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ge_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_geometric_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_geometric_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_geometric_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_geometric_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_gt_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hsplit_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_hstack_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_i0_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_add_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_select_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_index_select_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isfinite_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isfinite_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isinf_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isinf_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isneginf_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isneginf_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isneginf_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isneginf_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isposinf_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isreal_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_isreal_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lcm_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_le_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_le_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lerp_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lgamma_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_cross_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_diagonal_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_matrix_norm_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_norm_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_svd_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linalg_vector_norm_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_tensor_overload_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_linspace_tensor_overload_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log10_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log1p_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log2_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log2_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log2_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log2_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_softmax_with_dtype_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_log_softmax_with_dtype_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logaddexp_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_and_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_not_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_not_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_not_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logical_or_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_logspace_tensor_overload_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_lt_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_masked_fill_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_masked_fill_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_maximum_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_maximum_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mean_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_meshgrid_list_of_tensors_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_minimum_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_minimum_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_movedim_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mul_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mul_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_mul_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nan_to_num_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nan_to_num_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_copy_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_narrow_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_native_layer_norm_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ne_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_neg_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_strided_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_strided_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_empty_strided_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_full_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_new_ones_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nextafter_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_channel_shuffle_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_elu_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_gelu_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_hardtanh_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_log_softmax_with_dtype_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_log_softmax_with_dtype_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_margin_ranking_loss_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_margin_ranking_loss_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_margin_ranking_loss_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_mse_loss_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pairwise_distance_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_unshuffle_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_pixel_unshuffle_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu6_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_relu_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmax_with_dtype_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmax_with_dtype_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmax_with_dtype_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmin_with_dtype_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmin_with_dtype_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softmin_with_dtype_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softplus_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softplus_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_softshrink_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_threshold_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_nn_functional_triplet_margin_loss_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_norm_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_norm_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_normal_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_copy_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_permute_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_pow_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_prod_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_prod_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rad2deg_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_randn_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_ravel_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_real_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_real_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_remainder_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_renorm_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_repeat_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_as_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_reshape_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rot90_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_round_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_rsub_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_select_scatter_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_select_scatter_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sgn_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sign_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sin_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sinc_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_softmax_with_dtype_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_softmax_with_dtype_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j0_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j0_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_bessel_j1_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_entr_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_entr_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_entr_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_erfcx_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i0e_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_i1e_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_log_softmax_with_dtype_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_logit_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_multigammaln_mvlgamma_p_3_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtr_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtr_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_ndtri_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_softmax_with_dtype_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_spherical_bessel_j0_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_spherical_bessel_j0_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_spherical_bessel_j0_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_special_xlog1py_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_split_with_sizes_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_split_with_sizes_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_split_with_sizes_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sqrt_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sqrt_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sqrt_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_multiple_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_squeeze_multiple_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stack_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_stack_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_std_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sub_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_to_size_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_sum_to_size_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_copy_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_t_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tan_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tanh_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tanh_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tensor_split_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_to_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_to_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trace_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_copy_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_transpose_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tril_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_tril_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_triu_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_true_divide_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_true_divide_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trunc_executor_aten_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_trunc_executor_aten_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_copy_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unbind_executor_aten_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unflatten_executor_aten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unflatten_executor_aten_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unflatten_executor_aten_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unflatten_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_copy_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unfold_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_unsqueeze_copy_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vdot_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_as_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_copy_executor_aten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_view_executor_aten_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vsplit_executor_aten_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vstack_executor_aten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_vstack_executor_aten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_xlogy_executor_aten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_executor__refs_zeros_executor_aten_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_T_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_T_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_T_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bfloat16_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_bool_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_byte_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_byte_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_cdouble_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_chalf_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_char_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_complex_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_double_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_float_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_half_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_half_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_long_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs__conversions_short_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_abs_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_abs_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_abs_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_acosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_add_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_add_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_add_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_add_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcmul_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addcmul_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_addr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_alias_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_alias_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_all_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_all_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_amin_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_any_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_any_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_scatter_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_scatter_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_as_strided_scatter_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asin_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asin_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asin_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asin_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asinh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_asinh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan2_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atan_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atanh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atanh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atanh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_1d_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_2d_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_atleast_3d_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_and_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_and_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_and_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_right_shift_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bitwise_xor_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_block_diag_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_block_diag_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_block_diag_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_tensors_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_broadcast_to_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bucketize_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bucketize_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_bucketize_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cat_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cat_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ceil_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_chunk_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clamp_max_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clone_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clone_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_clone_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_column_stack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_column_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_column_stack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_physical_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_conj_physical_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_constant_pad_nd_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_copysign_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cos_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cos_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cosh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cosh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cosh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_count_nonzero_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_count_nonzero_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumprod_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumsum_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_cumsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_deg2rad_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_embed_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diag_embed_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_copy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_diagonal_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_digamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_div_floor_rounding_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dsplit_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_dstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_empty_like_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eq_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_equal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_equal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_equal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erf_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfc_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_erfinv_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp2_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_exp_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_as_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_as_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_expand_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_float8_e4m3fn, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_float8_e4m3fnuz, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_eye_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_fftshift_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfftn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_hfftn_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifft_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftshift_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftshift_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ifftshift_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_ihfftn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_irfft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fft_rfft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fill_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flatten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flip_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fliplr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flipud_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_flipud_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_float_power_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_float_power_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_float_power_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_floor_divide_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmax_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmin_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmin_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_fmin_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_frexp_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_geometric_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_gt_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_heaviside_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_hstack_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_i0_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_igammac_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_imag_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_add_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_fill_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_index_select_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isinf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isnan_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isnan_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isnan_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isposinf_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_isreal_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_item_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lcm_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_le_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lerp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_diagonal_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_matrix_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_svdvals_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_vecdot_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linalg_vector_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_tensor_overload_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_linspace_tensor_overload_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log10_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log10_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log10_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log1p_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log2_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_log_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logaddexp2_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logaddexp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_and_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_and_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_not_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_not_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logical_xor_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logspace_tensor_overload_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logsumexp_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_logsumexp_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lt_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_lt_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_masked_fill_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_maximum_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_maximum_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_maximum_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_mean_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_meshgrid_list_of_tensors_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_minimum_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_minimum_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_minimum_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_movedim_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nan_to_num_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_narrow_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ne_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ne_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_neg_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_empty_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_full_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_full_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_full_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_new_ones_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_celu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_channel_shuffle_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_channel_shuffle_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_channel_shuffle_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_dropout_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_elu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_hardshrink_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_l1_loss_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_leaky_relu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_log_softmax_with_dtype_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_log_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pairwise_distance_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pairwise_distance_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_shuffle_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_pixel_unshuffle_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_poisson_nll_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_poisson_nll_loss_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_prelu_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu6_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu6_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_relu_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_selu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_smooth_l1_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_softmin_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_tanhshrink_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_tanhshrink_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_threshold_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_nn_functional_triplet_margin_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_normal__in_place_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_normal_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_normal_number_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ones_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_permute_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_positive_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_positive_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_pow_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_prod_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_prod_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rad2deg_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_randn_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_randn_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_randn_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_ravel_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_real_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reciprocal_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_renorm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_as_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_reshape_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_roll_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_roll_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_roll_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rot90_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rot90_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rot90_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_round_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsqrt_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsqrt_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsqrt_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_rsub_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_select_scatter_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_select_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_select_scatter_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sigmoid_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sigmoid_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sigmoid_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sinh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_bessel_j0_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_entr_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_entr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_erfcx_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1e_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_i1e_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_softmax_with_dtype_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_softmax_with_dtype_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_log_softmax_with_dtype_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_logit_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_1_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_3_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_multigammaln_mvlgamma_p_3_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtr_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_ndtri_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_special_softmax_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_split_with_sizes_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_split_with_sizes_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sqrt_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_square_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_copy_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_squeeze_multiple_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stack_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_stack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sub_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sub_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sub_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_sum_to_size_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_t_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tan_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tan_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tanh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tanh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tensor_split_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tensor_split_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_to_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_to_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_transpose_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tril_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tril_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_tril_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_triu_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_true_divide_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_true_divide_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_true_divide_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trunc_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trunc_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_trunc_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_copy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unbind_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unflatten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unflatten_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unflatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_copy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unfold_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_copy_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_unsqueeze_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_var_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vdot_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_view_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vsplit_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_vstack_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_where_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_xlogy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_xlogy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_meta__refs_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_T_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_T_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bfloat16_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bfloat16_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bool_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bool_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bool_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bool_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_bool_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_char_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_double_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_half_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_half_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_half_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_int_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs__conversions_short_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acosh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_acosh_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_add_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcmul_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcmul_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_addcmul_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_all_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amax_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amin_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_amin_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_copy_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_partial_views_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_scatter_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_as_strided_scatter_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_asinh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atan_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atanh_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atanh_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atanh_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_1d_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_1d_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_2d_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_2d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_atleast_3d_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_and_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_not_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bitwise_or_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_block_diag_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_block_diag_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_tensors_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_tensors_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_to_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_broadcast_to_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_bucketize_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cat_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_chunk_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_chunk_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_chunk_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_chunk_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_max_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_max_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_clamp_min_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_column_stack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_conj_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_contiguous_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_copysign_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_copysign_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cos_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cos_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cos_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cosh_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_count_nonzero_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_count_nonzero_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumprod_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumprod_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumprod_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumsum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumsum_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumsum_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_cumsum_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_deg2rad_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_embed_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_embed_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diag_embed_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_scatter_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_diagonal_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_digamma_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_floor_rounding_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_floor_rounding_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_div_no_rounding_mode_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dot_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dot_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dsplit_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_dstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_like_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_like_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_like_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_like_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_like_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_empty_strided_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eq_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eq_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erf_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfc_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfc_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfinv_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_erfinv_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_exp2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_as_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_as_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expand_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_expm1_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_eye_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftshift_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftshift_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_fftshift_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfft_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfftn_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_hfftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft2_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ifft_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft2_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfft_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_ihfftn_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft2_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfft_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_irfftn_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft2_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfft2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fft_rfftn_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fill_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fill_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flatten_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flatten_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flip_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_flipud_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_float_power_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_float_power_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_float_power_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_divide_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_floor_divide_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_fmax_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_frac_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_frexp_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_gcd_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_geometric_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_heaviside_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_heaviside_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hstack_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_hstack_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_i0_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_igamma_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_add_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_index_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isinf_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isnan_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isposinf_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isposinf_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_isposinf_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_item_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lgamma_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lgamma_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_lgamma_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_diagonal_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_diagonal_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_norm_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_svd_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linalg_vector_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_linspace_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log10_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log10_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log1p_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log1p_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log2_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log2_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log2_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log2_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_log_normal_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logaddexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_not_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_not_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_or_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_or_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logical_xor_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_tensor_overload_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_tensor_overload_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_logspace_tensor_overload_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_masked_fill_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_masked_fill_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_masked_fill_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_maximum_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_maximum_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mean_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_meshgrid_variadic_tensors_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_minimum_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_movedim_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_movedim_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_movedim_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_mul_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_narrow_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ne_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_neg_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_neg_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_empty_strided_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_full_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_full_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_full_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_full_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_full_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_zeros_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_zeros_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_zeros_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_new_zeros_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_alpha_dropout_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_celu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_channel_shuffle_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_elu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_gelu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_glu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_group_norm_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hardtanh_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_hardtanh_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_log_softmax_with_dtype_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pairwise_distance_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_unshuffle_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_unshuffle_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_pixel_unshuffle_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_prelu_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_relu_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_selu_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_smooth_l1_loss_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmax_with_dtype_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softmin_with_dtype_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_softplus_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_tanhshrink_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_threshold_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_triplet_margin_loss_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_nn_functional_triplet_margin_loss_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_norm_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ones_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_permute_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_positive_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_positive_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_pow_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_pow_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rad2deg_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rad2deg_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rad2deg_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_randn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_ravel_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_real_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_real_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_real_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_real_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_remainder_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_repeat_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_repeat_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_as_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_as_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_reshape_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_roll_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_roll_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rot90_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rot90_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_round_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_rsqrt_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sgn_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sgn_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sigmoid_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sigmoid_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sign_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sign_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_signbit_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_signbit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_signbit_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinc_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinc_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sinh_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j0_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_bessel_j1_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_entr_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i0e_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i0e_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i0e_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_i1e_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_softmax_with_dtype_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_log_softmax_with_dtype_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_1_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_multigammaln_mvlgamma_p_5_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtr_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtri_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_ndtri_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_xlog1py_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_xlog1py_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_special_zeta_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sqrt_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sqrt_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sqrt_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_square_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_multiple_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_squeeze_multiple_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stack_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stack_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_std_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_std_mean_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_stft_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sub_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_to_size_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_sum_to_size_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_t_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_take_along_dim_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_take_along_dim_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tan_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tan_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tanh_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tanh_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trace_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_transpose_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_tril_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_triu_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_triu_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_triu_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_true_divide_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_true_divide_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trunc_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_trunc_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_copy_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_cpu_complex128, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unbind_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unflatten_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_copy_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unfold_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_copy_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_unsqueeze_cpu_int8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_var_cpu_bfloat16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_var_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_var_mean_cpu_float16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_var_mean_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vdot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_as_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_copy_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_view_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vsplit_cpu_float64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vsplit_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vstack_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_vstack_cpu_uint8, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_where_cpu_complex32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_xlogy_cpu_bool, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_xlogy_cpu_int32, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_xlogy_cpu_int64, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_zeros_cpu_int16, test/test_ops.py::TestCommonCPU::test_python_ref_torch_fallback__refs_zeros_cpu_int32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_T_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___getitem___cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___rmatmul___cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager___rsub___cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager__chunk_cat_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_acosh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_add_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_add_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_addbmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_all_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_as_strided_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_as_strided_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_atleast_2d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_bmm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cdouble_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cholesky_solve_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_conj_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_contiguous_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cov_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_cummin_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_diagonal_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_double_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_dstack_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_einsum_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_exp_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_expand_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_fftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_hfft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_hfftn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_ifft_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fft_ifftshift_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fill_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_flip_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_fliplr_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_float_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_grid_sampler_2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_gt_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_hsplit_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_hstack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_i0_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isnan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_isreal_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_item_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_cholesky_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_cross_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_eigvalsh_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_multi_dot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_qr_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_svd_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_tensorinv_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_linalg_vecdot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logcumsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_logsumexp_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_lt_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_lu_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_lu_solve_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_lu_unpack_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mT_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_cumsum_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_log_softmax_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_masked_var_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_meshgrid_list_of_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_meshgrid_variadic_tensors_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_movedim_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_msort_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_native_layer_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_neg_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_conv_transpose3d_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_ctc_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_dropout_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_elu_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_embedding_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_max_pool3d_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_multi_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pairwise_distance_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_rms_norm_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_threshold_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_norm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_ones_like_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_ormqr_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_put_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_qr_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_rand_like_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_randint_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_randn_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_real_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_reshape_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_resize_as__cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_scalar_tensor_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_scatter_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_short_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sigmoid_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signal_windows_gaussian_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_signal_windows_hann_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_slice_scatter_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_softmax_with_dtype_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_sparse_sampled_addmm_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_erfcx_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_special_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_std_mean_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_tan_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_tensordot_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_to_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_tril_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unbind_copy_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unfold_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_unsqueeze_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_var_mean_cpu_float32, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_vdot_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_view_as_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_view_cpu_complex64, test/test_ops.py::TestCommonCPU::test_variant_consistency_eager_where_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward__unsafe_masked_index_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_acos_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_add_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_addcdiv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_alias_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_as_strided_partial_views_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_chalf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_clamp_max_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_cumsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_dist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_div_no_rounding_mode_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_double_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_exp2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_expm1_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_fftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fft_rfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_flatten_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_fliplr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_i0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_index_add_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_index_reduce_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_ldexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_lerp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_eigvals_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_lstsq_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_pinv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_linalg_vector_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_log10_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nanquantile_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_adaptive_avg_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_avg_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_binary_cross_entropy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_celu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_dropout_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_max_unpool3d_grad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_selu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_silu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_polygamma_polygamma_n_4_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_special_log_ndtr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_special_ndtr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_special_xlog1py_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_squeeze_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_to_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_triu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_unsafe_chunk_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_backward_unsqueeze_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_T_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_addmm_decomposed_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_all_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_asinh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cdist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_clamp_max_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_clamp_min_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_count_nonzero_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_cross_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_diff_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_double_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_dsplit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_eq_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_equal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_hfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fft_irfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_fill_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_floor_divide_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_frexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_grid_sampler_2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_heaviside_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_histc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_hsplit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_int_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_item_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_jiterator_2inputs_2outputs_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_le_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_eigvals_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_inv_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_logit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_logsumexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_std_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_sum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_masked_var_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_min_binary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_mm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_mvlgamma_mvlgamma_p_3_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_neg_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_hardshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_max_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_pad_reflect_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_rrelu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nn_functional_upsample_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_nonzero_static_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_remainder_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_repeat_interleave_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_scatter_add_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_signal_windows_kaiser_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_entr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_legendre_polynomial_p_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_split_with_sizes_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_sub_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_sum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_svd_lowrank_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_t_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_tensordot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_tile_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_unique_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_cow_input_unsqueeze_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad___rsub___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad__chunk_cat_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_acosh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_addmm_decomposed_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_all_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_allclose_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_as_strided_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_clamp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_combinations_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_constant_pad_nd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_cross_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_diag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_diag_embed_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_expand_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_ifftshift_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_irfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_irfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fft_rfftn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_fmod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_full_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_hsplit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_igamma_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_index_add_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_index_reduce_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_index_select_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_isreal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_jiterator_binary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_jiterator_binary_return_by_ref_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_ldexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_lgamma_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_diagonal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_lu_factor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_matrix_rank_hermitian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_norm_subgradients_at_zero_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_pinv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_logical_and_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_lu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_argmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_cumsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_log_softmax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_masked_select_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_mul_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nansum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_adaptive_max_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_conv2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_max_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_silu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nn_functional_unfold_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_nonzero_static_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_norm_inf_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_normal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_normal_in_place_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_pinverse_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_pow_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_randint_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_remainder_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_signal_windows_cosine_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_signal_windows_general_cosine_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_sparse_mm_reduce_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_squeeze_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_to_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_trapz_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_trunc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_var_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_forward_ad_var_mean_unbiased_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator___rmatmul___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_add_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_addmm_decomposed_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_atleast_2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_bool_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_cos_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_deg2rad_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_erfc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_exp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_fftshift_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_hfft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_fft_irfft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_full_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_gt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_histc_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_hsplit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_index_reduce_amax_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_lgamma_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_cholesky_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_multi_dot_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_logspace_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_max_pool2d_with_indices_backward_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_max_reduction_no_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_min_binary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_min_reduction_no_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nan_to_num_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nanmedian_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nansum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_native_batch_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_ne_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_new_ones_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_conv_transpose2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_cosine_similarity_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_dropout2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_interpolate_bicubic_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_nn_functional_pdist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_qr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_rad2deg_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_randint_like_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_remainder_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_resolve_conj_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_resolve_neg_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_round_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_scatter_add_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_select_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_signal_windows_general_hamming_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_signal_windows_hamming_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_signbit_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_sin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_i0e_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_ndtr_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_sqrt_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_square_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_stack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_stft_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_svd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_t_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_operator_unbind_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay___rsub___cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_acosh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_addmv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_allclose_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_block_diag_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_clamp_max_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_clamp_min_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_count_nonzero_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cumprod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_cumulative_trapezoid_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_diagonal_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_diagonal_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_dist_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_dstack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_einsum_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_fft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_fft_ifft2_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_gather_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_index_add_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_cross_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_eigh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_ldl_factor_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_ldl_solve_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_linalg_solve_ex_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_logaddexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_logdet_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_lu_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_mH_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_logaddexp_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_prod_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_masked_select_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_min_binary_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_mv_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_narrow_copy_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_native_batch_norm_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_ne_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_dropout_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_grid_sample_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_max_unpool2d_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_mish_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_smooth_l1_loss_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_softshrink_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nn_functional_upsample_nearest_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_nonzero_static_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_pca_lowrank_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_randn_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_remainder_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_resize_as__cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_resolve_neg_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_signal_windows_hamming_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_slice_scatter_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_special_shifted_chebyshev_polynomial_t_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_stack_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_svd_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_svd_lowrank_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_trapz_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_unsqueeze_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_var_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_var_mean_cpu_float32, test/test_ops.py::TestCompositeComplianceCPU::test_view_replay_zeros_like_cpu_float32, test/test_ops.py::TestMathBitsCPU::test_conj_view___rpow___cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs__conversions_bfloat16_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_alias_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_atanh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_cat_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_count_nonzero_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_exp_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_expand_as_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_fftn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_fftshift_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_irfft2_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_fft_irfft_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_index_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_index_fill_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_linspace_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_log_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_logspace_tensor_overload_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_masked_fill_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_new_ones_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_new_zeros_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_nn_functional_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_sin_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_special_softmax_with_dtype_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_std_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_tensor_split_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_tril_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__refs_view_as_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view__unsafe_masked_index_put_accumulate_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_acosh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_atleast_3d_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_block_diag_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_byte_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_contiguous_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_exp2_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fft_fftn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_fft_fftshift_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_float_power_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_int_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_isreal_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_cholesky_ex_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_inv_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_norm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_pinv_singular_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_linalg_tensorsolve_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_log2_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_logspace_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_matmul_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_movedim_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_mul_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_narrow_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_narrow_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_conv2d_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nn_functional_conv3d_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_nonzero_static_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_norm_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_norm_inf_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_norm_nuc_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_ones_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_ones_like_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_randn_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_short_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_sinh_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_split_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_tensordot_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_transpose_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_transpose_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_triangular_solve_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_unsqueeze_copy_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_unsqueeze_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_where_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_conj_view_zeros_like_cpu_complex64, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view___radd___cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view___rmatmul___cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__chunk_cat_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_acos_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_acosh_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_as_strided_partial_views_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_conj_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_cosh_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_fft_fft2_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_flatten_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_index_select_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_linalg_svdvals_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_log_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_nn_functional_pairwise_distance_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_real_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_reshape_as_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_split_with_sizes_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_square_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_sub_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_true_divide_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__refs_unsqueeze_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view__unsafe_masked_index_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_acos_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_addbmm_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_as_strided_partial_views_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_contiguous_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_cos_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_dstack_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_einsum_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_expand_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_fft_fft2_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_flip_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_gradient_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_index_put_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_int_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_isreal_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_item_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_kron_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_eigh_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_lstsq_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_linalg_lstsq_grad_oriented_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_logaddexp_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_masked_logsumexp_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_masked_sum_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_meshgrid_list_of_tensors_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_mul_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_narrow_copy_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_neg_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_new_zeros_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_pad_replicate_negative_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nn_functional_triplet_margin_with_distance_loss_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_nonzero_static_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_rand_like_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_real_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_scatter_add_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_select_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_sin_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_split_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_sqrt_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_unbind_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_var_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_vdot_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_conj_view_vsplit_cpu_complex128, test/test_ops.py::TestMathBitsCPU::test_neg_view_T_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__chunk_cat_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_addr_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_asinh_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_atan2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_atleast_2d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_broadcast_tensors_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_constant_pad_nd_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_contiguous_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_cos_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_digamma_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_div_no_rounding_mode_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_dsplit_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_fft_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_ifft_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fft_ihfft_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_fill_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_index_add_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_linalg_svd_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_linalg_vecdot_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_log_normal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_movedim_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nan_to_num_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_neg_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_new_empty_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_new_empty_strided_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_dropout_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_hardtanh_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_layer_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_pixel_shuffle_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_poisson_nll_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_nn_functional_softmin_with_dtype_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_normal__in_place_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_normal_number_mean_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_positive_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_rad2deg_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_reshape_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_sign_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_i0e_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_special_log_softmax_with_dtype_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_squeeze_multiple_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_std_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_trace_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_true_divide_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_view_as_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__refs_zeros_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__softmax_backward_data_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view__unsafe_masked_index_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_addmv_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_atleast_3d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cholesky_solve_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_clamp_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cumprod_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_cumsum_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_empty_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_erfinv_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_expm1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_fft2_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_hfft_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_ifft_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fft_ifftshift_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_fmax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_geometric_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_geqrf_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_isinf_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_isreal_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_jiterator_unary_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_solve_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_linalg_svdvals_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_logical_xor_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_amax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_masked_log_softmax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_minimum_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_mv_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_mvlgamma_mvlgamma_p_1_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_adaptive_avg_pool1d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_alpha_dropout_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_elu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_feature_alpha_dropout_with_train_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_feature_alpha_dropout_without_train_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_interpolate_linear_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_max_unpool1d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_max_unpool3d_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_max_unpool3d_grad_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_multi_head_attention_forward_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_pad_replicate_negative_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_rrelu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_selu_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_softplus_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_threshold_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_nn_functional_triplet_margin_loss_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_norm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_ones_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_permute_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_rad2deg_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_randn_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_randn_like_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_scatter_reduce_amax_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_signal_windows_general_hamming_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_sinh_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_sparse_sampled_addmm_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_special_bessel_j0_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_std_mean_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_svd_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_svd_lowrank_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_tensor_split_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_triangular_solve_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_true_divide_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_unsqueeze_copy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_xlogy_cpu_float64, test/test_ops.py::TestMathBitsCPU::test_neg_view_zeros_like_cpu_float64, 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__conversions_cdouble_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_half_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs__conversions_int_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_add__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_atan2__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_atleast_1d_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_ceil_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_cumprod__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_cumsum_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_diag_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_diag_embed_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_diagonal_scatter_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_dot_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_expm1_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_exponential__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fft_ifft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_flatten_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_fmod_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_full_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_geometric_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_hsplit_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_index_fill__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_index_fill_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_index_select_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_isclose_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_isreal_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_log10__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_log10_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_log_normal_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_lt_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_masked_fill_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_maximum_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_minimum_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_mul__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_mul_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_new_full_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_channel_shuffle_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_nn_functional_smooth_l1_loss_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_normal_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_ones_like_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_permute_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_positive_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_round_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sign_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_special_logit_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_squeeze_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_sum_to_size_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_swap_axes_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_tan__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_tril__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_decomp_table_op__refs_unbind_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_view_as_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_decomp_table_op__refs_xlogy__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs__conversions_double_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs__conversions_float_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_addcdiv__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_any_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_as_strided_scatter_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_atanh__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_atanh_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_atleast_1d_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_bitwise_and__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_bitwise_left_shift__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_bitwise_not__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_clone_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_conj_physical__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_copy_to_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_equal_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_expand_copy_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_ifft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_ihfftn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_rfft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fft_rfftn_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_fill__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_floor__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_i0_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_igamma__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_index_copy__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_isclose_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_istft_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_le_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_log__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_log_normal__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_log_normal_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_logical_xor_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_logsumexp_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_masked_fill__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_ne_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_neg_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_celu_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_leaky_relu_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_mish__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_nn_functional_prelu_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_positive_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_rot90_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sigmoid__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sign_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_bessel_j1_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_special_entr_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_sqrt__cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_std_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_to_cpu, test/test_ops.py::TestRefsOpsInfoCPU::test_refs_are_in_python_ref_db_op__refs_tril_cpu, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast___ror___cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast___rpow___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast__unsafe_masked_index_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_block_diag_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_bool_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_broadcast_tensors_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_byte_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cholesky_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_clone_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cov_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_cumulative_trapezoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_diagflat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_diagonal_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_div_floor_rounding_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_equal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_expand_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_fft_hfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_flipud_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_histogram_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_hsplit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_isnan_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_isreal_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_cholesky_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_matrix_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linalg_tensorinv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_linspace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_logical_and_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_lt_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_masked_std_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_max_binary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_maximum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nanmean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nanmedian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_narrow_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nextafter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_batch_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_max_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_max_unpool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_mish_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_rrelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nn_functional_unfold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nonzero_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_nonzero_static_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_norm_inf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_permute_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_randint_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_round_decimals_3_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_scatter_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_signal_windows_hamming_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_sin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_sinc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_sort_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_chebyshev_polynomial_u_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_special_xlog1py_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_sqrt_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_sum_to_size_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_svd_lowrank_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_t_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_take_along_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_tensor_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_to_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_triu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_triu_indices_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_unbind_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_view_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_view_as_real_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_fake_autocast_zeros_like_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_bitwise_or_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_cat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cdouble_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cholesky_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_contiguous_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_cross_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp__native_batch_norm_legit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp__unsafe_masked_index_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_asin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_atleast_1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_block_diag_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_clamp_max_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_clamp_min_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_cumsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_dsplit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_expm1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_fft_rfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_floor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_hsplit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_index_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_index_reduce_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_kron_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_lerp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_cross_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_linalg_vander_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_logaddexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_masked_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_min_reduction_with_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_mvlgamma_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nanquantile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_neg_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_avg_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_avg_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_conv1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_conv3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_conv_transpose3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_glu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_hardtanh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_nll_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_normalize_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_rrelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_nn_functional_softmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_ormqr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_repeat_interleave_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_reshape_as_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_scatter_reduce_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_sgn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_special_ndtr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_topk_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_triu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_unbind_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_unsafe_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_amp_var_mean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp___rdiv___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp___rmod___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp___rmul___cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp__batch_norm_with_update_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp__softmax_backward_data_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_add_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_addbmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_addr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_amin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_as_strided_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_as_strided_partial_views_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_asinh_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_atleast_3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cartesian_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_cdouble_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_contiguous_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_copysign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_diagflat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_digamma_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fft_rfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fmax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_fmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_frexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_hsplit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_hypot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_index_select_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_ldexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_cond_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_eig_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_lu_factor_ex_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_pinv_hermitian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_linalg_svdvals_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_logsumexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_lu_unpack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nanquantile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_narrow_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_adaptive_avg_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_cosine_embedding_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_embedding_bag_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_fractional_max_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_glu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_hardswish_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_instance_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_interpolate_linear_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_leaky_relu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_mish_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_softmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_norm_inf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_permute_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_polar_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_ravel_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_reshape_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_round_decimals_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_scatter_reduce_amax_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_scatter_reduce_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_sort_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_special_ndtr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_squeeze_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_tile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_trace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_trapz_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_triangular_solve_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_unflatten_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_unfold_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_crossref_backward_no_amp_var_mean_unbiased_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_diagflat_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_diagonal_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_dot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_exp2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_expm1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_fft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_fft_ifftshift_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_floor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_frexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_histc_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_hypot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_index_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_index_reduce_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_jiterator_2inputs_2outputs_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_lgamma_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_eigvals_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_lstsq_grad_oriented_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_matrix_rank_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linalg_pinv_singular_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_linspace_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_logaddexp2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_logical_and_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_median_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_masked_softmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_max_reduction_with_dim_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_mv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_native_layer_norm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_l1_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_max_pool1d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_max_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_max_pool3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_multilabel_margin_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_pad_replicate_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_pad_replicate_negative_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_pairwise_distance_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_pixel_shuffle_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_prelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_relu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_rrelu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_nn_functional_softsign_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_quantile_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_randn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_signal_windows_hamming_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_signal_windows_nuttall_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_signbit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_ndtr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_scaled_modified_bessel_k0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_special_shifted_chebyshev_polynomial_w_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_sum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_to_sparse_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_topk_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_triu_indices_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_fake_unbind_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_unsafe_split_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_vsplit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_vstack_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_fake_zero__cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops__unsafe_masked_index_put_accumulate_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_addmv_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_addr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_as_strided_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_atleast_3d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_bitwise_right_shift_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_chalf_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_conj_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_conj_physical_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_digamma_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_dot_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_einsum_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_exponential_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_fftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_irfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_rfft2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_rfft_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_fft_rfftn_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_flatten_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_gt_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_hash_tensor_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_index_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_jiterator_4inputs_with_extra_args_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_jiterator_unary_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_lerp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_logaddexp_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_argmin_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_median_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_masked_prod_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nan_to_num_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nanmean_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_native_dropout_backward_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_new_ones_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_avg_pool2d_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_huber_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_margin_ranking_loss_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_max_unpool1d_grad_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_relu_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_nn_functional_silu_complex_cpu_complex64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_polygamma_polygamma_n_0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_polygamma_polygamma_n_2_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_resize__cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_resolve_neg_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_signal_windows_gaussian_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_slice_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_bessel_y0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_log_ndtr_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_modified_bessel_i0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_modified_bessel_k1_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_shifted_chebyshev_polynomial_v_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_squeeze_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_triu_indices_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_true_divide_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_unfold_copy_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_pointwise_ops_vsplit_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_cpu_complex128, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_tensor_overload_cpu_float16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_linspace_tensor_overload_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_cpu_bfloat16, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_logspace_tensor_overload_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_ones_cpu_complex128, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_ones_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_ones_cpu_int64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout__refs_zeros_cpu_bool, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_bool, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_full_cpu_uint8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_cpu_uint8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_tensor_overload_cpu_float64, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_tensor_overload_cpu_int32, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_linspace_tensor_overload_cpu_uint8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_logspace_cpu_int8, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_ones_cpu_complex128, test/test_ops.py::TestFakeTensorCPU::test_strided_layout_zeros_cpu_bfloat16, test/test_ops.py::TestTagsCPU::test_tags___rmul___cpu_float32, test/test_ops.py::TestTagsCPU::test_tags___rsub___cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__batch_norm_with_update_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_cdouble_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_cfloat_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs__conversions_polar_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_atan2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_atan_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_atanh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_broadcast_tensors_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_constant_pad_nd_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_diag_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_diagonal_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_expand_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fft_hfft2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_floor_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_fmax_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_gcd_cpu_int64, test/test_ops.py::TestTagsCPU::test_tags__refs_ge_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_hsplit_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_i0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_igammac_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_index_select_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_mean_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_minimum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_neg_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_new_ones_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_gelu_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_nn_functional_triplet_margin_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_renorm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_rsub_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_signbit_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_softmax_with_dtype_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_i1_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_log_ndtr_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_multigammaln_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_special_multigammaln_mvlgamma_p_5_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_square_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_std_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_std_mean_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_unsqueeze_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__refs_vstack_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__segment_reduce_lengths_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags__unsafe_masked_index_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_add_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_as_strided_copy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_baddbmm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_bucketize_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cauchy_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cholesky_inverse_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_clamp_min_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_clone_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_count_nonzero_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_cummin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_empty_permuted_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_empty_strided_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_expand_as_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_hfft_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fft_ihfft2_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fliplr_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_fmod_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_full_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_gradient_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_grid_sampler_2d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_i0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_index_put_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_isclose_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_isnan_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_lerp_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_cond_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_eigvalsh_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_solve_triangular_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_tensorinv_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linalg_vector_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_linspace_tensor_overload_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_log10_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_log_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_log_normal_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_logdet_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_logit_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_logspace_tensor_overload_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_argmin_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_cumsum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_masked_sum_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_mvlgamma_mvlgamma_p_1_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_native_layer_norm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_adaptive_avg_pool2d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_avg_pool1d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_channel_shuffle_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_dropout3d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_interpolate_area_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_interpolate_bilinear_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_logsigmoid_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_max_pool3d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_max_unpool1d_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_mse_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_multi_head_attention_forward_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_pad_circular_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_pixel_unshuffle_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_poisson_nll_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_soft_margin_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_normal_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_normal_in_place_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_ones_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_permute_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_polar_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_randn_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_real_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_resolve_neg_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_rsqrt_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_signal_windows_blackman_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_signal_windows_nuttall_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_sparse_sampled_addmm_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_airy_ai_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_bessel_y1_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_modified_bessel_k1_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_ndtr_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_polygamma_special_polygamma_n_0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_special_spherical_bessel_j0_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_squeeze_multiple_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_stack_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_std_mean_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_std_mean_unbiased_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_sub_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_torch__scaled_mm_cpu_float8_e4m3fn, test/test_ops.py::TestTagsCPU::test_tags_torch_ops_aten__safe_softmax_default_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_transpose_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_true_divide_cpu_float32, test/test_ops.py::TestTagsCPU::test_tags_view_as_real_cpu_complex64 2025-08-14T23:39:57.6412057Z 2025-08-14T23:40:03.4904906Z Running functorch/test_ops 5/8 ... [2025-08-14 23:40:03.485303] 2025-08-14T23:40:03.4905608Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:40:03.4914259Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_ops.py', '-m', 'not serial', '--shard-id=5', '--num-shards=8', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:40:03.490977] 2025-08-14T23:41:07.4270425Z 2025-08-14T23:41:07.4271348Z functorch/test_ops 3/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_3.8_1acfffcd3077d90d_.log 2025-08-14T23:41:07.4784908Z Running 1292 items in this shard: test/functorch/test_ops.py::TestOperatorsCPU::test_extremal_numerics_layer_norm_cpu, test/functorch/test_ops.py::TestOperatorsCPU::test_extremal_numerics_softmax_cpu, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad___getitem___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad___getitem___functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad___rsub___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad__softmax_backward_data_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_acosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_all_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_allclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_baddbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_bmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_ceil_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_chalf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_char_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_contiguous_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_corrcoef_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cov_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_div_no_rounding_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_irfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_flip_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_float_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_hsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_hstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_igammac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_index_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_index_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_le_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_lerp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_pinv_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_svdvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_lu_unpack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_minimum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_msort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_mish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_softshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_quantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_resize_as__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_resolve_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_rot90_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_round_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_scalar_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_signal_windows_bartlett_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_bessel_j1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_erfcx_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_zeta_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_take_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_uniform_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_unsqueeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_view_as_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp__segment_reduce_offsets_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_addcdiv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_all_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_as_strided_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_atanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_clamp_max_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_column_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_contiguous_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cummax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_diagonal_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_div_floor_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_dsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_einsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_empty_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_eq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_equal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_erfinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_expand_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_expm1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_fft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_fftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fmod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_full_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_geqrf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_hypot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_isclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_isreal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_le_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_householder_product_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_matrix_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_vecdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_vector_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_logit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_matrix_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nanmedian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_narrow_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_new_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_new_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_celu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_elu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_gelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_kl_div_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_leaky_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_mse_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_relu6_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_rad2deg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_randint_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_reshape_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_round_decimals_neg_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_scatter_reduce_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sparse_mm_reduce_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_hermite_polynomial_he_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_log_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_spherical_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_squeeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_std_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_stft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_t_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_to_sparse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_view_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_vsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_argsort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_broadcast_shapes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cauchy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_diagflat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_div_trunc_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_equal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_fft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_flatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fliplr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_floor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_geometric_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_grid_sampler_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_half_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_heaviside_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_hypot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_isfinite_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_isin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_isnan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_isreal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_inv_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_ldl_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_pinv_singular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_log_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_logdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_mH_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_mT_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_hardswish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_norm_inf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ravel_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_sparse_mm_reduce_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_bessel_y0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_bessel_y1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_erfcx_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_zeta_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_stft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_t_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_take_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_tensor_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_trapz_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_triu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_unsqueeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_var_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_view_as_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_amax_cpu_complex64, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_amin_cpu_complex64, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_argmax_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_argmin_cpu_complex32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_ge_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_lt_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_minimum_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_minimum_cpu_complex64, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_sort_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_sort_cpu_complex64, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_diagonal_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_expand_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_flatten_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_special_grad_op_vjp_cpu, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_squeeze_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_squeeze_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_squeeze_multiple_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_unflatten_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_unflatten_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_view_as_complex_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_view_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_H_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp___getitem___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp___rpow___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_atanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_bernoulli_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_block_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_bucketize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_deg2rad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_diagonal_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_double_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_eq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_fft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_full_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_half_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_histc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_hstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_index_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_index_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_item_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_kthvalue_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_vander_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_vector_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_min_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nansum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_embedding_bag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_grid_sample_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_kl_div_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_pad_circular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_resolve_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_rsub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_signal_windows_bartlett_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_signbit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_sinc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_erfcx_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_hermite_polynomial_h_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_squeeze_multiple_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_std_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_t_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_tanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_unbind_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_var_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_view_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_H_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp___rdiv___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp___rpow___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_addbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_addmv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cdouble_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_ceil_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_chalf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_clone_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_constant_pad_nd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_diag_embed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_diff_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_div_floor_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_expand_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_ifft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_rfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_gradient_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_histc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_index_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_isinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_item_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_matrix_rank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_tensorsolve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_log_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_min_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nanquantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_narrow_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_new_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_celu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_ctc_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_hardshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_hardtanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_interpolate_area_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_silu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_outer_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_scatter_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_select_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_sinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_modified_bessel_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_trunc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_unbind_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_var_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjpvmap_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjpvmap_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjpvmap_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjpvmap_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjpvmap_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap___rsub___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_abs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_allclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_as_strided_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_block_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cdouble_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_char_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_einsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_eq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_erfinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_fftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_frexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_full_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_geometric_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_gt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_hash_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_index_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_isclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_le_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_inv_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_lu_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_log2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_logit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_logspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_min_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nansum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_new_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nextafter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_ctc_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_relu6_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_silu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_polar_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_randn_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ravel_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_remainder_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_repeat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_resolve_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_round_decimals_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_round_decimals_neg_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_rsub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_scatter_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_sinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_std_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_take_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_triangular_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_var_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_var_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_view_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_NumpyTakeAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___getitem___functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___getitem___functorch_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___radd___cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__unsafe_masked_index_put_accumulate_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_abs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_addmv_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_addr_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_all_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_allclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_allclose_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_angle_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_baddbmm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bfloat16_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bmm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bool_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_broadcast_tensors_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cholesky_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_chunk_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_clamp_min_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_complex_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cosh_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cumulative_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_div_no_rounding_mode_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_div_trunc_rounding_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_einsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_empty_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_fftshift_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ifftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ifftshift_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ihfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_rfft2_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_floor_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_gt_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_hstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_igammac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_put_functorch_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_reduce_mean_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isposinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_jiterator_4inputs_with_extra_args_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_cholesky_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_cond_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_lu_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_lu_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_matrix_norm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_matrix_rank_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_matrix_rank_hermitian_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_norm_subgradients_at_zero_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_vander_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linspace_tensor_overload_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logaddexp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logaddexp_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_cumsum_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_logaddexp_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_select_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_min_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mode_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nanmean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_neg_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_new_empty_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_new_zeros_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_stride_padding_with_bias_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv_transpose1d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_ctc_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_glu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_glu_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_hardshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_hardsigmoid_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_hardswish_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_linear_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_trilinear_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_unpool2d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_mish_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_multilabel_soft_margin_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_nll_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pad_circular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pad_replicate_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_smooth_l1_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_soft_margin_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_outer_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_polygamma_polygamma_n_1_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_randn_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ravel_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_remainder_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_resize_as__cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_rot90_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_round_decimals_neg_3_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_searchsorted_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_exponential_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_general_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_slice_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_slice_scatter_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sparse_mm_reduce_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_bessel_y1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_bessel_y1_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_hermite_polynomial_he_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_legendre_polynomial_p_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_scaled_modified_bessel_k0_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_shifted_chebyshev_polynomial_w_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_zeta_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_squeeze_multiple_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_std_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sum_to_size_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_take_along_dim_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_tan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_tensordot_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_tile_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_tril_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_triu_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_trunc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unbind_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_var_mean_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_vdot_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_view_as_complex_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_zeros_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall___getitem___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_atanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_broadcast_shapes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ceil_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_clamp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cummax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_diagflat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_diagonal_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_dsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_expand_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_irfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_H_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule__segment_reduce_offsets_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_abs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_addmm_decomposed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_atanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cauchy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ceil_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_clone_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_constant_pad_nd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_empty_permuted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_eq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_expm1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_fftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_ihfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_irfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_rfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fliplr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_flipud_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_full_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_index_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_isposinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_kthvalue_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_det_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_multi_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_log10_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_logaddexp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_max_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_min_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_mv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nanmean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nanmedian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_embedding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_mish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_pad_reflect_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_selu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_reciprocal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_scatter_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_scatter_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_scatter_reduce_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_signal_windows_bartlett_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_signal_windows_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_signal_windows_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sparse_mm_reduce_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_bessel_y0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_i1e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_squeeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_stft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_tensor_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_heaviside_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_isinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_item_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_le_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_matrix_rank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_tensorsolve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_vander_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_log_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_log_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_long_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_min_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nanmean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nanmedian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_group_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nonzero_static_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_norm_fro_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_rad2deg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_randint_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_repeat_interleave_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_resolve_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_round_decimals_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_rsub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_scatter_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_signal_windows_bartlett_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_hermite_polynomial_h_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_tensor_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_tril_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_triu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_unique_consecutive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_vstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_where_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp___getitem___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_addmv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_all_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_any_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_asinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_broadcast_shapes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cauchy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ceil_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_ifftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_gradient_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_index_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_int_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_householder_product_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_lstsq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_pinv_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_log2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_logical_not_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_long_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_lt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_mT_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_max_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_movedim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_mvlgamma_mvlgamma_p_5_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nanmedian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_new_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_prelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_silu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_threshold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_rad2deg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_randn_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_reshape_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_roll_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_scalar_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_sign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_signal_windows_gaussian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_bessel_j1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_spherical_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_squeeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_stft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_svd_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_take_along_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_to_sparse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_var_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_vstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_xlogy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp___rpow___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_allclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_asin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_bernoulli_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_bucketize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cartesian_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_char_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_corrcoef_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_diagflat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_diff_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_div_trunc_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_dstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_empty_permuted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_expand_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_fftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_hfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_ihfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_irfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_gradient_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule__native_batch_norm_legit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_abs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_as_strided_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_broadcast_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cauchy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_chalf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_char_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_constant_pad_nd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_diff_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_fft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_hfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_float_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_frac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_hypot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_isposinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_cholesky_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_lstsq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_lu_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_vecdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_vector_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_log1p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_logical_not_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_min_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_min_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_msort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_mvlgamma_mvlgamma_p_5_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nanmedian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_narrow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv2d_stride_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_softshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_rot90_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_round_decimals_neg_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_sign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_signal_windows_blackman_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_signal_windows_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_sparse_mm_reduce_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_bessel_y0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_hermite_polynomial_he_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_unsqueeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_vdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_where_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_index_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_isneginf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_le_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_lerp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_inv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_matrix_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_svdvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_log_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_logical_not_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_max_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_native_dropout_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_group_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_pad_circular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_prelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_norm_fro_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_polar_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_pow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_repeat_interleave_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_round_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_round_decimals_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_round_decimals_neg_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_rsub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_searchsorted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_signal_windows_gaussian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_signal_windows_general_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_signal_windows_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_signal_windows_hann_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_slice_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_airy_ai_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_zeta_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_square_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_sub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_tril_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_var_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_view_as_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp___rsub___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_addcmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_addr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_angle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_as_strided_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_atleast_1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_atleast_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_baddbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_bucketize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cartesian_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_chalf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_erf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_erfc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_fft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_ifft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_frac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_full_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_gather_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_geometric_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_hash_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_isnan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_householder_product_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_ldl_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_lu_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_multi_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_lu_unpack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_glu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_kl_div_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_softplus_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_permute_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_positive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_real_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_reciprocal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_rot90_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_round_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_scatter_reduce_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_signal_windows_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_signal_windows_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_signal_windows_kaiser_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_spherical_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_split_list_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_squeeze_multiple_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_tanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_true_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_unbind_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_unfold_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_unique_consecutive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_unsqueeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_view_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvmap_NumpyCubeNotComposableAutogradFunction_cpu_float32 2025-08-14T23:41:07.5273896Z 2025-08-14T23:41:13.6168696Z Running functorch/test_aotdispatch 4/7 ... [2025-08-14 23:41:13.610082] 2025-08-14T23:41:13.6169661Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:41:13.6178788Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_aotdispatch.py', '-m', 'not serial', '--shard-id=4', '--num-shards=7', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:41:13.610082] 2025-08-14T23:48:36.0756980Z 2025-08-14T23:48:36.0758401Z functorch/test_ops 4/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_4.8_5c028b2bbc5154f7_.log 2025-08-14T23:48:36.1624536Z Running 1216 items in this shard: test/functorch/test_ops.py::TestOperatorsCPU::test_grad_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_addcmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_atanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_atleast_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_broadcast_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cdouble_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_conj_physical_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_constant_pad_nd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_equal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_expand_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_expm1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_fft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_fftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_irfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_geometric_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_geqrf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_gradient_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_hash_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_heaviside_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_isfinite_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_isneginf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_isposinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_inv_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_ldl_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_matrix_rank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_multi_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_tensorsolve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_vander_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_long_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_matmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_min_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_new_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_elu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_embedding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_hardswish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_interpolate_area_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_pdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_remainder_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_rsub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_signal_windows_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_signal_windows_kaiser_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_slice_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sparse_mm_reduce_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_bessel_y1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_i1e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_square_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_squeeze_multiple_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_std_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_true_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_var_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_view_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_view_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_vstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp___rdiv___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_addbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_arange_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_baddbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_bernoulli_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_block_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cauchy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_clamp_min_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_corrcoef_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_erfc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_fftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_ifftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_ihfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_rfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_float_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_gt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_index_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_index_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_isin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_jiterator_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ldexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_ldl_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_matrix_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_matrix_rank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_pinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_slogdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_max_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nansum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_native_dropout_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ne_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_instance_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_prelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_silu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_norm_inf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_permute_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_resolve_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_resolve_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_rsub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_scatter_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_short_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_bessel_y1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_entr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_split_list_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_triu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_var_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_view_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_where_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp___getitem___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp___radd___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_addcmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_alias_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_angle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_broadcast_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_bucketize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cartesian_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_clamp_max_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_constant_pad_nd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cummax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_div_floor_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_div_no_rounding_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_double_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_dstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_expand_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_expand_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_expm1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_ifft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_ihfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_rfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_float_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_geqrf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_gradient_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_half_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_hstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_index_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_jiterator_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_cond_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_inv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_slogdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_logaddexp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_logical_not_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_minimum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nanmean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nanquantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nextafter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_group_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_pad_circular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_pad_reflect_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_permute_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_reciprocal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_reshape_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_round_decimals_neg_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_scatter_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_scatter_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_scatter_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_short_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_signal_windows_bartlett_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_signal_windows_gaussian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_i1e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_modified_bessel_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_xlog1py_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_split_list_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_split_with_sizes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_unbind_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_uniform_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_unique_consecutive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_view_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_vsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_zeros_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmapvmap_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_amax_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_amin_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_clamp_cpu_complex32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_topk_cpu_complex128, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_topk_cpu_complex32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_T_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_list_return_unbind_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_list_return_vsplit_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_mH_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_real_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_transpose_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_view_as_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp___rmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_atleast_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_chalf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_char_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_clamp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_contiguous_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_diagonal_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_fft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_grid_sampler_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_index_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_isreal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_householder_product_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_log1p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_log_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_log_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_logcumsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_logical_xor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_mv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_native_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_ne_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_new_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_glu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_hardswish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_instance_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_interpolate_area_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_leaky_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_normal_number_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_quantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_rad2deg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_repeat_interleave_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_resize__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_round_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_select_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_signal_windows_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_signal_windows_gaussian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_slice_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_airy_ai_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_torch_ops_aten__safe_softmax_default_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_var_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp__segment_reduce_offsets_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_atleast_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_baddbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_bfloat16_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_block_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cartesian_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cummax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_ifftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_flip_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fmod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_geqrf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_hsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_igammac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_index_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_index_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_isposinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_le_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_lgamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_vecdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_logit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_logspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_lt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_min_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_multinomial_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_local_response_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_normal_number_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_polar_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_quantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_randint_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_reciprocal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_reshape_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_resize__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_resize_as__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_resolve_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_rot90_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_round_decimals_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_scalar_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_scatter_reduce_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_slice_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_sort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_hermite_polynomial_h_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_hermite_polynomial_he_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_sum_to_size_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_tensor_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_trace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_transpose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_triangular_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_tril_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_view_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjpvmap_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjpvmap_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ForwardHasDefaultArgsAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap___getitem___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap___radd___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap__segment_reduce_offsets_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap__softmax_backward_data_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_broadcast_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ceil_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cfloat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_clone_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cummin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_div_trunc_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_empty_permuted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_eye_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_fft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_index_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_ldl_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_vecdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_log10_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_log_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_logical_not_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_mH_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_mT_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_msort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_mvlgamma_mvlgamma_p_5_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_native_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_multilabel_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_softsign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_normal_number_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_quantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_randint_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_reshape_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_scatter_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_signal_windows_general_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_signal_windows_hann_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_sinc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_hermite_polynomial_he_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_sqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_stft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_trapz_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_unbind_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_view_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_CubeGenVmapAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_NumpyExpMarkDirtyAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_NumpyMulAutogradFunction_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___rpow___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__batch_norm_with_update_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__chunk_cat_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_addmv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_angle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_argsort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_asin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_asin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_asinh_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_atan2_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_atan_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_atleast_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bfloat16_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bfloat16_functorch_no_channels_last_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bucketize_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_char_functorch_no_channels_last_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_clamp_min_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_column_stack_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_conj_physical_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cos_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cummax_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cummin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diagflat_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_diagonal_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_dist_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_double_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_double_functorch_no_channels_last_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_dsplit_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_dstack_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_empty_like_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_erfc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_expm1_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_eye_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_fftn_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_hfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ifftn_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ihfftn_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_irfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_flip_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fliplr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fliplr_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_flipud_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fmod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_gt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_hypot_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_igamma_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_copy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_put_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_jiterator_unary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_diagonal_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_eigvalsh_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_lstsq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_svdvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log1p_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logspace_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_lu_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_cumprod_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_fill_functorch_Scalar_only_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_log_softmax_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_logsumexp_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_softmax_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_meshgrid_list_of_tensors_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_movedim_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mvlgamma_mvlgamma_p_5_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nanmedian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_native_layer_norm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_new_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_new_ones_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nextafter_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_adaptive_avg_pool3d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_adaptive_max_pool2d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_bilinear_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_stride_padding_no_bias_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_cosine_embedding_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_embedding_bag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_fractional_max_pool2d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_fractional_max_pool3d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_grid_sample_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_group_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_group_norm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_nearest-exact_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_kl_div_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_linear_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_logsigmoid_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_pool2d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_pool3d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_unpool2d_grad_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_unpool3d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pad_replicate_negative_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_relu6_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_relu_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_softshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_softsign_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_tanhshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_norm_fro_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_normal_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_normal_number_mean_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ones_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ormqr_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_pca_lowrank_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_quantile_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_rad2deg_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_randn_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_randn_like_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_real_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_renorm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_repeat_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_repeat_interleave_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_resize_as__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_resolve_conj_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_round_decimals_3_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_add_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_reduce_amin_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_reduce_mean_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_short_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sigmoid_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_cosine_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_kaiser_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_chebyshev_polynomial_t_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_i0e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_i1e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_modified_bessel_i0_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_modified_bessel_k0_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_shifted_chebyshev_polynomial_u_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_split_with_sizes_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_std_unbiased_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sub_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_tanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_to_sparse_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_topk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_trace_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_transpose_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_triu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unfold_copy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unfold_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unsqueeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_var_unbiased_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_view_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_vstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_where_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_zero__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_abs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_acos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_atleast_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_bmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_broadcast_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_combinations_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_div_floor_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_empty_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_erf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_float_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule__softmax_backward_data_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule__unsafe_masked_index_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_atan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_bernoulli_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_block_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_bmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cdouble_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cholesky_inverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_deg2rad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_diagonal_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_div_trunc_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_irfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_geqrf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_hash_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_hsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_index_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_int_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_inv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_matrix_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_log1p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_mvlgamma_mvlgamma_p_5_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nansum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_new_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_new_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_dropout3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_gelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_glu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_hardshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_hardswish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_instance_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_pad_circular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_resize__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_resize_as__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_resolve_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_resolve_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_scatter_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_modified_bessel_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_sqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_square_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_squeeze_multiple_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_take_along_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_to_sparse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_triu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_trunc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_view_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_xlogy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_hash_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_index_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_isreal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_pinv_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_slogdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_log10_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_lu_unpack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_native_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv2d_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_glu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_hardtanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_mish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_mse_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_pad_constant_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_pdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_rrelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_softshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_ormqr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_pinverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_repeat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_reshape_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_round_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_signal_windows_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_signal_windows_general_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_sinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_tanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_transpose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_trapz_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp___radd___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp___rmatmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp__native_batch_norm_legit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp__segment_reduce_lengths_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp__softmax_backward_data_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_as_strided_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_atan2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_block_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_chalf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cumulative_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_diagonal_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_diagonal_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_dist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_dsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_erfc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_ifft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_irfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_rfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_half_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_igammac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_index_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_inv_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_pinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_svdvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_log1p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_log_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_logical_or_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nan_to_num_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nanmean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_narrow_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_dropout3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_pad_constant_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_relu6_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_rrelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_norm_inf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_normal_in_place_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_rand_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_resolve_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_round_decimals_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_scatter_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_searchsorted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_sigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_signal_windows_bartlett_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_signal_windows_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_modified_bessel_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_split_list_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_split_with_sizes_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_square_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_std_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_trace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_unsqueeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvmap_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp__unsafe_masked_index_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_abs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_all_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_atan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_broadcast_shapes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_broadcast_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_clamp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_constant_pad_nd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_copysign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_digamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_erf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_fftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_irfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_rfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fliplr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_floor_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_full_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule___rmatmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule__softmax_backward_data_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_acos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_any_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_ceil_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cov_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_diagflat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_dist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_empty_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_erfinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_ifft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fliplr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fmod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_geqrf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_grid_sampler_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_histogram_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_hstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_index_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_index_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_int_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_inv_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_pinv_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_pinv_singular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_slogdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_vander_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_log2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_logical_and_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_long_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_minimum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nanmean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_native_dropout_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nextafter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_elu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_group_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_pad_circular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_rrelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_silu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_norm_nuc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_normal_number_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_ones_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_permute_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_pinverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_randint_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_randn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_renorm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_reshape_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_resolve_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_rsub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_signbit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_sin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_sinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_bessel_j1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_square_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_take_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_trunc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_uniform_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_unsafe_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_histogramdd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_hstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_igamma_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_index_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_isposinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_kthvalue_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_pinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_vander_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_vector_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_log10_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_log_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_logcumsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_logdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_logical_or_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_logspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_minimum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_msort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_mul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ne_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nextafter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_celu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_elu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_interpolate_area_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_leaky_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_pad_replicate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_threshold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_normal_number_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_permute_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_randint_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_scalar_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_select_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_sparse_mm_reduce_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_sqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_squeeze_multiple_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_take_along_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_tan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_uniform_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp__segment_reduce_lengths_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp__segment_reduce_offsets_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_abs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_acos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_asin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_bernoulli_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_broadcast_shapes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cholesky_inverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_clone_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_column_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_corrcoef_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_hfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fliplr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_float_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_frexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_histogram_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_hstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_igammac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_isneginf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_eig_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_eigvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_inv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_pinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_log_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_log_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_logspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_min_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_mv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_native_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_new_empty_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_adaptive_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_dropout3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_logsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_pad_circular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_pad_constant_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_pad_reflect_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_pdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_prelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_soft_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_tanhshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_scatter_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_sign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_signbit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_sinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_bessel_y1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_modified_bessel_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_xlog1py_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_sqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_take_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_where_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_xlogy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvmap_SelectAutogradFunction_cpu_float32 2025-08-14T23:48:36.2358060Z 2025-08-14T23:48:41.9357876Z Running functorch/test_aotdispatch 5/7 ... [2025-08-14 23:48:41.935588] 2025-08-14T23:48:41.9358388Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:48:41.9365600Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_aotdispatch.py', '-m', 'not serial', '--shard-id=5', '--num-shards=7', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:48:41.936300] 2025-08-14T23:49:18.1595775Z 2025-08-14T23:49:18.1597117Z functorch/test_aotdispatch 4/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_4.7_66956a2f12bae936_.log 2025-08-14T23:49:18.1760643Z Running 291 items in this shard: test/functorch/test_aotdispatch.py::TestAOTAutograd::test_alias_of_intermediate_detach_backend_aot_eager_view_replay_for_aliased_outputs_True_dynamic_shapes_False, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_backward_mutation_data, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_backward_mutation_on_grad_out, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_backward_pass_autocast_off, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_batch_norm_amp, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_buffer_copied_in_graph_with_different_shapes, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_composite_impl_compile, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_dynamic_output_aliases_input_view_meta_replay, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_inner_grad, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_aliases_other_input, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_metadata, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_metadata2, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_requires_grad_detach, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_output_aliase_custom_autograd_function, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_output_view_metadata_mutate_multiple, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_invalid_requires_grad_fake, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_mark_activations_dynamic, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_intermediate_multi_output_view, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_set__steals_view_chain, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_some_output_requires_grad_input_doesnt, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_some_outputs_dont_require_grad_non_view, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_some_outputs_dont_require_grad_view, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_subclass_metadata_mutation_req_grad_True, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_subclasses_mixed, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_synthetic_base_base_attribute_is_none, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_forward_mutation_no_buffer_mut, test/functorch/test_aotdispatch.py::TestAOTDispatch::test_aot_dispatch_incorrect_backward, test/functorch/test_aotdispatch.py::TestAOTDispatch::test_aot_dispatch_output_alias, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_inference_python_dispatcher, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_noncontig_nonmemformat_tangents_dynamic_shapes_False_test_subclasses_True_device_cuda, test/functorch/test_aotdispatch.py::TestPythonKeyCPU::test_make_fx_functionalize_cpu, test/functorch/test_aotdispatch.py::TestPythonKeyCPU::test_nnc_pytrees_cpu, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive___rmul___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive__native_batch_norm_legit_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_alias_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_any_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_argsort_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_asin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_bucketize_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cauchy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_clamp_min_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cumsum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_double_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_expand_as_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_expand_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_expm1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_fft_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_hfft_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_hfftn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_ifftn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fmin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fmod_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_frexp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_gather_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_histogram_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_index_select_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_inner_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_ldexp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_diagonal_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_eigh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_inv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_lstsq_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_logaddexp2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_logical_and_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_logit_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_long_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_lu_unpack_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_map_nested_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_amin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_cumsum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_softmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_var_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_max_reduction_with_dim_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_movedim_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_multinomial_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_mv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_new_empty_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_instance_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_interpolate_linear_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_leaky_relu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_nll_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_pdist_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_relu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_normal_number_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_permute_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_pinverse_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_qr_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_randn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_randn_like_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_ravel_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_real_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_round_decimals_0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_rsqrt_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_scatter_add_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_scatter_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_scatter_reduce_sum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_sigmoid_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_sign_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_signal_windows_general_cosine_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_signal_windows_kaiser_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_signal_windows_nuttall_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_sin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_sinc_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_sparse_sampled_addmm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_hermite_polynomial_h_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_log_ndtr_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_modified_bessel_i0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_spherical_bessel_j0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_xlog1py_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_split_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_square_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_squeeze_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_triangular_solve_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_unbind_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_unflatten_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_unfold_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_unfold_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_unsqueeze_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_view_as_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_T_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive___rpow___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive__segment_reduce_lengths_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_argwhere_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_bernoulli_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cfloat_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_chunk_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_clone_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_copysign_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_corrcoef_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cross_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_deg2rad_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_diag_embed_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_diagonal_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_expm1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_hfft2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_ihfft_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_flatten_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fmin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_frac_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_half_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_heaviside_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_histc_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_histogram_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_invoke_quant_packed_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_invoke_quant_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_isnan_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_cholesky_ex_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_eig_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_eigvals_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linspace_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_log2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_logical_xor_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_logaddexp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_select_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_matmul_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_max_reduction_no_dim_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nanmedian_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_native_dropout_backward_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_new_ones_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_huber_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_l1_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_max_pool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_mse_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_nll_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_pdist_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_tanhshrink_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nonzero_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_norm_fro_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_normal_in_place_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_prod_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_randint_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_reshape_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_rot90_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_scatter_reduce_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_sgn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_signal_windows_exponential_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_signal_windows_hamming_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_signbit_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_slice_scatter_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_erfcx_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_i1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_legendre_polynomial_p_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_split_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_std_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_t_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_tensor_split_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_topk_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_trunc_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_unflatten_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_var_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_view_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_view_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_AvgPool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Bilinear_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_CircularPad1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ConstantPad2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ConvTranspose1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_L1Loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LSTM_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LazyConv1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LazyConv3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_MaxPool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_MultiLabelMarginLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_NLLLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_PReLU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_RNN_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ReflectionPad1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Softmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Softsign_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_TransformerEncoderLayer_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_CircularPad3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ConstantPad1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_CosineEmbeddingLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ELU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_GRU_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Hardswish_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_InstanceNorm3d_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LazyConv1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LazyConv2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_MSELoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_MarginRankingLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Mish_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_MultiheadAttention_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_RNN_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_SELU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_SmoothL1Loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Tanhshrink_cpu_float32, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_alias_of_intermediate_detach_backend_aot_eager_view_replay_for_aliased_outputs_False_dynamic_shapes_False, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_backward_mutation_metadata, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_batchnorm, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_aliases_bases_out_of_order, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_batchnorm, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_metadata2, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_multiple, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_invalid_dupe, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_mutation_of_input_in_fw_and_bw, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_nested_subclasses_non_nested_grad, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_nonidempotent_amp, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_input_multi_output_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_intermediate_and_returned_flipped, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_intermediate_no_grad, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_intermediate_single, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_intermediate_view_meta_replay, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_real_weights_in_symbolic_mode, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_saved_tensors_hooks_mutations_raise, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_view_and_inplace_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_backward_mutation_metadata, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_complex_linear, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_default_partitioner_saves_symints_not_tensors_for_bw, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_data_and_metadata_mutation_aliases_other_input, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_aliases_and_none_require_gradients, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_aliases_bases_out_of_order, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_and_output_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_requires_grad_no_grad_detach_mixed, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_requires_grad_no_grad_inference_graph, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_output_view_mutate_multiple, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_output_view_simple, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_mutates_input_noncontiguous, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_mutation_of_input_in_fw_and_bw, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_non_tensor_and_none_inputs, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_intermediate_and_returned, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_intermediate_inplace_view_and_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_intermediate_no_grad, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_intermediate_single, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_multiple_inputs_get_correct_one, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_dict, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_saved_tensors_hooks_mutations_raise, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_set__not_allowed, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_subclasses_mixed_mode 2025-08-14T23:49:18.1917533Z 2025-08-14T23:49:24.1913914Z Running functorch/test_aotdispatch 6/7 ... [2025-08-14 23:49:24.190509] 2025-08-14T23:49:24.1914467Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:49:24.1921371Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'functorch/test_aotdispatch.py', '-m', 'not serial', '--shard-id=6', '--num-shards=7', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:49:24.191711] 2025-08-14T23:52:04.1040291Z 2025-08-14T23:52:04.1041907Z functorch/test_ops 5/8 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_ops_5.8_5a0d3e34095b4767_.log 2025-08-14T23:52:04.2063688Z Running 1327 items in this shard: test/functorch/test_ops.py::TestOperatorsCPU::test_extremal_numerics_nll_loss_cpu, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_addr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_as_strided_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_atleast_1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_block_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_div_trunc_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_erfinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_hfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_ifft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_ifftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_irfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fft_rfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_floor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_fmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_frac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_full_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_ge_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_grid_sampler_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_index_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_index_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_int_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_int_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_jiterator_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_kthvalue_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_lu_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linalg_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_linspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_log_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_logical_xor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_long_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_mH_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_masked_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_matrix_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_max_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_movedim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_mul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_mv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_mvlgamma_mvlgamma_p_5_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nan_to_num_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nanmean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_narrow_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_ne_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_new_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_new_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_embedding_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_multilabel_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_nn_functional_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_permute_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_randn_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_ravel_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_repeat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_repeat_interleave_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_reshape_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_roll_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_scatter_reduce_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_slice_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_hermite_polynomial_h_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_scaled_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_special_xlog1py_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_squeeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_sub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_tril_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_unbind_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_unsafe_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_var_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_view_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_grad_vsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp___rmatmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp__batch_norm_with_update_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_acos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_argwhere_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_as_strided_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_asin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_atan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_atleast_1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_clamp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_clone_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cummin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_diff_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_expand_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fft_rfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_flip_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_flipud_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_floor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_frac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_grid_sampler_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_hsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_index_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_isnan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_item_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_eigh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_eigvalsh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_svdvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_linalg_vander_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_log_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_logcumsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_long_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_masked_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_max_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_mm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_mv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_mvlgamma_mvlgamma_p_5_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nan_to_num_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv2d_stride_padding_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_huber_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_scaled_dot_product_attention_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_tanhshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_ops_aten__new_zeros_with_same_feature_meta_functorchonly_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_reciprocal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_repeat_interleave_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_resize__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_searchsorted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_sigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_signal_windows_gaussian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_signal_windows_hamming_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_slice_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_bessel_j1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_bessel_y0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_special_i1e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_square_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_std_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_take_along_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_trace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_trunc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_unbind_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_unsqueeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_vdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_view_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvp_xlogy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_ScaleGradGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpjvpvmap_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_T_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp__chunk_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp__native_batch_norm_legit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp__softmax_backward_data_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp__unsafe_masked_index_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_abs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_acos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_all_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_allclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_bernoulli_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_block_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cdouble_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_ceil_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cholesky_inverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_conj_physical_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cov_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_diagonal_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_dsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_exp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_hfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_ihfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_irfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fft_irfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_flip_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_floor_divide_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_fmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_index_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_index_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_index_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_index_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_kthvalue_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_lerp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_householder_product_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_ldl_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_matrix_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_multi_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linalg_pinv_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_linspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_log2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_fill_functorch_Scalar_only_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_masked_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_mvlgamma_mvlgamma_p_5_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_native_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_new_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_conv2d_stride_groups_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_embedding_bag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_glu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_grid_sample_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_l1_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_mse_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_nn_functional_softshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_norm_nuc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_permute_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_polar_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_positive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_renorm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_roll_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_rot90_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_round_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_round_decimals_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_scatter_reduce_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_signal_windows_hann_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_sinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_sort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_modified_bessel_i0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_split_with_sizes_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_svd_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_unique_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_unsqueeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_vdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_vstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjp_xlogy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvjpvmap_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_jvpvmap_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_bool_raises_argmax_cpu_bool, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_bool_raises_argmin_cpu_bool, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_bool_raises_ceil_cpu_bool, test/functorch/test_ops.py::TestOperatorsCPU::test_ordered_complex_raises_maximum_cpu_complex64, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_list_return_dsplit_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_resolve_conj_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_resolve_neg_grad_op_jvp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_select_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_squeeze_multiple_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_unfold_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_view_then_inplace_view_grad_op_vjp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp___rmatmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp__chunk_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp__softmax_backward_data_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_allclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_any_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_as_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_atleast_1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_baddbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_bool_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_broadcast_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cartesian_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cauchy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_char_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_combinations_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_cumulative_trapezoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_diag_embed_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_diagflat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_div_no_rounding_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_dsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_einsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_ifft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fft_irfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_fmod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_frac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_geometric_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_gradient_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_hash_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_hypot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_igammac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_index_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_jiterator_unary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_le_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_det_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_ldl_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_lu_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_matrix_rank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_multi_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linalg_tensorsolve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_linspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_logaddexp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_mT_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_masked_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_movedim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_mvlgamma_mvlgamma_p_5_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_gelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_max_unpool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_rms_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_tanhshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_nn_functional_upsample_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_pinverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_pow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_randint_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_real_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_remainder_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_reshape_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_reshape_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_rot90_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_sign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_signal_windows_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_sparse_mm_reduce_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_special_xlog1py_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_split_list_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_square_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_stft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_sub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_sum_to_size_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_svd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_svd_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_uniform_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_unique_consecutive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_view_as_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjp_vstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp___getitem___functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp___radd___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp___rmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp__segment_reduce_lengths_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_acosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_angle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_argsort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_as_strided_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_atan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_atanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_bfloat16_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_broadcast_shapes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_broadcast_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_combinations_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_conj_physical_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_corrcoef_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cov_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_diagonal_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_double_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_dsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_erf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_exp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_expand_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_fft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_hfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fft_irfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_float_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_floor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_fmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_hash_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_hstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_hypot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_index_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_jiterator_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_inv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_inv_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_ldl_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_lstsq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_matrix_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_solve_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_linalg_solve_triangular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_log1p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_logcumsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_logical_xor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_logspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_long_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_masked_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_minimum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_mm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_mv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_ne_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_new_full_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_new_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nextafter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv2d_stride_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv2d_strided_padding_dilation_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv_transpose2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_conv_transpose3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_elu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_embedding_bag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_kl_div_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_prelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_rrelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nn_functional_selu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_nonzero_static_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_normal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_randint_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_randn_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_reshape_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_scatter_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_sgn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_sign_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_signal_windows_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_signal_windows_gaussian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_signal_windows_hann_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_slice_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_chebyshev_polynomial_w_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_erfcx_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_ndtri_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_scaled_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_special_xlog1py_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_squeeze_multiple_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_take_along_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_unsqueeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_vstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjp_where_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjpvmap_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvjpvmap_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap___rmod___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap__chunk_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap__unsafe_masked_index_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_acosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_alias_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_all_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_argsort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_asin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_bmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cholesky_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_clamp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_clamp_min_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_combinations_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_constant_pad_nd_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_cov_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_diagflat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_double_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_erfc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_expand_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_expand_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fft_ifft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_flip_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_fliplr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_half_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_index_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_isnan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_isneginf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_isreal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_jiterator_binary_return_by_ref_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_lerp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_det_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linalg_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_linspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_lu_unpack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_matmul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_max_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_mul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_new_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_new_zeros_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_celu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_conv2d_stride_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_dropout3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_embedding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_gelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_instance_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_pad_circular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_pairwise_distance_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_rrelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_permute_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_pow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_real_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_reciprocal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_rot90_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_scatter_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_scatter_reduce_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_signal_windows_bartlett_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_bessel_y1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_entr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_log_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_special_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_sum_to_size_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_svd_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_transpose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_unsqueeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmap_unsqueeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vjpvmapvmap_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_H_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_SelectGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ZeroGradientsGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___rdiv___cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___rmatmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad___rmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad__segment_reduce_lengths_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_acosh_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_addcdiv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_addr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_alias_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_argmax_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_argsort_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_as_strided_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_as_strided_partial_views_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_asinh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_atanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bernoulli_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_bool_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_byte_functorch_no_channels_last_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cartesian_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ceil_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ceil_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_char_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cholesky_inverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_clamp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_clone_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_combinations_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_constant_pad_nd_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_contiguous_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_corrcoef_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cos_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_cov_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_dist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_dot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_dot_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_empty_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_equal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_erf_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_expand_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_exponential_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_fft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_fftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_hfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ifft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_ifftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_irfftn_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fft_rfft_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_float_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_fmax_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_geometric_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_geometric_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_grid_sampler_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_grid_sampler_2d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_hash_tensor_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_index_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_inner_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_int_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_int_functorch_no_channels_last_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_isreal_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_item_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_jiterator_4inputs_with_extra_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_jiterator_binary_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_kthvalue_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_inv_ex_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_ldl_factor_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_ldl_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_ldl_solve_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_lstsq_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_multi_dot_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_pinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_pinv_hermitian_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_qr_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_solve_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_solve_triangular_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_tensorsolve_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_vander_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_vecdot_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_linalg_vector_norm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_log2_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logdet_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_logical_not_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_long_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_amax_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_argmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_median_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_masked_scatter_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_maximum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_median_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_meshgrid_variadic_tensors_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_min_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nanquantile_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nansum_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_adaptive_max_pool3d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_alpha_dropout_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_avg_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_binary_cross_entropy_with_logits_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_channel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_stride_depthwise_with_bias_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_stride_no_bias_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_strided_padding_dilation_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_cross_entropy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_elu_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_gelu_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_hardswish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_huber_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_area_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_interpolate_bicubic_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_leaky_relu_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_linear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_margin_ranking_loss_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_max_unpool3d_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_mish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pad_circular_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pad_constant_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pairwise_distance_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_silu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_silu_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_softplus_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_nn_functional_tanhshrink_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_norm_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_norm_nuc_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_permute_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_polar_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_positive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_pow_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_quantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_randint_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_randint_like_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_reciprocal_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_remainder_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_reshape_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_resolve_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_resolve_neg_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_resolve_neg_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_rsqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scalar_tensor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_scatter_reduce_amax_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_select_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_bartlett_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_hamming_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signal_windows_nuttall_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_signbit_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_sparse_sampled_addmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_erfcx_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_hermite_polynomial_h_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_hermite_polynomial_h_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_i1_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_log_ndtr_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_modified_bessel_k1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_modified_bessel_k1_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_special_zeta_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_split_with_sizes_copy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_square_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_svd_lowrank_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_t_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_t_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_take_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_transpose_copy_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_transpose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_trapz_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_triangular_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unbind_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unflatten_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_uniform_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unsafe_chunk_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_unsqueeze_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_var_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_vdot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_vsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmap_autograd_grad_vsplit_cpu_float64, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall___rdiv___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_allclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_any_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_argsort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_asin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_atan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_baddbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_broadcast_to_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_cauchy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_clamp_max_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_complex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_conj_physical_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_deg2rad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_double_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_empty_permuted_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_equal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_erfc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_flatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_float_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_fmod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_frac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_NumpyExpMarkDirtyAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_NumpyTakeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule___rmatmul___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule___rpow___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_addmv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_allclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_angle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_as_strided_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_atleast_2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_atleast_3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_bfloat16_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_chalf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_char_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cummax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cummin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_diagonal_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_div_floor_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_equal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_erfc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_fft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_ihfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fft_rfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_flip_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_float_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_fmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_gradient_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_igammac_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_index_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_index_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_isneginf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_jiterator_unary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_inv_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_lu_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_pinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linalg_solve_triangular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_linspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_logical_not_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_mT_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_masked_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_maximum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_min_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_minimum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_mul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_native_batch_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_native_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_new_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv2d_stride_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv2d_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_conv_transpose1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_dropout2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_elu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_embedding_bag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_group_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_prelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_silu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_tanhshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_nn_functional_threshold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_norm_fro_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_normal_number_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_renorm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_scatter_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_signal_windows_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_signal_windows_gaussian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_signal_windows_general_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_slice_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_softmax_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_spherical_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_special_zeta_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_take_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_tan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_tensordot_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_unbind_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_unflatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_has_batch_rule_var_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_index_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_det_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_inv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_solve_triangular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_tensorinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_linalg_vector_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_log1p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_logdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_logical_or_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_logit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_mH_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_mT_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_masked_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_max_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_max_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_min_reduction_with_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_minimum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_mm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_mvlgamma_mvlgamma_p_5_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nanquantile_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_native_dropout_backward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nextafter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_dropout3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_hardshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_instance_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_max_unpool1d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_pad_circular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_pad_reflect_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nn_functional_upsample_nearest_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_normal_number_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_rot90_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_scatter_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_scatter_reduce_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_select_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_sigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_sparse_mm_reduce_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_bessel_j0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_modified_bessel_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_split_list_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_sqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_squeeze_multiple_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_std_mean_unbiased_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_stft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_tan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_unfold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpall_vsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_CubeGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_SelectAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp__chunk_cat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_abs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_acosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_addcdiv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_aminmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_byte_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cdouble_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cfloat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_clamp_max_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_clamp_min_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_column_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cummin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_cumsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_deg2rad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_diagonal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_diff_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_div_trunc_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_erf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_expand_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_expand_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_expm1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_fft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_ihfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fft_ihfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fliplr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_float_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_fmod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_full_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_histc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_hstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_inner_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_isinf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_isnan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_isneginf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_isreal_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_matrix_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_solve_triangular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linalg_tensorinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_linspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_log_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_logit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_logsumexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_masked_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_min_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_mul_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_native_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_adaptive_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_avg_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_ctc_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_embedding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_glu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_instance_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_leaky_relu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_mse_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_mse_loss_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_pad_replicate_negative_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_pixel_shuffle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_nn_functional_triplet_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_pca_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_polygamma_polygamma_n_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_pow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_real_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_resize__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_round_decimals_neg_3_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_rsub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_hermite_polynomial_he_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_special_log_ndtr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_sub_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_tan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_tanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_tensor_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_transpose_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_triu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_trunc_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapjvpvjp_unbind_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_MulGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_NumpyCubeAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_SortGenVmapAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_T_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp___getitem___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp___getitem___functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp___radd___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp___rsub___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_alias_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_angle_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_arange_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_atleast_1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_baddbmm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_bfloat16_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_broadcast_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cholesky_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_cosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_count_nonzero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_diagonal_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_einsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_erfinv_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_eye_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_hfftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fft_ihfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_flatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_float_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_NumpyCubeNotComposableAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule___getitem___functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule___rdiv___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule___rsub___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_arange_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_argmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_atleast_1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_broadcast_shapes_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_column_stack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_contiguous_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cummax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_cumprod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_dstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_einsum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_eq_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_expand_as_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_expm1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_exponential_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_hfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_ihfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fft_irfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_flatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_flipud_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_frexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_gradient_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_half_functorch_no_channels_last_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_heaviside_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_index_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_isclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_kthvalue_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_le_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_ldl_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_qr_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_linalg_tensorsolve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_log_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_logical_or_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_lu_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_masked_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_max_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_mm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_native_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_new_empty_strided_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_conv1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_cross_entropy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_embedding_bag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_fractional_max_pool2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_grid_sample_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_hardtanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_instance_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_interpolate_area_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_pad_constant_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_pdist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_selu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_softmin_with_dtype_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_tanhshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_nn_functional_threshold_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_ones_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_ops_aten_index_put_functorch_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_polygamma_polygamma_n_2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_scatter_reduce_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_scatter_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_scatter_reduce_sum_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_select_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_select_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_sigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_signal_windows_general_cosine_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_slice_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_modified_bessel_i1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_polygamma_special_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_special_zeta_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_split_list_args_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_sqrt_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_squeeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_squeeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_squeeze_multiple_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_svd_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_tan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_to_sparse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_triangular_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_has_batch_rule_view_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_index_reduce_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_jiterator_binary_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_kron_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_cond_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_cross_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_det_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_ldl_factor_ex_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_ldl_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_lu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_matrix_power_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linalg_pinv_singular_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_linspace_tensor_overload_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_log1p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_logaddexp2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_logical_xor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_long_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_lu_unpack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_masked_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_mvlgamma_mvlgamma_p_5_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nanmean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_narrow_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_narrow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_native_layer_norm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_conv2d_stride_padding_with_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_dropout3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_grid_sample_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_hardswish_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_hardtanh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_hinge_embedding_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_interpolate_bilinear_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_margin_ranking_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_normalize_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_rrelu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_softmin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_nn_functional_softshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_pinverse_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_positive_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_reshape_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_resize_as__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_scatter_add_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_scatter_reduce_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_sigmoid_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_signal_windows_kaiser_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_sin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_slice_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_i1e_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_legendre_polynomial_p_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_special_modified_bessel_k0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_svd_lowrank_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_take_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_trace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_unflatten_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_var_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjp_vsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_NumpyMulAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_NumpySortAutogradFunction_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp___radd___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp___rdiv___cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_acosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_allclose_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_amax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_amin_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_argsort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_atan_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_broadcast_tensors_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_byte_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cfloat_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_chunk_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_cosh_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_diag_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_diagonal_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_dist_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_div_floor_rounding_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_div_no_rounding_mode_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_fftn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_fftshift_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_hfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_ihfft_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fft_irfft2_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_index_put_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_lu_factor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_norm_subgradients_at_zero_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_slogdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_solve_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linalg_svdvals_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_linspace_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_log_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_logaddexp_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_logdet_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_logical_xor_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_mH_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_mT_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_fill_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_median_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_prod_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_masked_softmax_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_max_reduction_no_dim_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_msort_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_mvlgamma_mvlgamma_p_5_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nanmedian_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_narrow_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_adaptive_max_pool1d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_alpha_dropout_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_celu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv2d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv2d_stride_no_bias_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_conv3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_ctc_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_elu_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_interpolate_area_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_max_pool3d_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_max_unpool2d_grad_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_mse_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_multi_margin_loss_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_relu6_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_nn_functional_softshrink_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_norm_inf_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_polygamma_polygamma_n_0_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_randint_like_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_renorm_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_resize_as__cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_resolve_conj_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_select_scatter_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_sgn_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_signal_windows_bartlett_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_special_chebyshev_polynomial_v_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_split_with_sizes_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_squeeze_copy_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_std_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_std_mean_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_tensor_split_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_uniform_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_unsqueeze_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_vsplit_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvjp_vstack_cpu_float32, test/functorch/test_ops.py::TestOperatorsCPU::test_vmapvjpvmap_SortGenVmapAutogradFunction_cpu_float32 2025-08-14T23:52:04.3018246Z 2025-08-14T23:52:10.8965856Z Running test_accelerator 1/1 ... [2025-08-14 23:52:10.887105] 2025-08-14T23:52:10.8966698Z SCRIBE_GRAPHQL_ACCESS_TOKEN is NOT set 2025-08-14T23:52:10.8974345Z Executing ['C:\\Jenkins\\Miniconda3\\python.exe', '-bb', 'test_accelerator.py', '-m', 'not serial', '--shard-id=1', '--num-shards=1', '-v', '-vv', '-rfEX', '-p', 'no:xdist', '--use-pytest', '-x', '--reruns=2', '--import-slow-tests', '--import-disabled-tests'] ... [2025-08-14 23:52:10.897155] 2025-08-14T23:52:16.2465201Z 2025-08-14T23:52:16.2466994Z test_accelerator 1/1 was successful, full logs can be found in artifacts with path test/test-reports/test_accelerator_1.1_75733fded7bdf476_.log 2025-08-14T23:52:16.2468054Z 2025-08-14T23:58:07.8914306Z 2025-08-14T23:58:07.8915953Z functorch/test_aotdispatch 5/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_5.7_476bbcfca08b6f53_.log 2025-08-14T23:58:07.9175435Z Running 326 items in this shard: test/functorch/test_aotdispatch.py::TestAOTAutograd::test_buffer_copied_in_graph, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_dupe_arg, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_embedding_bag_view_dynamic, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_grad_context, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_output_view_multiple, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_set__input_mutation, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_simple_with_none_and_nontensor, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_storage_resize_up, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_invalid_requires_grad, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_intermediate_and_returned, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_intermediate_view_meta_replay, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_subclass_metadata_mutation_req_grad_False, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_input_mutation_on_parameter_banned, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_module_joint, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_predispatch_func_view, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_unbacked_arg, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_with_torch_cond, test/functorch/test_aotdispatch.py::TestPartitioning::test_default_partitioner_output_tensor_shape_tensor, test/functorch/test_aotdispatch.py::TestAOTDispatch::test_aot_dispatch_input_metadata_mutation, test/functorch/test_aotdispatch.py::TestAOTDispatch::test_aot_dispatch_output_requires_grad_in_no_grad_views, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_aot_module_simplified_preserves_stack_trace, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_grads_no_force_contiguous_nested_subclass, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_noncontig_nonmemformat_tangents_dynamic_shapes_False_test_subclasses_False_device_cpu, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_rrelu_with_noise_mutation, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_saved_tensors_hooks_base_saved_tensors_hooks_filtering_mode_all, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_subclass_parameters, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_subclass_parameters_torture_case, test/functorch/test_aotdispatch.py::TestPythonKeyCPU::test_make_fx_grad_cpu, test/functorch/test_aotdispatch.py::TestPythonKeyCPU::test_make_fx_jacrev_cpu, test/functorch/test_aotdispatch.py::TestPythonKeyCPU::test_make_fx_vmap_cpu, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive___getitem___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive___rmatmul___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive___rpow___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_abs_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_addmv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_aminmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_arange_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_atan2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_atleast_1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_atleast_3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_bmm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cartesian_prod_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cdist_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cholesky_solve_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_clone_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_combinations_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cond_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cross_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cumprod_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_cumulative_trapezoid_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_diagflat_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_diagonal_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_dist_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_div_no_rounding_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_empty_like_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_empty_permuted_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_erf_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_ifft_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fft_ihfft_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_flatten_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_fliplr_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_float_power_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_full_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_igammac_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_index_add_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_index_reduce_amin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_isclose_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_isin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_isneginf_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_jiterator_2inputs_2outputs_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_det_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_eig_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_inv_ex_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_ldl_factor_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_tensorinv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_vector_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_log_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_mH_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_fill_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_max_reduction_no_dim_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_maximum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_min_binary_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_min_reduction_with_dim_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nanmedian_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nansum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_narrow_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_native_batch_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_avg_pool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_binary_cross_entropy_with_logits_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_celu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_dropout2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_dropout_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_elu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_embedding_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_feature_alpha_dropout_with_train_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_feature_alpha_dropout_without_train_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_fractional_max_pool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_glu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_group_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_huber_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_local_response_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_logsigmoid_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_max_pool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_mse_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_pixel_unshuffle_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_poisson_nll_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_selu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_outer_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_polygamma_polygamma_n_1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_randint_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_round_decimals_neg_3_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_scalar_tensor_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_scatter_reduce_amax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_scatter_reduce_prod_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_searchsorted_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_short_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_signal_windows_bartlett_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_signal_windows_exponential_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_signal_windows_hann_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_softmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_sparse_mm_reduce_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_bessel_j0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_chebyshev_polynomial_t_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_erfcx_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_hermite_polynomial_he_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_i0e_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_i1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_laguerre_polynomial_l_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_modified_bessel_i1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_modified_bessel_k0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_ndtri_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_shifted_chebyshev_polynomial_u_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_std_unbiased_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_sub_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_take_along_dim_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_to_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_trace_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_trapezoid_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_triu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_unsafe_chunk_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_var_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_var_unbiased_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_view_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_where_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive__native_batch_norm_legit_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive__softmax_backward_data_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_acos_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_addmm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_addmm_decomposed_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_aminmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_asin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_baddbmm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_bmm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cdist_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_char_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_clamp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_combinations_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cosh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cumsum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_diagflat_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_dsplit_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_einsum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_empty_permuted_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_equal_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_erfc_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_exp2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_expand_as_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_exponential_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_eye_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_ifftn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_ihfftn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_irfftn_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_flex_attention_backward_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fliplr_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_flipud_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_frexp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_gt_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_hash_tensor_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_index_fill_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_index_reduce_amax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_int_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_isfinite_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_jiterator_unary_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_eigvalsh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_householder_product_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_inv_ex_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_ldl_solve_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_matrix_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_pinv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_pinv_singular_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_qr_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linspace_tensor_overload_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_mT_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_argmin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_logsumexp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_median_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_softmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_std_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_min_binary_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_min_reduction_with_dim_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_movedim_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_new_empty_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_new_zeros_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_adaptive_max_pool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_binary_cross_entropy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_conv1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_cosine_similarity_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_embedding_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_interpolate_bicubic_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_interpolate_nearest-exact_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_logsigmoid_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_max_unpool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_prelu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_rms_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_silu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_norm_nuc_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_ones_like_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_permute_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_polar_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_quantile_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_randn_like_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_real_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_remainder_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_renorm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_repeat_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_repeat_interleave_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_resolve_conj_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_scalar_tensor_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_scatter_reduce_amax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_scatter_reduce_prod_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_select_scatter_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_signal_windows_blackman_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_signal_windows_general_cosine_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_signal_windows_kaiser_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_sparse_mm_reduce_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_bessel_j0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_bessel_y0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_chebyshev_polynomial_u_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_modified_bessel_k1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_ndtri_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_shifted_chebyshev_polynomial_t_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_zeta_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_split_with_sizes_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_stft_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_transpose_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_trapezoid_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_trapz_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_true_divide_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_unique_consecutive_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_unsqueeze_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_vstack_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_CELU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_CTCLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Conv2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Embedding_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_HuberLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LayerNorm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LazyConvTranspose1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LazyConvTranspose3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_MultiMarginLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ReLU6_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ReplicationPad2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_SELU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Softmax2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Softplus_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Tanh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_AdaptiveAvgPool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_AvgPool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_BatchNorm3d_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_BatchNorm3d_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_CTCLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ConstantPad3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ConvTranspose3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_GroupNorm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_L1Loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LSTM_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LogSigmoid_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_MaxPool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_MultiLabelMarginLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_MultiheadAttention_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_RMSNorm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_RNNCell_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Tanh_cpu_float32, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_alias_of_intermediate_detach_backend_inductor_view_replay_for_aliased_outputs_False_dynamic_shapes_False, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_autocast_disable_guard, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_backward_mutation_on_grad_out, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_backward_pass_autocast_custom, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_data_and_metadata_mutation, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_modifies_autograd_meta_of_aliases, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_output_view_multiple, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_set__nop, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_simple_with_none_and_nontensor, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_storage_resize_down_and_set_, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_output_aliase_custom_autograd_function, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_output_view_simple, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_inputs_overlapping_with_mutation_guard_base, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_invalid_requires_grad_fake, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_mark_outputs_dynamic_use_autograd_False, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_new_inp_requires_grad_now, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_no_grad_input_output, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_intermediate_and_returned_different_grad, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_intermediate_multiple_mixed, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_subclass_metadata_mutation_req_grad_False, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_alias_of_intermediate_detach_backend_aot_eager_view_replay_for_aliased_outputs_False_dynamic_shapes_False, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_alias_of_intermediate_detach_backend_inductor_view_replay_for_aliased_outputs_False_dynamic_shapes_True, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_backward_mutation_data, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_backward_mutation_forward_inputs_create_graph, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_backward_mutation_on_grad_out, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_batch_norm_amp, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_buffer_copied_in_graph_with_different_shapes, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_inference_mode, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_metadata_mutation_aliases, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_requires_grad_detach, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_simple, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_storage_resize_down_and_set_, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_mutations_in_bw_detached_from_tangent, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_nonidempotent_amp, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_intermediate_and_returned_flipped, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_real_weights_in_symbolic_mode, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_real_weights_in_symbolic_mode_with_inplace_ops, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_set__and_data_mutation_good, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_some_output_requires_grad_input_doesnt 2025-08-14T23:58:07.9433390Z 2025-08-15T00:01:04.5847406Z 2025-08-15T00:01:04.5848590Z functorch/test_aotdispatch 6/7 was successful, full logs can be found in artifacts with path test/test-reports/functorch.test_aotdispatch_6.7_0c3b1d4bd1349daa_.log 2025-08-15T00:01:04.6025254Z Running 329 items in this shard: test/functorch/test_aotdispatch.py::TestAOTAutograd::test_alias_of_intermediate_detach_backend_inductor_view_replay_for_aliased_outputs_True_dynamic_shapes_False, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_autocast_disable_guard, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_batchnorm, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_compilation_context, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_complex_linear, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_custom_autograd, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_custom_tensor_metadata, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_inplace_requires_grad_true, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_modifies_autograd_meta_of_aliases, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_multiple, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_noncontiguous, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_return, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_set__nop, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_storage_resize_before_set_, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_input_mutation_storage_resize_down_and_set_, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_multi_output_list, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_nested_subclasses_non_homogenous, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_input_view_meta_replay, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_intermediate_multiple, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_aliases_intermediate_returned_multiple_times, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_output_op_depending_on_symint, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_outputs_are_aliased, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_real_weights_in_symbolic_mode_with_inplace_ops, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_single_output, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_squeeze_mutation, test/functorch/test_aotdispatch.py::TestAOTAutograd::test_view_detach, test/functorch/test_aotdispatch.py::TestAOTExport::test_aot_export_simplified_basic, test/functorch/test_aotdispatch.py::TestPartitioning::test_contiguous, test/functorch/test_aotdispatch.py::TestAOTDispatch::test_aot_dispatch_input_mutation, test/functorch/test_aotdispatch.py::TestAOTDispatch::test_aot_dispatch_simple, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_noncontig_nonmemformat_tangents_dynamic_shapes_True_test_subclasses_False_device_cpu, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_noncontig_nonmemformat_tangents_dynamic_shapes_True_test_subclasses_False_device_cuda, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_saved_tensors_hooks_base_saved_tensors_hooks_filtering_mode_no_static, test/functorch/test_aotdispatch.py::TestAOTModuleSimplified::test_tangent_type_coercion, test/functorch/test_aotdispatch.py::TestPythonKeyCPU::test_nnc_scalar_cpu, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive__batch_norm_with_update_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive__segment_reduce_lengths_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive__segment_reduce_offsets_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive__upsample_bilinear2d_aa_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_acosh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_addbmm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_addcdiv_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_addmm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_addmm_decomposed_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_argwhere_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_as_strided_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_as_strided_partial_views_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_as_strided_scatter_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_atanh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_baddbmm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_bernoulli_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_broadcast_shapes_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_chalf_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_conj_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_constant_pad_nd_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_contiguous_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_digamma_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_div_floor_rounding_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_dsplit_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_eq_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_exp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_eye_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_floor_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_ge_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_hash_tensor_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_index_copy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_index_fill_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_index_reduce_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_int_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_invoke_quant_packed_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_isfinite_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_isinf_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_jiterator_unary_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_le_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_lgamma_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_cholesky_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_lstsq_grad_oriented_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_lu_factor_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_matrix_rank_hermitian_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_pinv_hermitian_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_solve_triangular_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_tensorsolve_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linalg_vecdot_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_linspace_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_log_normal_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_logdet_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_logical_not_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_lt_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_lu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_amax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_scatter_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_masked_std_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_max_pool2d_with_indices_backward_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_median_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_meshgrid_list_of_tensors_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_meshgrid_variadic_tensors_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_mm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_native_dropout_backward_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_gaussian_nll_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_grid_sample_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_hardsigmoid_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_hardswish_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_interpolate_trilinear_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_layer_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_max_pool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_pad_circular_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_pad_replicate_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_prelu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_smooth_l1_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_nn_functional_softshrink_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_ones_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_polygamma_polygamma_n_4_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_rad2deg_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_reciprocal_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_remainder_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_renorm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_repeat_interleave_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_resolve_neg_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_round_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_signbit_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_sinh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_airy_ai_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_bessel_j1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_special_bessel_y1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_split_list_args_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_squeeze_multiple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_std_mean_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_svd_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_svd_lowrank_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_take_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_tanh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_tensordot_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_true_divide_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_unique_consecutive_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_unique_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_var_mean_unbiased_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_view_as_complex_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_exhaustive_vstack_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive___getitem___cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive__batch_norm_with_update_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive__chunk_cat_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive__segment_reduce_offsets_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive__unsafe_masked_index_put_accumulate_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_argmin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_as_strided_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_as_strided_scatter_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_atanh_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_atleast_2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_atleast_3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_broadcast_to_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cat_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_clamp_min_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_contiguous_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cov_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_cummax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_diagonal_scatter_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_expand_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_fft_ihfft2_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_flex_attention_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_floor_divide_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_grid_sampler_2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_hstack_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_hypot_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_index_add_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_index_reduce_amin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_index_reduce_prod_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_invoke_subgraph_simple_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_jiterator_binary_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_lerp_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_cond_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_matrix_power_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_matrix_rank_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_solve_ex_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_tensorsolve_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_vander_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_vecdot_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_linalg_vector_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_logical_or_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_logspace_tensor_overload_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_long_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_lu_solve_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_map_triple_nested_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_masked_softmin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_mvlgamma_mvlgamma_p_1_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_mvlgamma_mvlgamma_p_3_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nansum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_native_batch_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_adaptive_avg_pool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_adaptive_max_pool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_conv2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_conv3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_cosine_embedding_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_cross_entropy_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_embedding_bag_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_group_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_layer_norm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_max_pool2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_max_unpool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_multi_head_attention_forward_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_relu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_rrelu_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_softshrink_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_softsign_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_nn_functional_triplet_margin_with_distance_loss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_pca_lowrank_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_positive_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_reciprocal_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_round_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_round_decimals_0_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_round_decimals_3_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_rsub_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_scatter_reduce_amin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_scatter_reduce_sum_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_short_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_signal_windows_bartlett_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_signal_windows_cosine_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_softmax_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_softmax_with_dtype_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_sparse_sampled_addmm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_airy_ai_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_i0e_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_shifted_chebyshev_polynomial_v_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_special_shifted_chebyshev_polynomial_w_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_sqrt_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_square_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_std_unbiased_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_sum_to_size_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_tan_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_tril_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_unsafe_chunk_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_unsafe_split_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionOpInfoCPU::test_aot_autograd_symbolic_exhaustive_zeros_like_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_AdaptiveAvgPool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_AdaptiveMaxPool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_BatchNorm2d_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ConvTranspose2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ELU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_FractionalMaxPool3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_GRU_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_GaussianNLLLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Hardshrink_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Hardswish_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_InstanceNorm1d_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_InstanceNorm1d_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_InstanceNorm2d_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_InstanceNorm3d_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_KLDivLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LazyConv2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_LazyConvTranspose2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_RMSNorm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_ReplicationPad1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_SiLU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_Softmin_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_TransformerDecoderLayer_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_module_exhaustive_nn_TransformerEncoder_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_AvgPool1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_BCELoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_BatchNorm1d_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_CircularPad1d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_GRUCell_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_GaussianNLLLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_InstanceNorm1d_eval_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_InstanceNorm2d_train_mode_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LSTMCell_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LayerNorm_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_LeakyReLU_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_MultiLabelSoftMarginLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_MultiMarginLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_PoissonNLLLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ReflectionPad3d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Sigmoid_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_SoftMarginLoss_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Softmax2d_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Softsign_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_Transformer_cpu_float32, test/functorch/test_aotdispatch.py::TestEagerFusionModuleInfoCPU::test_aot_autograd_symbolic_module_exhaustive_nn_ZeroPad1d_cpu_float32, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_alias_of_intermediate_detach_backend_aot_eager_view_replay_for_aliased_outputs_True_dynamic_shapes_False, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_buffer_copied_in_graph, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_complex_linear, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_custom_tensor_metadata, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_dupe_arg_returned_as_output, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_dupe_arg_torture, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_embedding_bag_view_dynamic, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_inference_mode, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_aliases_other_input, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_and_output_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_requires_grad_detach, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_return, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_storage_resize_before_set_, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_mutation_storage_resize_up, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_input_output_view_mutate_multiple, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_invalid_dupe_fake, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_invalid_requires_grad, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_mark_activations_dynamic, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_input_view_meta_replay, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_intermediate_and_returned, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_intermediate_mutation_linear, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_output_aliases_multiple_inputs_get_correct_one, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_set__and_data_mutation_bad, test/functorch/test_aotdispatch.py::TestAOTAutogradWithDynamo::test_some_outputs_dont_require_grad_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_autocast_disable_guard, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_backward_mutation_forward_inputs, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_backward_pass_autocast_on, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_buffer_batch_norm, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_compilation_context, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_duplicated_arguments_on_tensor_overlap, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_dynamic_output_aliases_input_view_meta_replay, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_dynamic_shape_output_not_in_bw_graph, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_embedding_bag_view_dynamic, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_inner_grad, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_aliased_with_mutation_output_alias, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_aliases_and_output_alias, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_batchnorm, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_is_output, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_metadata2, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_multiple, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_input_mutation_simple_with_none_and_nontensor, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_invalid_requires_grad_fake, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_mark_activations_dynamic_with_nested, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_module, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_multi_output, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_nested_subclasses_complicated_inps_mixed, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_new_inp_requires_grad_now, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_no_grad_input_output, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_intermediate_inplace_view, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_aliases_intermediate_multiple_mixed, test/functorch/test_aotdispatch.py::TestAOTAutogradWithCache::test_output_all_alias_types 2025-08-15T00:01:04.6195597Z 2025-08-15T00:01:05.6555410Z Running test batch 'tests to run' cost 7912.27 seconds 2025-08-15T00:01:05.6581032Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:01:05.6581596Z Uploading artifacts took 0.00 seconds 2025-08-15T00:01:05.6582104Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:01:05.6582801Z Uploading artifacts took 0.00 seconds 2025-08-15T00:01:05.6583293Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:01:05.6584297Z Uploading artifacts took 0.00 seconds 2025-08-15T00:01:05.6584749Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:01:05.6585279Z Uploading artifacts took 0.00 seconds 2025-08-15T00:01:05.6585743Z GITHUB_RUN_ID, GITHUB_RUN_ATTEMPT, or ARTIFACTS_FILE_SUFFIX not set, not uploading 2025-08-15T00:01:05.6586265Z Uploading artifacts took 0.00 seconds 2025-08-15T00:01:06.5464371Z 2025-08-15T00:01:06.5465333Z (base) C:\actions-runner\_work\pytorch\pytorch\test>if ERRORLEVEL 1 goto fail 2025-08-15T00:01:06.5465851Z 2025-08-15T00:01:06.5466280Z (base) C:\actions-runner\_work\pytorch\pytorch\test>popd 2025-08-15T00:01:06.5474264Z 2025-08-15T00:01:06.5474544Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-08-15T00:01:06.5505903Z + [[ 3 == 1 ]] 2025-08-15T00:01:06.5506265Z + [[ 3 == 2 ]] 2025-08-15T00:01:06.5507469Z + assert_git_not_dirty 2025-08-15T00:01:06.5507772Z + [[ win-vs2022-cpu-py3 != *rocm* ]] 2025-08-15T00:01:06.5508128Z + [[ win-vs2022-cpu-py3 != *xla* ]] 2025-08-15T00:01:06.5659014Z ++ git status --porcelain 2025-08-15T00:01:06.5718735Z ++ grep -v '?? third_party' 2025-08-15T00:01:10.5504782Z ++ true 2025-08-15T00:01:10.5510555Z + git_status= 2025-08-15T00:01:10.5510887Z + [[ -n '' ]] 2025-08-15T00:01:10.5511123Z + echo 'TEST PASSED' 2025-08-15T00:01:10.5511409Z TEST PASSED 2025-08-15T00:01:10.5666405Z ##[group]Run cat test/**/*_toprint.log || true 2025-08-15T00:01:10.5666899Z cat test/**/*_toprint.log || true 2025-08-15T00:01:10.5687079Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-15T00:01:10.5687583Z env: 2025-08-15T00:01:10.5687812Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:01:10.5688261Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:01:10.5688824Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:01:10.5689361Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:01:10.5689840Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:01:10.5690154Z ##[endgroup] 2025-08-15T00:01:10.6768993Z cat: 'test/**/*_toprint.log': No such file or directory 2025-08-15T00:01:10.6899773Z ##[group]Run kill "$MONITOR_SCRIPT_PID" 2025-08-15T00:01:10.6900213Z kill "$MONITOR_SCRIPT_PID" 2025-08-15T00:01:10.6920358Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-15T00:01:10.6920867Z env: 2025-08-15T00:01:10.6921108Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:01:10.6921552Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:01:10.6922122Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:01:10.6922677Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:01:10.6923251Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:01:10.6923627Z MONITOR_SCRIPT_PID: 1349 2025-08-15T00:01:10.6924012Z ##[endgroup] 2025-08-15T00:01:10.7350533Z Prepare all required actions 2025-08-15T00:01:10.7351191Z Getting action download info 2025-08-15T00:01:10.8604542Z Download action repository 'seemethere/upload-artifact-s3@v5' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-08-15T00:01:11.0800219Z Download action repository 'actions/upload-artifact@v4' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) 2025-08-15T00:01:11.5585294Z ##[group]Run ./.github/actions/upload-test-artifacts 2025-08-15T00:01:11.5586311Z with: 2025-08-15T00:01:11.5586681Z file-suffix: test-default-3-3-lf.windows.4xlarge.nonephemeral_48128743920 2025-08-15T00:01:11.5587144Z s3-bucket: gha-artifacts 2025-08-15T00:01:11.5587384Z env: 2025-08-15T00:01:11.5587572Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:01:11.5587954Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:01:11.5588498Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:01:11.5589039Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:01:11.5589563Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:01:11.5589878Z ##[endgroup] 2025-08-15T00:01:11.5759849Z ##[group]Run # -ir => recursive include all files in pattern 2025-08-15T00:01:11.5760313Z # -ir => recursive include all files in pattern 2025-08-15T00:01:11.5760792Z 7z a "test-jsons-$Env:FILE_SUFFIX.zip" -ir'!test\test-reports\*.json' 2025-08-15T00:01:11.5785895Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-15T00:01:11.5786403Z env: 2025-08-15T00:01:11.5786617Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:01:11.5787027Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:01:11.5790374Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:01:11.5790898Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:01:11.5791358Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:01:11.5791843Z FILE_SUFFIX: test-default-3-3-lf.windows.4xlarge.nonephemeral_48128743920 2025-08-15T00:01:11.5792305Z ##[endgroup] 2025-08-15T00:01:12.0466157Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-15T00:01:12.0541648Z Finished 2025-08-15T00:01:12.1403714Z 2025-08-15T00:01:12.1404453Z 7-Zip 24.09 (x64) : Copyright (c) 1999-2024 Igor Pavlov : 2024-11-29 2025-08-15T00:01:12.1404787Z 2025-08-15T00:01:12.1404879Z Scanning the drive: 2025-08-15T00:01:12.1405121Z 1 file, 20688 bytes (21 KiB) 2025-08-15T00:01:12.1405297Z 2025-08-15T00:01:12.1405669Z Creating archive: test-jsons-test-default-3-3-lf.windows.4xlarge.nonephemeral_48128743920.zip 2025-08-15T00:01:12.1406144Z 2025-08-15T00:01:12.1406286Z Add new data to archive: 1 file, 20688 bytes (21 KiB) 2025-08-15T00:01:12.1406554Z 2025-08-15T00:01:12.1406559Z 2025-08-15T00:01:12.1406650Z Files read from disk: 1 2025-08-15T00:01:12.1406928Z Archive size: 3832 bytes (4 KiB) 2025-08-15T00:01:12.1407215Z Everything is Ok 2025-08-15T00:01:12.1702100Z ##[group]Run # -ir => recursive include all files in pattern 2025-08-15T00:01:12.1702697Z # -ir => recursive include all files in pattern 2025-08-15T00:01:12.1703377Z 7z a "test-reports-$Env:FILE_SUFFIX.zip" -ir'!test\test-reports\*.xml' -ir'!test\test-reports\*.csv' 2025-08-15T00:01:12.1720133Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-15T00:01:12.1720635Z env: 2025-08-15T00:01:12.1720834Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:01:12.1721375Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:01:12.1722009Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:01:12.1722523Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:01:12.1722954Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:01:12.1724936Z FILE_SUFFIX: test-default-3-3-lf.windows.4xlarge.nonephemeral_48128743920 2025-08-15T00:01:12.1725430Z ##[endgroup] 2025-08-15T00:01:12.6000718Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-15T00:01:12.6076446Z Finished 2025-08-15T00:01:12.8105730Z 2025-08-15T00:01:12.8106551Z 7-Zip 24.09 (x64) : Copyright (c) 1999-2024 Igor Pavlov : 2024-11-29 2025-08-15T00:01:12.8106893Z 2025-08-15T00:01:12.8106985Z Scanning the drive: 2025-08-15T00:01:12.8107231Z 212 files, 13344416 bytes (13 MiB) 2025-08-15T00:01:12.8107421Z 2025-08-15T00:01:12.8107782Z Creating archive: test-reports-test-default-3-3-lf.windows.4xlarge.nonephemeral_48128743920.zip 2025-08-15T00:01:12.8108282Z 2025-08-15T00:01:12.8108434Z Add new data to archive: 212 files, 13344416 bytes (13 MiB) 2025-08-15T00:01:12.8108701Z 2025-08-15T00:01:12.8108705Z 2025-08-15T00:01:12.8108817Z Files read from disk: 212 2025-08-15T00:01:12.8109071Z Archive size: 743478 bytes (727 KiB) 2025-08-15T00:01:12.8109542Z Everything is Ok 2025-08-15T00:01:12.8429550Z ##[group]Run # -ir => recursive include all files in pattern 2025-08-15T00:01:12.8437430Z # -ir => recursive include all files in pattern 2025-08-15T00:01:12.8437926Z 7z a "logs-$Env:FILE_SUFFIX.zip" 'usage_log.txt' -ir'!test\test-reports\*.log' 2025-08-15T00:01:12.8460849Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-15T00:01:12.8461314Z env: 2025-08-15T00:01:12.8461526Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:01:12.8461922Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:01:12.8464227Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:01:12.8464738Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:01:12.8465153Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:01:12.8465623Z FILE_SUFFIX: test-default-3-3-lf.windows.4xlarge.nonephemeral_48128743920 2025-08-15T00:01:12.8466078Z ##[endgroup] 2025-08-15T00:01:13.2660284Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-15T00:01:13.2714441Z Finished 2025-08-15T00:01:13.5845341Z 2025-08-15T00:01:13.5845850Z 7-Zip 24.09 (x64) : Copyright (c) 1999-2024 Igor Pavlov : 2024-11-29 2025-08-15T00:01:13.5846184Z 2025-08-15T00:01:13.5846287Z Scanning the drive: 2025-08-15T00:01:13.5846517Z 353 files, 15761531 bytes (16 MiB) 2025-08-15T00:01:13.5846796Z 2025-08-15T00:01:13.5847120Z Creating archive: logs-test-default-3-3-lf.windows.4xlarge.nonephemeral_48128743920.zip 2025-08-15T00:01:13.5847546Z 2025-08-15T00:01:13.5847787Z Add new data to archive: 353 files, 15761531 bytes (16 MiB) 2025-08-15T00:01:13.5848056Z 2025-08-15T00:01:13.5848060Z 2025-08-15T00:01:13.5848152Z Files read from disk: 353 2025-08-15T00:01:13.5848406Z Archive size: 1215779 bytes (1188 KiB) 2025-08-15T00:01:13.5849697Z Everything is Ok 2025-08-15T00:01:13.6241872Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-08-15T00:01:13.6242215Z with: 2025-08-15T00:01:13.6242416Z s3-bucket: gha-artifacts 2025-08-15T00:01:13.6242719Z s3-prefix: pytorch/pytorch/16976255045/1/artifact 2025-08-15T00:01:13.6243047Z retention-days: 14 2025-08-15T00:01:13.6243282Z if-no-files-found: warn 2025-08-15T00:01:13.6243537Z path: test-jsons-*.zip 2025-08-15T00:01:13.6243757Z name: artifact 2025-08-15T00:01:13.6243968Z region: us-east-1 2025-08-15T00:01:13.6244161Z env: 2025-08-15T00:01:13.6244349Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:01:13.6244731Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:01:13.6246997Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:01:13.6247489Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:01:13.6247905Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:01:13.6248208Z ##[endgroup] 2025-08-15T00:01:14.0260257Z NOTE: s3-prefix specified, ignoring name parameter 2025-08-15T00:01:14.0260791Z With the provided path, there will be 1 file uploaded 2025-08-15T00:01:14.0261318Z Uploading to s3 prefix: pytorch/pytorch/16976255045/1/artifact 2025-08-15T00:01:14.0273109Z Starting upload of test-jsons-test-default-3-3-lf.windows.4xlarge.nonephemeral_48128743920.zip 2025-08-15T00:01:14.1840572Z Finished upload of test-jsons-test-default-3-3-lf.windows.4xlarge.nonephemeral_48128743920.zip 2025-08-15T00:01:14.2136881Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-08-15T00:01:14.2137223Z with: 2025-08-15T00:01:14.2137437Z s3-bucket: gha-artifacts 2025-08-15T00:01:14.2137735Z s3-prefix: pytorch/pytorch/16976255045/1/artifact 2025-08-15T00:01:14.2138067Z retention-days: 14 2025-08-15T00:01:14.2138298Z if-no-files-found: error 2025-08-15T00:01:14.2138562Z path: test-reports-*.zip 2025-08-15T00:01:14.2138793Z name: artifact 2025-08-15T00:01:14.2138999Z region: us-east-1 2025-08-15T00:01:14.2139198Z env: 2025-08-15T00:01:14.2139494Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:01:14.2139877Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:01:14.2140436Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:01:14.2140935Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:01:14.2141350Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:01:14.2141655Z ##[endgroup] 2025-08-15T00:01:14.6144791Z NOTE: s3-prefix specified, ignoring name parameter 2025-08-15T00:01:14.6145244Z With the provided path, there will be 1 file uploaded 2025-08-15T00:01:14.6145669Z Uploading to s3 prefix: pytorch/pytorch/16976255045/1/artifact 2025-08-15T00:01:14.6158789Z Starting upload of test-reports-test-default-3-3-lf.windows.4xlarge.nonephemeral_48128743920.zip 2025-08-15T00:01:14.8561964Z Finished upload of test-reports-test-default-3-3-lf.windows.4xlarge.nonephemeral_48128743920.zip 2025-08-15T00:01:14.8827885Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-08-15T00:01:14.8828203Z with: 2025-08-15T00:01:14.8828405Z s3-bucket: gha-artifacts 2025-08-15T00:01:14.8828728Z s3-prefix: pytorch/pytorch/16976255045/1/artifact 2025-08-15T00:01:14.8830786Z retention-days: 14 2025-08-15T00:01:14.8831014Z if-no-files-found: ignore 2025-08-15T00:01:14.8831263Z path: logs-*.zip 2025-08-15T00:01:14.8831475Z name: artifact 2025-08-15T00:01:14.8831670Z region: us-east-1 2025-08-15T00:01:14.8831869Z env: 2025-08-15T00:01:14.8832056Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:01:14.8832447Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:01:14.8832991Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:01:14.8833487Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:01:14.8833889Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:01:14.8834190Z ##[endgroup] 2025-08-15T00:01:15.2850816Z NOTE: s3-prefix specified, ignoring name parameter 2025-08-15T00:01:15.2851305Z With the provided path, there will be 1 file uploaded 2025-08-15T00:01:15.2851741Z Uploading to s3 prefix: pytorch/pytorch/16976255045/1/artifact 2025-08-15T00:01:15.2865700Z Starting upload of logs-test-default-3-3-lf.windows.4xlarge.nonephemeral_48128743920.zip 2025-08-15T00:01:15.5716557Z Finished upload of logs-test-default-3-3-lf.windows.4xlarge.nonephemeral_48128743920.zip 2025-08-15T00:01:15.5984177Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-08-15T00:01:15.5984504Z with: 2025-08-15T00:01:15.5984700Z s3-bucket: gha-artifacts 2025-08-15T00:01:15.5985001Z s3-prefix: pytorch/pytorch/16976255045/1/artifact 2025-08-15T00:01:15.5985319Z retention-days: 14 2025-08-15T00:01:15.5985552Z if-no-files-found: ignore 2025-08-15T00:01:15.5985799Z path: debug-*.zip 2025-08-15T00:01:15.5986003Z name: artifact 2025-08-15T00:01:15.5986201Z region: us-east-1 2025-08-15T00:01:15.5986389Z env: 2025-08-15T00:01:15.5986741Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:01:15.5987245Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:01:15.5987979Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:01:15.5988467Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:01:15.5988974Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:01:15.5989279Z ##[endgroup] 2025-08-15T00:01:16.0342274Z No files were found with the provided path: debug-*.zip. No artifacts will be uploaded. 2025-08-15T00:01:16.0650529Z Prepare all required actions 2025-08-15T00:01:16.0650990Z Getting action download info 2025-08-15T00:01:16.1671202Z ##[group]Run ./.github/actions/upload-utilization-stats 2025-08-15T00:01:16.1671557Z with: 2025-08-15T00:01:16.1671755Z job_id: 48128743920 2025-08-15T00:01:16.1672160Z job_name: win-vs2022-cpu-py3 / test (default, 3, 3, lf.windows.4xlarge.nonephemeral) 2025-08-15T00:01:16.1672638Z workflow_name: trunk 2025-08-15T00:01:16.1672953Z workflow_run_id: 16976255045 2025-08-15T00:01:16.1673212Z workflow_attempt: 1 2025-08-15T00:01:16.1673428Z env: 2025-08-15T00:01:16.1673623Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:01:16.1674001Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:01:16.1674569Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:01:16.1675060Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:01:16.1675510Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:01:16.1675802Z ##[endgroup] 2025-08-15T00:01:16.1767537Z ##[group]Run echo "workflow_id: 16976255045" 2025-08-15T00:01:16.1767883Z echo "workflow_id: 16976255045" 2025-08-15T00:01:16.1768190Z echo "workflow_attempt: 1" 2025-08-15T00:01:16.1768470Z echo "workflow_Name: trunk" 2025-08-15T00:01:16.1768749Z echo "job_id: 48128743920" 2025-08-15T00:01:16.1769251Z echo "job_name: win-vs2022-cpu-py3 / test (default, 3, 3, lf.windows.4xlarge.nonephemeral)" 2025-08-15T00:01:16.1769786Z echo "artifact_prefix: " 2025-08-15T00:01:16.1770071Z python3 --version 2025-08-15T00:01:16.1789407Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-15T00:01:16.1789851Z env: 2025-08-15T00:01:16.1790045Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:01:16.1790440Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:01:16.1790988Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:01:16.1793428Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:01:16.1793848Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:01:16.1794156Z ##[endgroup] 2025-08-15T00:01:16.2023893Z workflow_id: 16976255045 2025-08-15T00:01:16.2024187Z workflow_attempt: 1 2025-08-15T00:01:16.2024411Z workflow_Name: trunk 2025-08-15T00:01:16.2024635Z job_id: 48128743920 2025-08-15T00:01:16.2025039Z job_name: win-vs2022-cpu-py3 / test (default, 3, 3, lf.windows.4xlarge.nonephemeral) 2025-08-15T00:01:16.2025502Z artifact_prefix: 2025-08-15T00:01:16.2157561Z Python 3.9.19 2025-08-15T00:01:16.2284811Z ##[group]Run nick-fields/retry@v3.0.0 2025-08-15T00:01:16.2285101Z with: 2025-08-15T00:01:16.2285277Z shell: bash 2025-08-15T00:01:16.2285484Z timeout_minutes: 5 2025-08-15T00:01:16.2285694Z max_attempts: 5 2025-08-15T00:01:16.2285910Z retry_wait_seconds: 30 2025-08-15T00:01:16.2286450Z command: set -eu python3 -m pip install python-dateutil==2.8.2 boto3==1.35.42 pandas==2.1.3 dataclasses_json==0.6.7 2025-08-15T00:01:16.2287024Z polling_interval_seconds: 1 2025-08-15T00:01:16.2287281Z warning_on_retry: true 2025-08-15T00:01:16.2287509Z continue_on_error: false 2025-08-15T00:01:16.2287739Z env: 2025-08-15T00:01:16.2287922Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:01:16.2288303Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:01:16.2288845Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:01:16.2289441Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:01:16.2289870Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:01:16.2290167Z ##[endgroup] 2025-08-15T00:01:17.1541532Z Collecting python-dateutil==2.8.2 2025-08-15T00:01:17.3523647Z Downloading python_dateutil-2.8.2-py2.py3-none-any.whl.metadata (8.2 kB) 2025-08-15T00:01:18.1582350Z Collecting boto3==1.35.42 2025-08-15T00:01:18.1629512Z Downloading boto3-1.35.42-py3-none-any.whl.metadata (6.7 kB) 2025-08-15T00:01:18.3662450Z Collecting pandas==2.1.3 2025-08-15T00:01:18.3732397Z Downloading pandas-2.1.3-cp39-cp39-win_amd64.whl.metadata (18 kB) 2025-08-15T00:01:18.3806739Z Requirement already satisfied: dataclasses_json==0.6.7 in c:\jenkins\miniconda3\lib\site-packages (0.6.7) 2025-08-15T00:01:18.3830610Z Requirement already satisfied: six>=1.5 in c:\jenkins\miniconda3\lib\site-packages (from python-dateutil==2.8.2) (1.17.0) 2025-08-15T00:01:19.1954420Z Collecting botocore<1.36.0,>=1.35.42 (from boto3==1.35.42) 2025-08-15T00:01:19.2004982Z Downloading botocore-1.35.99-py3-none-any.whl.metadata (5.7 kB) 2025-08-15T00:01:19.2073803Z Requirement already satisfied: jmespath<2.0.0,>=0.7.1 in c:\jenkins\miniconda3\lib\site-packages (from boto3==1.35.42) (1.0.1) 2025-08-15T00:01:19.2352509Z Collecting s3transfer<0.11.0,>=0.10.0 (from boto3==1.35.42) 2025-08-15T00:01:19.2398067Z Downloading s3transfer-0.10.4-py3-none-any.whl.metadata (1.7 kB) 2025-08-15T00:01:19.6392350Z Collecting numpy<2,>=1.22.4 (from pandas==2.1.3) 2025-08-15T00:01:19.6458699Z Downloading numpy-1.26.4-cp39-cp39-win_amd64.whl.metadata (61 kB) 2025-08-15T00:01:19.6945187Z ---------------------------------------- 61.0/61.0 kB 1.1 MB/s eta 0:00:00 2025-08-15T00:01:19.7628052Z Collecting pytz>=2020.1 (from pandas==2.1.3) 2025-08-15T00:01:19.7677990Z Downloading pytz-2025.2-py2.py3-none-any.whl.metadata (22 kB) 2025-08-15T00:01:19.7983123Z Collecting tzdata>=2022.1 (from pandas==2.1.3) 2025-08-15T00:01:19.8040132Z Downloading tzdata-2025.2-py2.py3-none-any.whl.metadata (1.4 kB) 2025-08-15T00:01:19.8152475Z Requirement already satisfied: marshmallow<4.0.0,>=3.18.0 in c:\jenkins\miniconda3\lib\site-packages (from dataclasses_json==0.6.7) (3.26.1) 2025-08-15T00:01:19.8161401Z Requirement already satisfied: typing-inspect<1,>=0.4.0 in c:\jenkins\miniconda3\lib\site-packages (from dataclasses_json==0.6.7) (0.9.0) 2025-08-15T00:01:19.8265678Z Requirement already satisfied: urllib3<1.27,>=1.25.4 in c:\jenkins\miniconda3\lib\site-packages (from botocore<1.36.0,>=1.35.42->boto3==1.35.42) (1.26.19) 2025-08-15T00:01:19.8408327Z Requirement already satisfied: packaging>=17.0 in c:\jenkins\miniconda3\lib\site-packages (from marshmallow<4.0.0,>=3.18.0->dataclasses_json==0.6.7) (23.2) 2025-08-15T00:01:20.0524103Z Requirement already satisfied: mypy-extensions>=0.3.0 in c:\jenkins\miniconda3\lib\site-packages (from typing-inspect<1,>=0.4.0->dataclasses_json==0.6.7) (1.1.0) 2025-08-15T00:01:20.0530810Z Requirement already satisfied: typing-extensions>=3.7.4 in c:\jenkins\miniconda3\lib\site-packages (from typing-inspect<1,>=0.4.0->dataclasses_json==0.6.7) (4.12.2) 2025-08-15T00:01:20.0916068Z Downloading python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB) 2025-08-15T00:01:20.1154375Z --------------------------------------- 247.7/247.7 kB 15.8 MB/s eta 0:00:00 2025-08-15T00:01:20.1198494Z Downloading boto3-1.35.42-py3-none-any.whl (139 kB) 2025-08-15T00:01:20.1293862Z ---------------------------------------- 139.2/139.2 kB ? eta 0:00:00 2025-08-15T00:01:20.1358098Z Downloading pandas-2.1.3-cp39-cp39-win_amd64.whl (10.8 MB) 2025-08-15T00:01:20.2162985Z ---------------------------------------- 10.8/10.8 MB 131.1 MB/s eta 0:00:00 2025-08-15T00:01:20.2214301Z Downloading botocore-1.35.99-py3-none-any.whl (13.3 MB) 2025-08-15T00:01:20.3195511Z ---------------------------------------- 13.3/13.3 MB 129.4 MB/s eta 0:00:00 2025-08-15T00:01:20.3269064Z Downloading numpy-1.26.4-cp39-cp39-win_amd64.whl (15.8 MB) 2025-08-15T00:01:20.4627659Z ---------------------------------------- 15.8/15.8 MB 93.8 MB/s eta 0:00:00 2025-08-15T00:01:20.4676110Z Downloading pytz-2025.2-py2.py3-none-any.whl (509 kB) 2025-08-15T00:01:20.4795968Z ---------------------------------------- 509.2/509.2 kB ? eta 0:00:00 2025-08-15T00:01:20.4843005Z Downloading s3transfer-0.10.4-py3-none-any.whl (83 kB) 2025-08-15T00:01:20.4930457Z ---------------------------------------- 83.2/83.2 kB ? eta 0:00:00 2025-08-15T00:01:20.4977255Z Downloading tzdata-2025.2-py2.py3-none-any.whl (347 kB) 2025-08-15T00:01:20.5080091Z ---------------------------------------- 347.8/347.8 kB ? eta 0:00:00 2025-08-15T00:01:21.8517982Z Installing collected packages: pytz, tzdata, python-dateutil, numpy, pandas, botocore, s3transfer, boto3 2025-08-15T00:01:22.5589800Z Attempting uninstall: python-dateutil 2025-08-15T00:01:22.5603587Z Found existing installation: python-dateutil 2.9.0.post0 2025-08-15T00:01:22.5691533Z Uninstalling python-dateutil-2.9.0.post0: 2025-08-15T00:01:22.5718256Z Successfully uninstalled python-dateutil-2.9.0.post0 2025-08-15T00:01:22.6556713Z Attempting uninstall: numpy 2025-08-15T00:01:22.6566977Z Found existing installation: numpy 1.22.3 2025-08-15T00:01:22.8185356Z Uninstalling numpy-1.22.3: 2025-08-15T00:01:22.8441363Z Successfully uninstalled numpy-1.22.3 2025-08-15T00:01:25.5986500Z WARNING: The script f2py.exe is installed in 'C:\Jenkins\Miniconda3\Scripts' which is not on PATH. 2025-08-15T00:01:25.5987525Z Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 2025-08-15T00:01:32.0667988Z Attempting uninstall: botocore 2025-08-15T00:01:32.0676524Z Found existing installation: botocore 1.37.10 2025-08-15T00:01:32.2813690Z Uninstalling botocore-1.37.10: 2025-08-15T00:01:32.3677552Z Successfully uninstalled botocore-1.37.10 2025-08-15T00:01:35.1229242Z Attempting uninstall: s3transfer 2025-08-15T00:01:35.1243393Z Found existing installation: s3transfer 0.11.2 2025-08-15T00:01:35.1330119Z Uninstalling s3transfer-0.11.2: 2025-08-15T00:01:35.1353086Z Successfully uninstalled s3transfer-0.11.2 2025-08-15T00:01:35.2103677Z Attempting uninstall: boto3 2025-08-15T00:01:35.2112509Z Found existing installation: boto3 1.37.10 2025-08-15T00:01:35.2302573Z Uninstalling boto3-1.37.10: 2025-08-15T00:01:35.2359228Z Successfully uninstalled boto3-1.37.10 2025-08-15T00:01:35.4218282Z ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. 2025-08-15T00:01:35.4219287Z scipy 1.6.3 requires numpy<1.23.0,>=1.16.5, but you have numpy 1.26.4 which is incompatible. 2025-08-15T00:01:35.4220139Z Successfully installed boto3-1.35.42 botocore-1.35.99 numpy-1.26.4 pandas-2.1.3 python-dateutil-2.8.2 pytz-2025.2 s3transfer-0.10.4 tzdata-2025.2 2025-08-15T00:01:36.4729318Z Command completed after 1 attempt(s). 2025-08-15T00:01:36.4893378Z ##[group]Run python3 -m tools.stats.upload_utilization_stats.upload_utilization_stats \ 2025-08-15T00:01:36.4894159Z python3 -m tools.stats.upload_utilization_stats.upload_utilization_stats \ 2025-08-15T00:01:36.4894750Z  --workflow-run-id "16976255045" \ 2025-08-15T00:01:36.4895154Z  --workflow-name "trunk" \ 2025-08-15T00:01:36.4895485Z  --workflow-run-attempt "1" \ 2025-08-15T00:01:36.4895778Z  --job-id "48128743920" \ 2025-08-15T00:01:36.4896359Z  --job-name "win-vs2022-cpu-py3 / test (default, 3, 3, lf.windows.4xlarge.nonephemeral)" \ 2025-08-15T00:01:36.4896961Z  --local-path "" \ 2025-08-15T00:01:36.4897226Z  --artifact-prefix "" 2025-08-15T00:01:36.4917923Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-15T00:01:36.4918402Z env: 2025-08-15T00:01:36.4918705Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:01:36.4919104Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:01:36.4919777Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:01:36.4920271Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:01:36.4920777Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:01:36.4921299Z ##[endgroup] 2025-08-15T00:01:39.8689606Z repo: pytorch/pytorch 2025-08-15T00:01:39.8689976Z Search for test log in s3 bucket: ossci-utilization 2025-08-15T00:01:39.8690525Z Downloading logs-test-default-3-3-lf.windows.4xlarge.nonephemeral_48128743920.zip 2025-08-15T00:01:39.8691511Z extracting usage_log.txt from zip file logs-test-default-3-3-lf.windows.4xlarge.nonephemeral_48128743920.zip 2025-08-15T00:01:39.8692475Z Failed to parse JSON line: Expecting value: line 1 column 1 (char 0) 2025-08-15T00:01:39.8693243Z Converted Log Model: UtilizationMetadata: 2025-08-15T00:01:39.8694684Z UtilizationMetadata(level='metadata', workflow_id='16976255045', job_id='48128743920', workflow_name='trunk', job_name='win-vs2022-cpu-py3 / test (default, 3, 3, lf.windows.4xlarge.nonephemeral)', usage_collect_interval=1.0, data_model_version=1.5, start_at=1755208063, gpu_count=0, cpu_count=16, gpu_type=None, error=None) 2025-08-15T00:01:39.8696127Z [Db Segments] detected pytest cmd: 2, generated segments: 2 2025-08-15T00:01:39.8696512Z [db model] Peek db timeseries 2025-08-15T00:01:39.8696764Z :{ 2025-08-15T00:01:39.8696943Z "created_at": 1755216099, 2025-08-15T00:01:39.8697204Z "type": "utilization", 2025-08-15T00:01:39.8697428Z "tags": [ 2025-08-15T00:01:39.8697615Z "record" 2025-08-15T00:01:39.8697797Z ], 2025-08-15T00:01:39.8697983Z "time_stamp": 1755208063, 2025-08-15T00:01:39.8698245Z "repo": "pytorch/pytorch", 2025-08-15T00:01:39.8698494Z "workflow_id": 16976255045, 2025-08-15T00:01:39.8698738Z "run_attempt": 1, 2025-08-15T00:01:39.8698952Z "job_id": 48128743920, 2025-08-15T00:01:39.8699194Z "workflow_name": "trunk", 2025-08-15T00:01:39.8699626Z "job_name": "win-vs2022-cpu-py3 / test (default, 3, 3, lf.windows.4xlarge.nonephemeral)", 2025-08-15T00:01:39.8700314Z "json_data": "{\"cpu\": {\"avg\": 0.0, \"max\": 0.0, \"raw\": [0.0]}, \"memory\": {\"avg\": 12.5, \"max\": 12.5, \"raw\": [12.5]}, \"gpu_usage\": null}" 2025-08-15T00:01:39.8700794Z } 2025-08-15T00:01:39.8701272Z Writing 1 documents to S3 ossci-utilization/util_metadata/v_1.5/pytorch/pytorch/16976255045/1/48128743920/metadata 2025-08-15T00:01:39.8702208Z Done! Finish writing document to S3 ossci-utilization/util_metadata/v_1.5/pytorch/pytorch/16976255045/1/48128743920/metadata 2025-08-15T00:01:39.8705132Z Writing 1591 documents to S3 ossci-utilization/util_timeseries/v_1.5/pytorch/pytorch/16976255045/1/48128743920/time_series 2025-08-15T00:01:39.8706211Z Done! Finish writing document to S3 ossci-utilization/util_timeseries/v_1.5/pytorch/pytorch/16976255045/1/48128743920/time_series 2025-08-15T00:01:40.0422187Z ##[group]Run python3 .github/scripts/parse_ref.py 2025-08-15T00:01:40.0422612Z python3 .github/scripts/parse_ref.py 2025-08-15T00:01:40.0442586Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-15T00:01:40.0443036Z env: 2025-08-15T00:01:40.0443240Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:01:40.0443719Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:01:40.0444284Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:01:40.0444795Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:01:40.0445212Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:01:40.0445648Z ##[endgroup] 2025-08-15T00:01:40.1110914Z Setting output branch=main 2025-08-15T00:01:40.1268310Z ##[group]Run # This step removes PyTorch installed by the test to give a clean slate 2025-08-15T00:01:40.1268961Z # This step removes PyTorch installed by the test to give a clean slate 2025-08-15T00:01:40.1269512Z # to the next job 2025-08-15T00:01:40.1269799Z python3 -mpip uninstall -y torch 2025-08-15T00:01:40.1289272Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-08-15T00:01:40.1289729Z env: 2025-08-15T00:01:40.1289923Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:01:40.1290331Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:01:40.1290867Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:01:40.1291365Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:01:40.1291790Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:01:40.1292086Z ##[endgroup] 2025-08-15T00:01:40.7280469Z Found existing installation: torch 2.9.0a0+git1fc683c 2025-08-15T00:01:41.9158495Z Uninstalling torch-2.9.0a0+git1fc683c: 2025-08-15T00:01:42.2222185Z Successfully uninstalled torch-2.9.0a0+git1fc683c 2025-08-15T00:01:44.7377302Z Prepare all required actions 2025-08-15T00:01:44.7377727Z Getting action download info 2025-08-15T00:01:44.9744465Z ##[group]Run ./.github/actions/teardown-win 2025-08-15T00:01:44.9744771Z with: 2025-08-15T00:01:44.9744966Z env: 2025-08-15T00:01:44.9745276Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:01:44.9745674Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:01:44.9746318Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:01:44.9746814Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:01:44.9747231Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:01:44.9747551Z ##[endgroup] 2025-08-15T00:01:44.9830960Z ##[group]Run .github\scripts\wait_for_ssh_to_drain.ps1 2025-08-15T00:01:44.9831392Z .github\scripts\wait_for_ssh_to_drain.ps1 2025-08-15T00:01:44.9848222Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-15T00:01:44.9848694Z env: 2025-08-15T00:01:44.9848894Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:01:44.9849283Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:01:44.9849833Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:01:44.9850336Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:01:44.9850753Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:01:44.9851063Z ##[endgroup] 2025-08-15T00:01:45.3784484Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-15T00:01:45.3840444Z Finished 2025-08-15T00:01:45.5402382Z Holding runner until all ssh sessions have logged out 2025-08-15T00:01:45.5669727Z ##[group]Run .github\scripts\kill_active_ssh_sessions.ps1 2025-08-15T00:01:45.5670192Z .github\scripts\kill_active_ssh_sessions.ps1 2025-08-15T00:01:45.5687142Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-15T00:01:45.5687640Z env: 2025-08-15T00:01:45.5687841Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:01:45.5688229Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:01:45.5688762Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:01:45.5689263Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:01:45.5689685Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:01:45.5690121Z ##[endgroup] 2025-08-15T00:01:45.9978798Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-15T00:01:46.0137940Z Finished 2025-08-15T00:01:46.0565545Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-08-15T00:01:46.0565963Z env: 2025-08-15T00:01:46.0566177Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:01:46.0566575Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:01:46.0567802Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:01:46.0568306Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:01:46.0568723Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:01:46.0569026Z ##[endgroup] 2025-08-15T00:01:46.0645744Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-08-15T00:01:46.0646505Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-08-15T00:01:46.0647192Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-08-15T00:01:46.0647691Z # handle tool 2025-08-15T00:01:46.0648043Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-08-15T00:01:46.0648564Z Foreach ($process In $processes) { 2025-08-15T00:01:46.0648855Z  Try { 2025-08-15T00:01:46.0650745Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-08-15T00:01:46.0651519Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-08-15T00:01:46.0651937Z  } 2025-08-15T00:01:46.0652134Z  Catch { 2025-08-15T00:01:46.0652446Z  Write-Output "No leftover $process process, continuing" 2025-08-15T00:01:46.0652843Z  Write-Output $_ 2025-08-15T00:01:46.0653079Z  } 2025-08-15T00:01:46.0653274Z } 2025-08-15T00:01:46.0653458Z  2025-08-15T00:01:46.0653933Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-08-15T00:01:46.0654511Z # for hung processes 2025-08-15T00:01:46.0654791Z Foreach ($process In $processes) { 2025-08-15T00:01:46.0655105Z  Try { 2025-08-15T00:01:46.0655506Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-08-15T00:01:46.0655992Z  } 2025-08-15T00:01:46.0656176Z  Catch { 2025-08-15T00:01:46.0656401Z  Write-Output $_ 2025-08-15T00:01:46.0656644Z  } 2025-08-15T00:01:46.0656817Z } 2025-08-15T00:01:46.0656996Z  2025-08-15T00:01:46.0657166Z Try { 2025-08-15T00:01:46.0657410Z  # Print all the processes for debugging 2025-08-15T00:01:46.0657890Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-08-15T00:01:46.0658331Z } 2025-08-15T00:01:46.0658509Z Catch { 2025-08-15T00:01:46.0658915Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-08-15T00:01:46.0659411Z  Write-Output $_ 2025-08-15T00:01:46.0659648Z } 2025-08-15T00:01:46.0675491Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-15T00:01:46.0675970Z env: 2025-08-15T00:01:46.0676166Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:01:46.0676551Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:01:46.0677098Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:01:46.0677582Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:01:46.0677997Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:01:46.0678305Z ##[endgroup] 2025-08-15T00:01:46.4728852Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-15T00:01:46.4812744Z Finished 2025-08-15T00:01:46.4947950Z No leftover python process, continuing 2025-08-15T00:01:46.5447535Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-08-15T00:01:46.5448312Z At C:\actions-runner\_work\_temp\bdf7b56d-9346-4229-9717-572d8e963804.ps1:9 char:5 2025-08-15T00:01:46.5449071Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-15T00:01:46.5449519Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:01:46.5450041Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-08-15T00:01:46.5450995Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-15T00:01:46.5451725Z 2025-08-15T00:01:46.5467511Z No leftover ninja process, continuing 2025-08-15T00:01:46.5481530Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-08-15T00:01:46.5482231Z At C:\actions-runner\_work\_temp\bdf7b56d-9346-4229-9717-572d8e963804.ps1:9 char:5 2025-08-15T00:01:46.5482791Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-15T00:01:46.5483417Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:01:46.5484777Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-08-15T00:01:46.5485821Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-15T00:01:46.5486466Z 2025-08-15T00:01:46.5500235Z No leftover cl process, continuing 2025-08-15T00:01:46.5512484Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-08-15T00:01:46.5513167Z At C:\actions-runner\_work\_temp\bdf7b56d-9346-4229-9717-572d8e963804.ps1:9 char:5 2025-08-15T00:01:46.5513747Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-15T00:01:46.5514178Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:01:46.5514662Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-08-15T00:01:46.5515595Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-15T00:01:46.5516396Z 2025-08-15T00:01:46.5531212Z No leftover nvcc process, continuing 2025-08-15T00:01:46.5545166Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-08-15T00:01:46.5545941Z At C:\actions-runner\_work\_temp\bdf7b56d-9346-4229-9717-572d8e963804.ps1:9 char:5 2025-08-15T00:01:46.5546605Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-15T00:01:46.5547140Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:01:46.5547714Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-08-15T00:01:46.5548732Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-15T00:01:46.5549439Z 2025-08-15T00:01:46.5563544Z No leftover cmd process, continuing 2025-08-15T00:01:46.5576191Z Get-Process : Cannot find a process with the name "cmd". Verify the process name and call the cmdlet again. 2025-08-15T00:01:46.5576968Z At C:\actions-runner\_work\_temp\bdf7b56d-9346-4229-9717-572d8e963804.ps1:9 char:5 2025-08-15T00:01:46.5577548Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-15T00:01:46.5577969Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:01:46.5578458Z + CategoryInfo : ObjectNotFound: (cmd:String) [Get-Process], ProcessCommandException 2025-08-15T00:01:46.5579282Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-15T00:01:46.5580009Z 2025-08-15T00:01:46.5591868Z No leftover sccache process, continuing 2025-08-15T00:01:46.5603788Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-08-15T00:01:46.5604585Z At C:\actions-runner\_work\_temp\bdf7b56d-9346-4229-9717-572d8e963804.ps1:9 char:5 2025-08-15T00:01:46.5605230Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-15T00:01:46.5605852Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:01:46.5606446Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-08-15T00:01:46.5607450Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-15T00:01:46.5608081Z 2025-08-15T00:01:46.5618634Z No leftover git process, continuing 2025-08-15T00:01:46.5630209Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-08-15T00:01:46.5630897Z At C:\actions-runner\_work\_temp\bdf7b56d-9346-4229-9717-572d8e963804.ps1:9 char:5 2025-08-15T00:01:46.5631457Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-08-15T00:01:46.5631977Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:01:46.5632631Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-08-15T00:01:46.5633695Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-08-15T00:01:46.5634343Z 2025-08-15T00:01:46.6150415Z You cannot call a method on a null-valued expression. 2025-08-15T00:01:46.6150965Z At C:\actions-runner\_work\_temp\bdf7b56d-9346-4229-9717-572d8e963804.ps1:21 char:5 2025-08-15T00:01:46.6151545Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-15T00:01:46.6152009Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:01:46.6152443Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-15T00:01:46.6152861Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-15T00:01:46.6153173Z 2025-08-15T00:01:46.6357083Z You cannot call a method on a null-valued expression. 2025-08-15T00:01:46.6357646Z At C:\actions-runner\_work\_temp\bdf7b56d-9346-4229-9717-572d8e963804.ps1:21 char:5 2025-08-15T00:01:46.6358249Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-15T00:01:46.6372178Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:01:46.6372772Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-15T00:01:46.6373201Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-15T00:01:46.6373528Z 2025-08-15T00:01:46.6610533Z You cannot call a method on a null-valued expression. 2025-08-15T00:01:46.6612742Z At C:\actions-runner\_work\_temp\bdf7b56d-9346-4229-9717-572d8e963804.ps1:21 char:5 2025-08-15T00:01:46.6613336Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-15T00:01:46.6613789Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:01:46.6614219Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-15T00:01:46.6614665Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-15T00:01:46.6614975Z 2025-08-15T00:01:46.6806781Z You cannot call a method on a null-valued expression. 2025-08-15T00:01:46.6807322Z At C:\actions-runner\_work\_temp\bdf7b56d-9346-4229-9717-572d8e963804.ps1:21 char:5 2025-08-15T00:01:46.6807926Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-15T00:01:46.6808379Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:01:46.6808816Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-15T00:01:46.6809254Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-15T00:01:46.6809556Z 2025-08-15T00:01:46.7008947Z You cannot call a method on a null-valued expression. 2025-08-15T00:01:46.7009455Z At C:\actions-runner\_work\_temp\bdf7b56d-9346-4229-9717-572d8e963804.ps1:21 char:5 2025-08-15T00:01:46.7010048Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-15T00:01:46.7010518Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:01:46.7011066Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-15T00:01:46.7011502Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-15T00:01:46.7011805Z 2025-08-15T00:01:46.7218295Z You cannot call a method on a null-valued expression. 2025-08-15T00:01:46.7218834Z At C:\actions-runner\_work\_temp\bdf7b56d-9346-4229-9717-572d8e963804.ps1:21 char:5 2025-08-15T00:01:46.7219436Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-15T00:01:46.7219910Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:01:46.7220332Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-15T00:01:46.7220758Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-15T00:01:46.7221061Z 2025-08-15T00:01:46.7406517Z You cannot call a method on a null-valued expression. 2025-08-15T00:01:46.7407199Z At C:\actions-runner\_work\_temp\bdf7b56d-9346-4229-9717-572d8e963804.ps1:21 char:5 2025-08-15T00:01:46.7407945Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-08-15T00:01:46.7408411Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-08-15T00:01:46.7408831Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-08-15T00:01:46.7409268Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-08-15T00:01:46.7409565Z 2025-08-15T00:01:46.8263615Z Caption CommandLine ProcessId 2025-08-15T00:01:46.8264169Z 2025-08-15T00:01:46.8264524Z System Idle Process 0 2025-08-15T00:01:46.8264983Z 2025-08-15T00:01:46.8265999Z System 4 2025-08-15T00:01:46.8266399Z 2025-08-15T00:01:46.8267375Z Registry 168 2025-08-15T00:01:46.8267788Z 2025-08-15T00:01:46.8268833Z smss.exe 408 2025-08-15T00:01:46.8269382Z 2025-08-15T00:01:46.8270260Z csrss.exe 520 2025-08-15T00:01:46.8270664Z 2025-08-15T00:01:46.8271573Z csrss.exe 596 2025-08-15T00:01:46.8272055Z 2025-08-15T00:01:46.8273703Z wininit.exe 648 2025-08-15T00:01:46.8274138Z 2025-08-15T00:01:46.8274507Z winlogon.exe winlogon.exe 668 2025-08-15T00:01:46.8274973Z 2025-08-15T00:01:46.8275740Z services.exe 740 2025-08-15T00:01:46.8276156Z 2025-08-15T00:01:46.8277255Z lsass.exe C:\Windows\system32\lsass.exe 764 2025-08-15T00:01:46.8277756Z 2025-08-15T00:01:46.8278833Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 876 2025-08-15T00:01:46.8279452Z 2025-08-15T00:01:46.8280034Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 900 2025-08-15T00:01:46.8280681Z 2025-08-15T00:01:46.8281495Z fontdrvhost.exe "fontdrvhost.exe" 928 2025-08-15T00:01:46.8281986Z 2025-08-15T00:01:46.8282936Z fontdrvhost.exe "fontdrvhost.exe" 924 2025-08-15T00:01:46.8283493Z 2025-08-15T00:01:46.8284366Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 144 2025-08-15T00:01:46.8284916Z 2025-08-15T00:01:46.8285685Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 456 2025-08-15T00:01:46.8286280Z 2025-08-15T00:01:46.8287880Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 132 2025-08-15T00:01:46.8288539Z 2025-08-15T00:01:46.8289999Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1104 2025-08-15T00:01:46.8290732Z 2025-08-15T00:01:46.8291149Z dwm.exe "dwm.exe" 1132 2025-08-15T00:01:46.8291961Z 2025-08-15T00:01:46.8293335Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1232 2025-08-15T00:01:46.8294134Z 2025-08-15T00:01:46.8294618Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1328 2025-08-15T00:01:46.8295211Z 2025-08-15T00:01:46.8296692Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1336 2025-08-15T00:01:46.8297354Z 2025-08-15T00:01:46.8297942Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1380 2025-08-15T00:01:46.8298645Z 2025-08-15T00:01:46.8299309Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1428 2025-08-15T00:01:46.8299955Z 2025-08-15T00:01:46.8301088Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1460 2025-08-15T00:01:46.8301702Z 2025-08-15T00:01:46.8303768Z NVDisplay.Container.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\NVDisplay.Container.exe -s NVDisplay.ContainerLocalSystem -f C:\ProgramData\NVIDIA\NVDisplay.ContainerLocalSystem.log -l 3 -d C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\Display.NvContainer\plugins\LocalSystem -r -p 30000 -cfg NVDisplay.ContainerLocalSystem\LocalSystem /ert 1488 2025-08-15T00:01:46.8305935Z 2025-08-15T00:01:46.8306455Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1544 2025-08-15T00:01:46.8307086Z 2025-08-15T00:01:46.8307738Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1628 2025-08-15T00:01:46.8308542Z 2025-08-15T00:01:46.8309032Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1704 2025-08-15T00:01:46.8310080Z 2025-08-15T00:01:46.8310795Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1712 2025-08-15T00:01:46.8311403Z 2025-08-15T00:01:46.8311945Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1720 2025-08-15T00:01:46.8312594Z 2025-08-15T00:01:46.8313065Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1824 2025-08-15T00:01:46.8313641Z 2025-08-15T00:01:46.8314218Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 1868 2025-08-15T00:01:46.8314897Z 2025-08-15T00:01:46.8315438Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 1876 2025-08-15T00:01:46.8316067Z 2025-08-15T00:01:46.8316610Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 1948 2025-08-15T00:01:46.8317289Z 2025-08-15T00:01:46.8317825Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 2012 2025-08-15T00:01:46.8318450Z 2025-08-15T00:01:46.8319025Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 1068 2025-08-15T00:01:46.8320201Z 2025-08-15T00:01:46.8320896Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 1692 2025-08-15T00:01:46.8321665Z 2025-08-15T00:01:46.8322253Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2176 2025-08-15T00:01:46.8322955Z 2025-08-15T00:01:46.8323586Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 2196 2025-08-15T00:01:46.8324331Z 2025-08-15T00:01:46.8324851Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2224 2025-08-15T00:01:46.8325554Z 2025-08-15T00:01:46.8326060Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 2388 2025-08-15T00:01:46.8326676Z 2025-08-15T00:01:46.8327186Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2424 2025-08-15T00:01:46.8327845Z 2025-08-15T00:01:46.8328259Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2636 2025-08-15T00:01:46.8328784Z 2025-08-15T00:01:46.8329383Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2712 2025-08-15T00:01:46.8330066Z 2025-08-15T00:01:46.8330673Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2720 2025-08-15T00:01:46.8331389Z 2025-08-15T00:01:46.8331880Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2728 2025-08-15T00:01:46.8332472Z 2025-08-15T00:01:46.8333079Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2736 2025-08-15T00:01:46.8333778Z 2025-08-15T00:01:46.8334315Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2744 2025-08-15T00:01:46.8334937Z 2025-08-15T00:01:46.8335457Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2752 2025-08-15T00:01:46.8336068Z 2025-08-15T00:01:46.8336581Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2760 2025-08-15T00:01:46.8337235Z 2025-08-15T00:01:46.8337773Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2776 2025-08-15T00:01:46.8338405Z 2025-08-15T00:01:46.8339187Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 3012 2025-08-15T00:01:46.8339954Z 2025-08-15T00:01:46.8340475Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 3048 2025-08-15T00:01:46.8341092Z 2025-08-15T00:01:46.8341510Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 3060 2025-08-15T00:01:46.8342040Z 2025-08-15T00:01:46.8342532Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 2972 2025-08-15T00:01:46.8343142Z 2025-08-15T00:01:46.8344044Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe 3108 2025-08-15T00:01:46.8344847Z 2025-08-15T00:01:46.8345486Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3516 2025-08-15T00:01:46.8346243Z 2025-08-15T00:01:46.8346853Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 4088 2025-08-15T00:01:46.8347603Z 2025-08-15T00:01:46.8348120Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a77055 /state1:0x41c64e6d 756 2025-08-15T00:01:46.8348779Z 2025-08-15T00:01:46.8350712Z 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 656 2025-08-15T00:01:46.8352693Z 2025-08-15T00:01:46.8353447Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe -spawnprovider 920 2025-08-15T00:01:46.8354309Z 2025-08-15T00:01:46.8354689Z vds.exe C:\Windows\System32\vds.exe 892 2025-08-15T00:01:46.8355165Z 2025-08-15T00:01:46.8355706Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 1312 2025-08-15T00:01:46.8356363Z 2025-08-15T00:01:46.8356765Z msdtc.exe C:\Windows\System32\msdtc.exe 1300 2025-08-15T00:01:46.8357257Z 2025-08-15T00:01:46.8357859Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 2188 2025-08-15T00:01:46.8358599Z 2025-08-15T00:01:46.8359092Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 3056 2025-08-15T00:01:46.8359680Z 2025-08-15T00:01:46.8360348Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 1980 2025-08-15T00:01:46.8361080Z 2025-08-15T00:01:46.8361595Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 4148 2025-08-15T00:01:46.8362203Z 2025-08-15T00:01:46.8362763Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 4860 2025-08-15T00:01:46.8363422Z 2025-08-15T00:01:46.8364168Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 4720 2025-08-15T00:01:46.8365011Z 2025-08-15T00:01:46.8366763Z 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 4616 2025-08-15T00:01:46.8368545Z 2025-08-15T00:01:46.8368971Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4692 2025-08-15T00:01:46.8369506Z 2025-08-15T00:01:46.8370082Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p 3760 2025-08-15T00:01:46.8370802Z 2025-08-15T00:01:46.8371338Z svchost.exe C:\Windows\system32\svchost.exe -k appmodel -p -s StateRepository 5072 2025-08-15T00:01:46.8371984Z 2025-08-15T00:01:46.8372677Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 1192 2025-08-15T00:01:46.8373455Z 2025-08-15T00:01:46.8373874Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 1524 2025-08-15T00:01:46.8374401Z 2025-08-15T00:01:46.8374917Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 2208 2025-08-15T00:01:46.8375520Z 2025-08-15T00:01:46.8376038Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 1372 2025-08-15T00:01:46.8376649Z 2025-08-15T00:01:46.8377177Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 1056 2025-08-15T00:01:46.8377791Z 2025-08-15T00:01:46.8378220Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 5104 2025-08-15T00:01:46.8378746Z 2025-08-15T00:01:46.8379312Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 2036 1896 4936 2025-08-15T00:01:46.8379995Z 2025-08-15T00:01:46.8380417Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3900 2025-08-15T00:01:46.8380988Z 2025-08-15T00:01:46.8381640Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 3964 2025-08-15T00:01:46.8382337Z 2025-08-15T00:01:46.8383003Z vctip.exe "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\VCTIP.EXE" 5480 2025-08-15T00:01:46.8383773Z 2025-08-15T00:01:46.8384215Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 5516 2025-08-15T00:01:46.8384762Z 2025-08-15T00:01:46.8385595Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\bdf7b56d-9346-4229-9717-572d8e963804.ps1'" 1540 2025-08-15T00:01:46.8386536Z 2025-08-15T00:01:46.8387161Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 2912 2025-08-15T00:01:46.8387889Z 2025-08-15T00:01:46.8387893Z 2025-08-15T00:01:46.8387897Z 2025-08-15T00:01:46.8695452Z ##[group]Run nick-fields/retry@v3.0.0 2025-08-15T00:01:46.8695751Z with: 2025-08-15T00:01:46.8695928Z shell: bash 2025-08-15T00:01:46.8696130Z timeout_minutes: 5 2025-08-15T00:01:46.8696339Z max_attempts: 3 2025-08-15T00:01:46.8696556Z retry_wait_seconds: 90 2025-08-15T00:01:46.8697782Z command: set +e set -x if [ -n "${EXTRA_DELETE_DIR}" ]; then # It's ok to fail to clean up the extra directory on Windows as it only contains # the build artifacts and doesn't take up much space, i.e. /c/5053411580/build-results rm -rf "${EXTRA_DELETE_DIR}" || true fi rm -rf ./* 2025-08-15T00:01:46.8698952Z polling_interval_seconds: 1 2025-08-15T00:01:46.8699224Z warning_on_retry: true 2025-08-15T00:01:46.8699457Z continue_on_error: false 2025-08-15T00:01:46.8699704Z env: 2025-08-15T00:01:46.8699885Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:01:46.8700266Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:01:46.8700810Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:01:46.8701302Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:01:46.8701719Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:01:46.8702019Z EXTRA_DELETE_DIR: 2025-08-15T00:01:46.8702232Z ##[endgroup] 2025-08-15T00:01:46.9934304Z + '[' -n '' ']' 2025-08-15T00:01:46.9940284Z + 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-3-3-lf.windows.4xlarge.nonephemeral_48128743920.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-3-3-lf.windows.4xlarge.nonephemeral_48128743920.zip ./test-reports-test-default-3-3-lf.windows.4xlarge.nonephemeral_48128743920.zip ./third_party ./tools ./torch ./torchgen ./ubsan.supp ./ufunc_defs.bzl ./usage_log.txt ./version.txt 2025-08-15T00:02:14.1626304Z Command completed after 1 attempt(s). 2025-08-15T00:02:14.1800069Z ##[group]Run handle C:\actions-runner\_work\ 2025-08-15T00:02:14.1800555Z handle C:\actions-runner\_work\ 2025-08-15T00:02:14.1817713Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-15T00:02:14.1818285Z env: 2025-08-15T00:02:14.1818476Z GIT_DEFAULT_BRANCH: main 2025-08-15T00:02:14.1818963Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-08-15T00:02:14.1819509Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-08-15T00:02:14.1820093Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-08-15T00:02:14.1820594Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-08-15T00:02:14.1820890Z ##[endgroup] 2025-08-15T00:02:14.5966936Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-15T00:02:14.6017807Z Finished 2025-08-15T00:02:14.6548824Z 2025-08-15T00:02:14.6549230Z Nthandle v5.0 - Handle viewer 2025-08-15T00:02:14.6549595Z Copyright (C) 1997-2022 Mark Russinovich 2025-08-15T00:02:14.6549926Z Sysinternals - www.sysinternals.com 2025-08-15T00:02:14.6550138Z 2025-08-15T00:02:14.6895832Z powershell.exe pid: 5028 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:02:14.6902636Z handle.exe pid: 1220 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:02:14.6903223Z handle.exe pid: 3952 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:02:14.6903800Z handle64.exe pid: 5288 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:02:14.7274490Z Post job cleanup. 2025-08-15T00:02:14.7385598Z Post job cleanup. 2025-08-15T00:02:14.8848898Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-08-15T00:02:14.9083247Z git version 2.49.0.windows.1 2025-08-15T00:02:14.9147099Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\ca8ce537-9638-4352-a359-68501c124d5d\.gitconfig' 2025-08-15T00:02:14.9165728Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\ca8ce537-9638-4352-a359-68501c124d5d' before making global git config changes 2025-08-15T00:02:14.9166620Z Adding repository directory to the temporary git global config as a safe directory 2025-08-15T00:02:14.9177641Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-08-15T00:02:14.9458154Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-08-15T00:02:14.9724709Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\"" 2025-08-15T00:02:15.3883418Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-08-15T00:02:15.4138798Z http.https://github.com/.extraheader 2025-08-15T00:02:15.4187707Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all http.https://github.com/.extraheader 2025-08-15T00:02:15.4489339Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\"" 2025-08-15T00:02:15.8765074Z A job completed hook has been configured by the self-hosted runner administrator 2025-08-15T00:02:15.8800214Z ##[group]Run 'C:\actions-runner\jobcompleted.ps1' 2025-08-15T00:02:15.8816354Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-08-15T00:02:15.8816849Z ##[endgroup] 2025-08-15T00:02:16.2940834Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-08-15T00:02:16.3024561Z Finished 2025-08-15T00:02:17.9185392Z Cleaning up orphan processes 2025-08-15T00:02:17.9581876Z Terminate orphan process: pid (5480) (vctip)